-
How could i launch Add/Remove programs from VB??
I would run the app, but its not an app...
Also, if there is a way to automatically uninstall a program by using the .log file or something that wont cause a lot of trouble for the user could you explain on it?
-Sac
-
I think that you can uninstall it by using the uninstall program that the VB Setup Wizard has.
-
but
But im not trying to uninstall my software...its another program.
-
Code:
'Launch Windows Add/Remove Programs Dialog
Dim dblReturn As Double
dblReturn = Shell("rundll32.exe shell32.dll,Control_RunDLL appwiz.cpl,,1", 5)
-