refresh App

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • JFB

    #1

    refresh App

    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


  • jvb

    #2
    Re: refresh App

    Application.DoE vents(). If you are making a call to a process that will
    take a long time to return, use a thread.

    Comment

    • JFB

      #3
      Re: refresh App

      Sorry for my ignorance.
      How can I use thread on this app?
      Tks
      JFB

      "jvb" <gomez76@gmail. com> wrote in message
      news:1139858157 .431606.322970@ o13g2000cwo.goo glegroups.com.. .[color=blue]
      > Application.DoE vents(). If you are making a call to a process that will
      > take a long time to return, use a thread.
      >[/color]


      Comment

      Working...