Page 1 of 1

Form Frozen if I use .waitTillDone()

Posted: Sat Dec 28, 2019 10:11 am
by Andarkvolt
Is there a way which I can unfreeze the form (so it doesn't come up with not-responding) when scanning? I've been looking all over but I still have no clue. Is there a way which I can have access to the form while the script is scanning? I've seen some people even have a progress bar. Thanks for any help here! :)

Re: Form Frozen if I use .waitTillDone()

Posted: Sat Dec 28, 2019 12:15 pm
by Eric
use the OnScanDone event and continue your code in there
don't call .waitTillDone

(or run your code in a thread, but that's basically double as the memscan is already a thread itself)

Re: Form Frozen if I use .waitTillDone()

Posted: Sun Dec 29, 2019 1:19 am
by Andarkvolt
Thanks mate!