- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am rather new to CVF. Is there a function similar to basic's Clear Screen command to erase the information shown on a console screen?
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
There may be a better way to do it, but a simple loop writing blank lines should work:
program testing
implicit none
integer i
print *, 'Hello World'
do i=1,40 ! or your biggest screen size
print *
end do
end program testing
All the best,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Look at ClearScreen in the on-line documentation.
Sabalan.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page