Hi Inf0Byt3,
I think I just found a bug. When you add something under Advanced tasks under the Uninstaller section, it isn't saved.
The Installer - Advanced tasks - Task name list, always displays everything you added.
You can create the installer file after adding the task, and it works. But your program doesn't save what you added
for future use.
EDIT: Just checked and found that it
is written to the saved .bim file, but when you open up the project file
to use again, it doesn't display the task name you just saved under the Uninstaller - Advanced tasks - Task name list.
So you never know what you've added or removed unless you look at the .bim file directly. That could possibly cause
some unplanned uninstall issues if you didn't check it, depending on what you may have added to the task.
Also I like to keep my install maker projects in the programs directory under a subdirectory I named Projects.
That way it's all together in one place, and I don't have to go looking for it. Is it possible to add something
like this in your code so that when I use File - Open Project, it goes right to that directory?
Code: Select all
;***************** gets current program path **********************
pp$=Space(#MAX_PATH)
GetCurrentDirectory_(#MAX_PATH,@pp$)
pp$+"\"
The code above gets the location of where you installed your program, and would be handy to use with something
like this:
Now you have the location path of where to open to, when you use File Open Project etc.
Else maybe something could be saved in the programs ini file?
Thank you for your help