<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can not type in the Custom VBA Macro Form in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13736551#M99623</link>
    <description>&lt;P&gt;This might work (It might not as well) Copy the&amp;nbsp;&lt;SPAN&gt;AcFocusCtrl16.dll file from one of the working PCs and overwrite the file on your machine. First check the date / time stamp on it and yours. Are they different? If they aren't you might have a corrupted file.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Jul 2025 10:52:56 GMT</pubDate>
    <dc:creator>h_s_walker</dc:creator>
    <dc:date>2025-07-23T10:52:56Z</dc:date>
    <item>
      <title>Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13707953#M99588</link>
      <description>&lt;P&gt;We use a VBA program that will open these menus. Everything works with the Macros except I can not type inside the inputs of these custom pop-ups. This issue began yesterday. The pop-up acts like it is not active (note the word takeoff is grey, it should be dark as that pop-up would be the active window). Anything I type goes to the command line.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know what setting got changed yesterday. The VBA is saved on our shared server and no one else in my group is having this issue. So I believe this is a localized issue on my PC.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;AutoCAD 2020 (yes, I know, old)&lt;BR /&gt;Windows 11 64-bit&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 16:31:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13707953#M99588</guid>
      <dc:creator>staffordm</dc:creator>
      <dc:date>2025-07-07T16:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro pop-up</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13708162#M99589</link>
      <description>&lt;P&gt;It seems to me that the UI, which you referred to as "custom pop-ups", is shown as modeless, that is, the code that shows the UI is like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;UserForm.show 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;UserForm Show vbModeless&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When VBA 's UI (UserForm) is shown as modeless in AutoCAD, it behaves exactly as you described: it cannot hold onto the focus and user cannot interact with the UI, UNLESS an special UI control AcFocusCtrl is added to the UserForm.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you said this just happened recently (meaning it worked OK before), it suggests that the UI indeed had the acFocusCtrl applied to, but for some reason(s) it stopped working. Therefore, it is difficult to tell what caused it: did you install AutoCAD update, or did Windows got updated?...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You probably need to open the VB project (*.dvb file) in AutoCAD's VBA Editor to examine whether the UI has the AcFocusCtrl applied correctly (maybe it is lost for some unknown reason). When you see the UI/UserForm in VBA's editor, you should see the AcFocusCtrl on the UI, as the picture below shows:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="normanyuan_0-1751473740802.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1548864i445006945F42DFC7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="normanyuan_0-1751473740802.png" alt="normanyuan_0-1751473740802.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you do not see it, then it was lost. You would either add it back, or change the way how the UI is shown (i.e. showing the UI as modal/dialog), if applicable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jul 2025 16:31:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13708162#M99589</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2025-07-02T16:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro pop-up</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13709839#M99590</link>
      <description>&lt;P&gt;Norman,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I check the forms, that AcFocusCtrl is missing. The .dvb file we use is on a central place on our server that we all use. I have check other PC's on my team and the AcFocusCtrl is visible on their computers. This explains why I am the only person having this issue.&lt;BR /&gt;&lt;BR /&gt;I have done the following without any resolution:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Tried to add the AcFocusCtrl in the VBA editor to the forms, when I do I get the following error message (image attached): "The subject is not trusted for the specified action."&lt;/LI&gt;&lt;LI&gt;I have uninstalled VBA_Enabler. Restarted the PC. Then installed VBA_enabler. No change.&lt;/LI&gt;&lt;LI&gt;I have uninstalled VBA_Enabler. Reset AutoCAD settings to default. Installed VBA_enabler. Opened AutoCAD and reloaded my profile. Tried the VBA macro and no change.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I will try unloading AutoCAD completely this afternoon, and then re-install.&lt;BR /&gt;That "not trusted for specified action" leads me to believe that this is some deep Windows setting on my PC that will take someone knowledgeable in these kind of things to help with (I will ask my IT group).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it helps anyone that might know, here's my Windows version information:&lt;BR /&gt;Edition: Windows 11 Pro 64-bit&lt;BR /&gt;Version 24H2&lt;BR /&gt;OS build 26100.4484&lt;BR /&gt;Experience Windows Feature Experience Pack 1000.26100.128.0&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jul 2025 15:05:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13709839#M99590</guid>
      <dc:creator>staffordm</dc:creator>
      <dc:date>2025-07-03T15:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro pop-up</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13714712#M99592</link>
      <description>&lt;P&gt;The error indicates that the the dll has a certificate issue or is not properly registered. First try this:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Open file explorer and navigate to the path below. Then right click on the dll and choose Properties. Make sure the file is unblocked. If it's not, there will be a button in the lower right to Unblock.&lt;/P&gt;
&lt;P&gt;Open cmd.exe as an administrator. Then run the following command:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;regsvr32 "C:\Program Files\Common Files\Autodesk\Shared\AcFocusCtrl.dll"&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 22:16:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13714712#M99592</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2025-07-07T22:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro pop-up</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13715927#M99593</link>
      <description>&lt;P&gt;Ed,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using AutoCAD 2020 (I know, we need to update, been busy).... So has that file path changed?&lt;BR /&gt;I have a similar file located here:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;C:\Program Files\Common Files\Autodesk Shared\AcFocusCtrl16.dll&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;But I'm wondering if that "16" at the end is different. In this folder above, there is not a AcFocusCtrl.dll file.&lt;BR /&gt;Also, If I change the location to this path above and run regsvr32, I get the error in the image below. My IT guy is researching this, too.&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 14:24:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13715927#M99593</guid>
      <dc:creator>staffordm</dc:creator>
      <dc:date>2025-07-08T14:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro pop-up</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13721860#M99596</link>
      <description>&lt;P&gt;Right click on the Toolbox in the VBA editor when editing the form. Select &amp;gt;Additional Controls. click on the acFocusCtrl control and note the path in the bottom of the form.&lt;/P&gt;
&lt;P&gt;Try running "rgsvr" instead of regsvr32.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 21:57:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13721860#M99596</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2025-07-11T21:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro pop-up</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13724390#M99605</link>
      <description>&lt;P&gt;When I try doing this as rgsvr in the command prompt, it says "'rgsvr' is not recognized as an internal or external command, operable program or batch file."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And my location for acFocusCtrl is the same as your image. But there is not a file in that location. So nothing loads when I try using regsvr32 in that location.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 17:03:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13724390#M99605</guid>
      <dc:creator>staffordm</dc:creator>
      <dc:date>2025-07-14T17:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13724724#M99606</link>
      <description>&lt;P&gt;Normally, no one needs to "register" acFocusCtrl separately: it installed with AutoCAD. If in doubt, you can scan Windows registry with Registry Editor. You should be able to find a key in the HKEY_CLASSES_ROOT\CLSID for this class item:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HKEY_CLASSES_ROOT\CLSID\{B5B91160-9818-4E96-BD97-B981A7AF8E06}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do not find it, something is wrong with your AutoCAD installation. But it is there, then things could be worse.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You want to try to reinstall AutoCAD. If you have multiple AutoCAD version installed, try VBA Editor in each of them to see whether the acFocusCtrl is not available in all ACAD versions or only in one version. At the worst scenario, you may have to uninstall all AutoCAD versions and then reinstall.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 21:59:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13724724#M99606</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2025-07-14T21:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13726113#M99607</link>
      <description>&lt;P&gt;I tried uninstalling AutoCAD and the VBA module. Then installed both. This did not resolve the issue. That's why I kind of believe this is a windows issue.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 16:27:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13726113#M99607</guid>
      <dc:creator>staffordm</dc:creator>
      <dc:date>2025-07-15T16:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13726253#M99608</link>
      <description>&lt;P&gt;Norman,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My IT did check my registry and I do have that key. You said "if it is there, things could be worse". So how worse?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 18:38:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13726253#M99608</guid>
      <dc:creator>staffordm</dc:creator>
      <dc:date>2025-07-15T18:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13726391#M99609</link>
      <description>&lt;P&gt;"Worse" means that it appears the AcFocusCtl component is indeed in the Window registry (COM component must be "registered" to be useful), yet, your VBA IDE does not see it. Just to be sure when you do this:&lt;/P&gt;
&lt;P&gt;1. Go into AutoCAD VBA IDS (enter command "VBAIDE" in AutoCAD). As matter of fact, you can go to any other VBA IDE, say Excel, Word...;&lt;/P&gt;
&lt;P&gt;2. Add a UserForm, so that the toolbox would show up;&lt;/P&gt;
&lt;P&gt;3. Right-click the bottom of the toolbox and select "Additional Control..." context menu;&lt;/P&gt;
&lt;P&gt;4. You should see a dialog box pops up to show all available COM UserControls available in this computer. If you do not see AcFocusCtl (yet it is registered in the registry), that is what I mean "WORSE".&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="normanyuan_0-1752612589450.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1552835i521F90E1E522CF5F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="normanyuan_0-1752612589450.png" alt="normanyuan_0-1752612589450.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 20:50:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13726391#M99609</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2025-07-15T20:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13731602#M99612</link>
      <description>&lt;P&gt;It may be that the wrong version of the dll is registered. The file name should just be acFocusCtrl.dll, not *.16.dll. Did you have an older version of acad installed at one time? You might try going to &lt;FONT color="#0000FF"&gt;Control Panel&amp;gt;Programs and Features&lt;/FONT&gt; and click on acad. Then choose Repair/Reinstall. Try the Repair option before reinstalling. If you need to reinstall, be sure to do a &lt;A href="https://help.autodesk.com/view/ACD/2025/ENU/?caas=caas/sfdcarticles/sfdcarticles/Clean-uninstall.html" target="_blank" rel="noopener"&gt;clean uninstall&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jul 2025 23:52:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13731602#M99612</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2025-07-18T23:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13733796#M99617</link>
      <description>&lt;P&gt;I have tried repair and uninstall but it didn't repair the issue. I might have to do the clean uninstall steps.&lt;BR /&gt;&lt;BR /&gt;The only problem with the dll name being&amp;nbsp;AcFocusCtrl16.dll is that I have checked the other PC's on my team sharing the same VBA file. All those PC's have the same file name in the same location and are not having this issue. But maybe that also means that my file is corrupted and didn't get fully replaced in the uninstall that I've tried.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2025 13:55:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13733796#M99617</guid>
      <dc:creator>staffordm</dc:creator>
      <dc:date>2025-07-21T13:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13734471#M99619</link>
      <description>&lt;P&gt;Backtracking, are you sure you installed the vba enabler for 2020 and not some other version?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You said you were too busy to upgrade. If you are going to reinstall, why not install the latest version, for which you are sure that you can get the correct vba enabler?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2025 23:29:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13734471#M99619</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2025-07-21T23:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13735301#M99621</link>
      <description>&lt;P&gt;Yes I do have the correct VBA enabler. And all other aspects of VBA and the macros are working. It's just this one focus control on my PC that isn't working.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 13:51:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13735301#M99621</guid>
      <dc:creator>staffordm</dc:creator>
      <dc:date>2025-07-22T13:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13736551#M99623</link>
      <description>&lt;P&gt;This might work (It might not as well) Copy the&amp;nbsp;&lt;SPAN&gt;AcFocusCtrl16.dll file from one of the working PCs and overwrite the file on your machine. First check the date / time stamp on it and yours. Are they different? If they aren't you might have a corrupted file.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jul 2025 10:52:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13736551#M99623</guid>
      <dc:creator>h_s_walker</dc:creator>
      <dc:date>2025-07-23T10:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13741358#M99628</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/858620"&gt;@staffordm&lt;/a&gt;&amp;nbsp; Again, you could have upgraded by now and that would have most likely solved the problem.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jul 2025 23:54:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13741358#M99628</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2025-07-26T23:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13812950#M99644</link>
      <description>&lt;P&gt;I am having the exact issue as&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/858620"&gt;@staffordm&lt;/a&gt;. I also have AcFocusCtrl16.dll in &lt;STRONG&gt;C:\Program Files\Common Files\Autodesk Shared&lt;/STRONG&gt;. The AcFocusCtrl shows up in my&amp;nbsp;&lt;EM&gt;Additional Controls&lt;/EM&gt; dialogue, but when I select it and try to add it to a UserForm I get the same thing&amp;nbsp;&lt;SPAN&gt;"The subject is not trusted for the specified action." I also tried to register it (regsvr32) without any luck. When I go to&amp;nbsp;&lt;EM&gt;Tools --&amp;gt; References&lt;/EM&gt; it shows that I have already checked the AcCtrl Component checkbox. I have restarted since doing this with no luck.&amp;nbsp;&amp;nbsp;I just installed AutoCAD a month ago, AutoCAD 2026. I haven't updated or anything. I am just trying to include the AcFocusCtrl so I can run the UserForm in vbModeless and still allow the user to interact with the ACAD Drawing. Have there been any updates outside of the forum for this issue?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 14:28:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13812950#M99644</guid>
      <dc:creator>mattLMSAR</dc:creator>
      <dc:date>2025-09-16T14:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13813246#M99645</link>
      <description>&lt;P&gt;My issue has never been resolved. We're moving away from VBA.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 19:09:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13813246#M99645</guid>
      <dc:creator>staffordm</dc:creator>
      <dc:date>2025-09-16T19:09:54Z</dc:date>
    </item>
    <item>
      <title>Re: Can not type in the Custom VBA Macro Form</title>
      <link>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13813272#M99646</link>
      <description>&lt;P&gt;Well, I have no issue adding acFocus control to a UserForm, and once drop it onto the UserForm, showing the UserForm as modeless works as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One thing: are you log into the computer as a local admin? If not, try that to see what happens.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, regardless you can get it to work or not, it has been a long overdue to stop wasting time on AutoCAD VBA, if you want to do serious CAD customization for your business workflow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 19:31:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/can-not-type-in-the-custom-vba-macro-form/m-p/13813272#M99646</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2025-09-16T19:31:23Z</dc:date>
    </item>
  </channel>
</rss>

