Posted: 5th Jan 2004 1:38
Well I thought that once I put the Hide Window command the program would stop at that but then I found out all I needed was to put in sync...It will work as long as you dont put anything like if spacekey()=1 then do something..Heres the code
+ Code Snippet
Hide Mouse
Hide Window
sync
DO
SYNC
EXECUTE FILE "C:\WINDOWS\Notepad.exe","","",1
SYNC
LOOP
End
Posted: 5th Jan 2004 19:29
isnt that obvious though. why are you using sync? there is no need when executing a file since nothing is displayed to the screen. pointless
Posted: 5th Jan 2004 23:31
+ Code Snippet
Hide Mouse
Hide Window
EXECUTE FILE "C:\WINDOWS\Notepad.exe","","",1
End


thats all you need
Posted: 6th Jan 2004 9:28
O.Didnt know that because everytime that I hid the window for executing a program my db would stop working but thanks for telling me that.