I want to display real-time data to a window using Win32::GUI. I've got an example below for a command prompt environment that I would like to port to the Win32::GUI environment.
for($i=0; $i<10; $i++) { printf("Counter Value is %d",$i); } system "cls"; The point is I want to print a string, append it with data, display all values, then clear the screen. I'm not really sure Win32::GUI is targeted for this type of function, as most of the samples I see are for static app's (point and click then process). If someone can show me how to port I think it should get me going in the right direction. Any suggestions? Thanks for a reply, Mike in New York.