main form render...refresh....programatically etc

  • Thread starter Thread starter JH
  • Start date Start date
J

JH

I have an application that runs for many minutes. During this time if i open
other applications the form becomes all white i.e it does not render or
refresh the window. Is there a way (programatically) to render or refresh
the main form window.......

any idea on this and related issues is appreciated.
Thanks
 
In addition to Greg,

Set that do events in a loop as this
do while MyProcessIsNotReady
threading.thread.sleep(1000)
application.doevents
loop

Otherwise a lot of power is spended to that loop.

I hope this helps.

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top