Since moving up to an Athalon 1200 with a video card that has more memory than my first comuter I'm finding some weird things.
First, serial printers are over running and losing data regardles of the speed setting as in mode com1 96,n,8,1 or the "speed = 1000000" setting in foxpro.
This never happened on 486 dx66.
Second, and a lot wierder, I use "wait window "Here 1", "Here 2" etc. in my code when I'n trying to track down a glitch.
if x > 1
wait window "In if-then"
do xxxxxxxx
endif
Works fine because I can see just where I am.
I recently had a problem where the code in a if then statement was working but the "wait window" did not show up.
In frustration I added a second wait window after the first and lo and behold, it showed.
Further experimentation proved that the first wait window did not show regardless of how many wait windows followed each other. In the following "In if-then 1" did not show
if x > 1
wait window "In if-then 1"
wait window "In if-then 2"
wait window "In if-then 3"
do xxxxxxxx
endif
If i removed "In if-then 1" then "In if-then 2" didn't show.
Are conputers getting too fast or is there a simpler reason?
First, serial printers are over running and losing data regardles of the speed setting as in mode com1 96,n,8,1 or the "speed = 1000000" setting in foxpro.
This never happened on 486 dx66.
Second, and a lot wierder, I use "wait window "Here 1", "Here 2" etc. in my code when I'n trying to track down a glitch.
if x > 1
wait window "In if-then"
do xxxxxxxx
endif
Works fine because I can see just where I am.
I recently had a problem where the code in a if then statement was working but the "wait window" did not show up.
In frustration I added a second wait window after the first and lo and behold, it showed.
Further experimentation proved that the first wait window did not show regardless of how many wait windows followed each other. In the following "In if-then 1" did not show
if x > 1
wait window "In if-then 1"
wait window "In if-then 2"
wait window "In if-then 3"
do xxxxxxxx
endif
If i removed "In if-then 1" then "In if-then 2" didn't show.
Are conputers getting too fast or is there a simpler reason?