| Original Message |
(Login The-Universe) Admin Posted Jul 22, 2010 9:58 AM
Galleon has a new fast Windows 7, you might want to ask him to test it.
What I would do first is build an error trap, and I think you mentioned thatin a previous post. Just an...
SHELL "dir data\autogame.dat /b > temp.tmp"
ON ERROR GOTO REDO
OPEN "temp.tmp" FOR APPEND AS #1
END
REDO:
PRINT ERR
RESUME 0
--------------------
If is doesn't break out of the trap quickly, it is some other problem than CPU speed; but you could also put a manual delay in there...
SHELL "dir data\autogame.dat /b > temp.tmp"
DO: LOOP UNTIL INKEY$ = CHR$(13)
OPEN "temp.tmp" FOR APPEND AS #1
--------------------
Run it, give it a second, and if it still fails, it is not a speed issue problem.
Pete
|
|
|