You shouldnt need to use rc, just use the resource editor add-in in vb.
You can add pretty much anything in a resource file.
look up loadresdata, loadresstring, loadrespicture in msdn and it will tell you all you need to know (mostly)
Shawn
Api calls and custom controls will be your biggest problem.
You will have to change all 16 bit apis & controls to 32 bit. The api's should be no major problem, but you minght not be able to find some of the more weird controls in 32 bit.
One thing about streams to consider, the batch file strongm mentioned will be 0 bytes long. if someone deletes it, your stream, and therefore your batch file will be gone.
for the first part, you cant use 32 bit with vb3, you have to use the 16 bit version.
for the second part, try this...
Sub Pause(Seconds)
Dim PauseTime, Start
PauseTime = Seconds ' Set duration.
Start = Timer ' Set start time.
Do While Timer < Start + Seconds
DoEvents...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.