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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

regsvr32 command through VB

Status
Not open for further replies.

Helen1greece

Technical User
Jun 4, 2003
85
GR
Is there a way to establish the regsvr32 command through visual basic?Can anybody give me an example code?
 
If you mean is there a way to run it you can use the shell command

Shell "Regsvr32 NameofComponent.dll"
 
TomKane,
with shell command a MessageBox appears. Is there a to do the same thing without the MessageBox appearance? Can you or somebody else give me an example code?
 
Trying using the silent switch.

Shell "Regsvr32 /s NameofComponent.dll"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top