Concerning Q.10309976
I have another 50 points for you if you wish to include the code that will add a shortcut to the app on the desktop during install.
The OSfCreateShellLink I gave you was for VB5. I believe that the arguments have changed in VB6... Search the SETUP1 project and look for the OSfCreateShellLink definition...
By the way, you opened another question to me... Let's move over there...
In the setup project, edit the frmSetup1 Load Event. Search for the comment line:
' Create program icons (or links, i.e. shortcuts).
Right after that line, put the following code:
OSfCreateShellLink "..\..\Desktop", _
"Shortcut to MyApp", _
gsDest.strAppDir & "MyApp.EXE", Chr$(0)
Replace the occurrences of MyApp with your actual exe name.
(don't forget to bump up the points before you accept this answer... ;-)
Cheers!®©