‎2006 Dec 15 10:21 AM
How to clear the buffer stored in memory due to execution of write statement..
Example
Write : 'hello'.
***Have to clear buffer here**
write : 'How are you'.
I the code when executed should only display only 'How are you'..and the buffer for 'hello' should be cleared and not displayed on screen..
Any solution other than puttin condition checks is highly appreciated.
‎2006 Dec 15 10:27 AM
Hi,
is it related to buffer..........
If u want only 'How are you' to be printed, over write on 'Hello' using 'SKIP TO LINE <line no>'.
Regards
Sreenivasa Reddy V
‎2006 Dec 15 10:30 AM
Hello,
You can do like this
Write : 0(25)'hello'.
***Have to clear buffer here**
write : 0(25)'How are you'.
If useful reward.
Vasanth
‎2006 Dec 15 10:34 AM
no your solutions will only help to overwrite at the same position...I know that option...but Since all the write statements are buffered befrore they are output in screen...Clearing the buffer will be helpful