[Migrated content. Thread originally posted on 27 May 2008]
HelloWill system calls affect screen displays?
In the following perform loop a counter is incremented and displayed on a floating screen. When I add a system call to the loop the counter stays at 1 on the screen even thought is is being incremented in the loop. Any ideas on why this is happening?
Thanks.
perform acu-waitscrn-scrn.
move 0 to emo-records
perform with test after until filename = spaces
add 1 to emo-records
modify waitscrn-la-2, title = emo-records
call "C$system" using vbprog, "8"
giving vbprog-status
end-call
if vbprog-status not = 0
display message box
"vb program failed " vbprog-status
end-if
end-perform.
destroy waitscrn-handle.



