![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
When I right click in the microsoft visual basic (VBAProject.OTM)
toolbox and select additional controls, I get a hour glass for less than 0.5 seconds and then nothing happens. The dialog box that should appear never does. Can anyone help? I am using Outlook 2003. |
Ads |
#2
|
|||
|
|||
![]()
I am experiencing the same thing:
Reinstalled, Repaired, Re-registered relevant VBA DLLs STILL Cannot get "Additional Controls" dialog to operate properly - MSForms toolbox only has default controls. Any help? EggHeadCafe.com - .NET Developer Portal of Choice http://www.eggheadcafe.com |
#3
|
|||
|
|||
![]()
This is what's going on ... it's a big bug in the VBA IDE.
When you click on the "Additional Controls" right mouse item (within the toolbox) - the IDE traverses the CLSID keys in HKCU (Current User) and HKLM (Local Machine) branches looking for all "control" type classes. IF the IDE hits a key and returns error 5 (access denied), then it simply and silently does NOTHING more ... this is clearly a Microsoft bug. I'm surprised others haven't experienced this but I have been able to find NOTHING about it elsewhere. The problem occurs when some of the keys become inaccessible (due to ACLs becoming hosed) under circumstances too numerous to go into here... what's more important is how to fix the problem. This KB Article (269383) will help you see how to perform this procedure. Ignore the specific reference to Crystal Reports... It's the same problem. Alternatively - you can download the SubInACL Utility from the Microsoft site. Then, (assuming that you've installed to all the default locations), you can reset the System and Administrators permissions on the keys by using the following commands: C: cd C:\Program Files\Windows Resource Kits\Tools subinacl /testmode /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f subinacl /testmode /subkeyreg HKEY_CURRENT_USER /grant=administrators=f subinacl /testmode /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f subinacl /testmode /subkeyreg HKEY_LOCAL_MACHINE /grant=system=f subinacl /testmode /subkeyreg HKEY_CURRENT_USER /grant=system=f subinacl /testmode /subkeyreg HKEY_CLASSES_ROOT /grant=system=f Once you see what it's going to do - you can remove the "/testmode" switch to commit the changes. Just FYI - Occasionally installers end up complaining that they can't access registry keys or directories. There are KB Articles to help you diagnose that but you can use the following to reset all of the baseline access for "system" and "administrators" using this utility. Cut and past to a ".cmd" file. C: cd C:\Program Files\Windows Resource Kits\Tools subinacl /testmode /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f subinacl /testmode /subkeyreg HKEY_CURRENT_USER /grant=administrators=f subinacl /testmode /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f subinacl /testmode /subdirectories %SystemDrive% /grant=administrators=f subinacl /testmode /subdirectories %windir%\*.* /grant=administrators=f subinacl /testmode /subkeyreg HKEY_LOCAL_MACHINE /grant=system=f subinacl /testmode /subkeyreg HKEY_CURRENT_USER /grant=system=f subinacl /testmode /subkeyreg HKEY_CLASSES_ROOT /grant=system=f subinacl /testmode /subdirectories %SystemDrive% /grant=system=f subinacl /testmode /subdirectories %windir%\*.* /grant=system=f EggHeadCafe.com - .NET Developer Portal of Choice http://www.eggheadcafe.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
disappeared dialog box | Micro$oft Bug | Outlook Express | 6 | May 2nd 06 06:46 PM |
Empty Dialog Box | Will T | Outlook - General Queries | 1 | March 29th 06 10:06 PM |
unable to open dialog box | rglion | Outlook - Calandaring | 4 | March 16th 06 09:11 AM |
Formattable text box controls | Vaughan | Outlook - Using Forms | 0 | March 9th 06 01:27 PM |
How to display PO Box field in Business Address Box from contact | Sue Mosher [MVP-Outlook] | Outlook - Using Contacts | 0 | January 18th 06 05:01 PM |