I’m writing an application which, among other things, dynamically generates a GUI window with tabs, labels, buttons and checkboxes from an .ini
file.
I want to be able to load a different .ini
file and recreate the GUI window.
I can’t find any function to clear the existing window.
I first thought that GUICreate
would simply replace the window, but that doesn’t appear to be the case. I thought if I start with GUIDelete
it might do the job, but the application just hangs, so that’s not it either.
Is there a way if clearing the window and rebuilding it?