Home All Groups Group Topic Archive Search About
Author
13 Feb 2006 6:08 PM
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

Author
13 Feb 2006 7:15 PM
jvb
Application.DoEvents(). If you are making a call to a process that will
take a long time to return, use a thread.
Author
13 Feb 2006 7:59 PM
JFB
Sorry for my ignorance.
How can I use thread on this app?
Tks
JFB

Show quoteHide quote
"jvb" <gome***@gmail.com> wrote in message
news:1139858157.431606.322970@o13g2000cwo.googlegroups.com...
> Application.DoEvents(). If you are making a call to a process that will
> take a long time to return, use a thread.
>