refresh App

  • Thread starter Thread starter JFB
  • Start date Start date
J

JFB

Hi All,
I have a vb.net 2003 app under windows XP. When it runs it shows a window
with a text label status but I want this window to be refresh all the time.
If I open something else at the same time looks like my app is froze... How
can I have this app all the time refresh??
The app is connecting to FTP and downloading files... do I have to use
me.refresh() everywhere or it's a better way to do this???
Tks in advance.
JFB
 
Application.DoEvents(). If you are making a call to a process that will
take a long time to return, use a thread.
 
Back
Top