June 03, 2024, 03:00:59 PM

News:

IonicWind Snippit Manager 2.xx Released!  Install it on a memory stick and take it with you!  With or without IWBasic!


How can I keep seeing what is going on in Windows program.

Started by billhsln, December 14, 2006, 10:19:24 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

billhsln

I wrote a program that executes under the Windows.  The program itself works fine.  My question is, when the program looses focus, it seems to continue running but nothing shows on the screen as to what is happening.  I have the program displaying info and then clearing the screen and displaying more info.  Basically the program  clears the screen after printing a full page of info.  But after losing focus, it no longer displays anything until the program prints its last page.

Is there some way to get it back to displaying info?

Thanks,
Bill
When all else fails, get a bigger hammer.

LarryMc

I THINK you might need to use a "wait 1" in your printing loop so other messages will get processed.

I've had to do that in some of my programs that had time consuming routines running.

Anyway, that's what I would try first.
LarryMc
Larry McCaughn :)
Author of IWB+, Custom Button Designer library, Custom Chart Designer library, Snippet Manager, IWGrid control library, LM_Image control library

AndrewB

Yes, it sounds like something that used to happen in my EB app when filling a List View with loads of data - Wait(1) fixed it


billhsln

When all else fails, get a bigger hammer.