Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

show all text lines in SDI window

mariospapa
Beginner
340 Views
I have a program using quickwin SDI window which writes on the screen a lot of lines of monitoring data. How can i see all the text lines from the beginning in the quickwin window, and not last ones of them?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
340 Views
A Quickwin window is a bitmap that emulates a terminal - sort of. If the bitmap is made large enough you can automatically reposition the viewed region. CVF had a sample that showed this - I'll see if I can reconstruct it next week. I will caution you that the larger you make the bitmap (so it can hold more lines), the more memory it takes and there are upper limits.

You may want to consider calling AllocConsole and writing the monitoring text to a console window instead. It will use less resources and you'll get the automatic scrolling you want.
0 Kudos
Reply