Code: Select all
<RootPartition>\Documents and Settings\All Users\Start Menu\Programs

Code: Select all
<RootPartition>\Documents and Settings\All Users\Start Menu\Programs
Well, put them back!!!In the past the program had path variables to achieve that but I removed them on the way, thinking that nobody would need them.
Download- Minor interface changes
- Added a new graphics set
- Added Bulgarian, Czech and Turkish translations in the package
- Added 'Copy file' task for both installer and uninstaller
- Added 'Delete folder' task to uninstaller
- Added window class checking for closing active programs (to avoid false positives)
- Added 'Recent projects' menu
- Added option for saving window coordinates in the configuration dialog
- Added 8 new path variables (mostly for all-user paths)
- Added 'Tools' button on toolbar
- Added RTF Text Editor tool (for editing license / readme files)
- Added Hash Calculator tool (for generating hashes over installers)
- Added Window List tool (for getting window class names)
- Added expansion of OS environment variables (e.g. %PROGRAMFILES%)
- Added possibility to customize the Start menu group, uninstall shortcut and web link name
- Made some modifications to the Start Menu group page on the installer side
- The configuration file is now stored in the user's Application Data directory
- Made other minor fixes and optimizations
I am glad there are no problems so far. Keeping my fingers crossed for when you test the new versionRook Zimbabwe wrote:EXCELLENT!!! 4.2 has worked flwlessly building my installer files for Blue Mesa Restaurant POS. With the release of v6.0 I will build with the new installer!!!
Well it all started free and will probably stay free for as long as I can hold the website online. This way when nobody will need it anymore it will die by itselfRook Zimbabwe wrote:I was thinking you could keep this free for PB but try to sell it too... plenty of people that code in lesser languages that we should make a few pesos off of!
Code: Select all
;***************** gets current program path **********************
pp$=Space(#MAX_PATH)
GetCurrentDirectory_(#MAX_PATH,@pp$)
pp$+"\"
Code: Select all
projects_dir$=pp$+"Projects\"
GetCurrentDirectory() is available in PB, no API required.yrreti wrote:Code: Select all
;***************** gets current program path ********************** pp$=Space(#MAX_PATH) GetCurrentDirectory_(#MAX_PATH,@pp$) pp$+"\"
Code: Select all
AppPath$=GetPathPart(ProgramFilename())
Code: Select all
;***************** gets current program path **********************
;Actual path is D:\PTM_STUFF
pp$=Space(#MAX_PATH)
GetCurrentDirectory_(#MAX_PATH,@pp$)
Debug pp$ ;D:\PTM_STUFF (no \ at end)
pp$=GetCurrentDirectory()
Debug pp$ ;D:\PTM_STUFF\ (with \ at end)
pp$=GetPathPart(ProgramFilename())
Debug pp$ ;D:\PTM_STUFF\ (with \ at end)