Dudemeister wrote:
Just to be clear before I do anything which might prove how unskilled I truly am...
Is the 'RunProgram()' procedure for executing an external program, or for restarting the current program? Or, perhaps both?
Code:
RunProgram(ProgramFilename()) : End ;<<--- will completely restart your program
RunProgram() can also execute external programs + other things
in my program , i use this below to restart my program , but not from scratch
because i just want to clear all [ClearAll(0) procedure] choices and variables
and because i have EULA Agreement Window + License Window that pops up
when i 1st run my Program ... so to stop those 2 Windows from starting up if i just want to simply Restart with "New File" choice
i use this method instead :
Code:
Case 5 ;-[ 5 ] New File - Restart Program to clear everything
ClearAll(0) : MainWindow() ;<<--- RunProgram(ProgramFilename()) : End ; another way to restart entire program
MainWindow() ... can be like calling your Window_0 or Window_1 main Procedure to start all over again without actually ending your Program