I created a program with threads.
Inside one thread I use GetGadgetText().
Only the main program has an event loop.
Now when I try to wait for the end of the thread inside of my main event loop with
Code: Select all
While IsThread() : wendI discovered that GetGadgetText() is guilty.
To avoid the blocking I'm using now
Code: Select all
While IsThread() : WaitWindowEvent(1) : WendIs there a better solution?
Or where in the help is written that GetGadgetText() is only working when WindowEvent() is called?
Bernd




