This is the current iteration I used for a new application about to go into sales.
Code:
Private Sub Form_Load()
Dim tpath
tpath = CurDir + "\alpha5.exe " + CurDir + "\pw\mypwds.adb " + "-ICON=mypwds2.ico" + " -NOMINMAX" + " -NOSYSMENU" + "-NOSPLASH" + " NODEBUG" + " -NODBCHECK" + " -NOSPLASH" + " -TITLE=MyPasswords by ALDA Consulting 352-302-2015"
c = Shell(tpath, 3)
End
End Sub
Astrum installer is set to allow the user to install to any path and drive, so it was needed to change a bit of this code. The imbedded icon works wherever a shortcut is set up on a desktop. User shortcut is standard xp3-win10 that they would do for any application and would go to the name of the complied exe. This one is compiled as mypwds.exe.
v12 runtime and the app are packaged together and in and installer exe file. If the user chooses m:\xyz it will be installed there, but if user places it on \\severname\g:\mystuff it will be installed there. The shortcut is built wherever the app is installed from of course.
As far as the runtime, I send a copy of mine. No big install to it. I do run the other stuff as needed like bat, dll, msi, etc by way of the installer. If the application requires it, I send registry settings.
Bookmarks