I juz started a simple program with CreateThread, WaitForSingleObject and CreateEvent
My program running fine in VB IDE, but after compliled into EXE, I can even run it. :(
Can anyone help?
Printable View
I juz started a simple program with CreateThread, WaitForSingleObject and CreateEvent
My program running fine in VB IDE, but after compliled into EXE, I can even run it. :(
Can anyone help?
I've used multithreading in VB before but as you said when compiled it makes an illegal operation (the same as SetWindowsHookEx, works in the IDE but compiled it doesn't).
That is one of the downsides of VB. It works just fine in C++.
So, is there any suggestion or reference web site that I can visit?
I did write the CreateThread in VC++ and it f=does working. But when I try it at VB :(