Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you remove items from the "Choose Toolbox Items" dialog?

Status
Not open for further replies.

emaduddeen

Programmer
Mar 22, 2007
184
US
Hi Everyone,

Can you tell me how do you remove items from the "Choose Toolbox Items" dialog?

I uninstalled some WinForms controls but the installer did not remove the items in that dialog.

Thanks.

Truly,
Emad
 

I believe you need to unregister the component's DLL in Windows.

The following works for Win XP and Vista, not sure about 7:

1) open a command prompt
2) Type: regsvr32 /u <FileName.dll>
3) Press the Enter key

Note: <FileName.dll> is the name of the DLL file you want to unregister. If the command prompt is not active in the directory that the DLL is in, you will need to either navigate to that directory with the command prompt, or include the full path in <FileName.dll>.


I used to rock and roll every night and party every day. Then it was every other day. Now I'm lucky if I can find 30 minutes a week in which to get funky. - Homer Simpson

Arrrr, mateys! Ye needs ta be preparin' yerselves fer Talk Like a Pirate Day!
 
If you follow jebenson's comments, make sure you run command prompt as administrator.

I know that you can't register files without running as admin, so I'm assuming the reverse is true for unregistering.

If at first you don't succeed, then sky diving wasn't meant for you!
 
Note that if you unregistered an item it should cause problems for the program that put it there in the first place and shared resources. If it is there it generally is stupid isn't a good idea to just remove it.

-I hate Microsoft!
-Forever and always forward.
-My kingdom for a edit button!
 
Hi Everyone,

Thanks for the replies.

I tried to locate the dll files and the installer removed them which I was hoping for, but the references to the dll files still exist inside Visual Studio.

I can uncheck them but they are still listed in the dialog.

Hopefully you can help me remove these.

Truly,
Emad


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top