Help Updating Taskbar

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

    #1

    Help Updating Taskbar

    Hi,
    I have a long process where I use a progressbar and update the caption of
    the form with the % complete.The problem is that the caption in the taskbar
    does not get updated. I can get it done by hiding and showing the form but
    the form then flickers. If the form is minimized it also does not update.
    Hope someone can help.
    Thanks
    Basil


  • Raoul Watson

    #2
    Re: Help Updating Taskbar


    "Basil Fenix" <basil@iafrica. com> wrote in message
    news:edidnbN56_ F8W8PfRVn-3g@is.co.za...[color=blue]
    > Hi,
    > I have a long process where I use a progressbar and update the caption of
    > the form with the % complete.The problem is that the caption in the[/color]
    taskbar[color=blue]
    > does not get updated. I can get it done by hiding and showing the form but
    > the form then flickers. If the form is minimized it also does not update.
    > Hope someone can help.
    > Thanks
    > Basil
    >[/color]

    Does Me.Refresh work?


    Comment

    • Basil Fenix

      #3
      Re: Help Updating Taskbar


      "Raoul Watson" <WatsonR@Intell igenCIA.com> wrote in message
      news:IGD7e.1674 8$nH4.4123@trnd ny05...[color=blue]
      >
      > "Basil Fenix" <basil@iafrica. com> wrote in message
      > news:edidnbN56_ F8W8PfRVn-3g@is.co.za...[color=green]
      >> Hi,
      >> I have a long process where I use a progressbar and update the caption of
      >> the form with the % complete.The problem is that the caption in the[/color]
      > taskbar[color=green]
      >> does not get updated. I can get it done by hiding and showing the form
      >> but
      >> the form then flickers. If the form is minimized it also does not update.
      >> Hope someone can help.
      >> Thanks
      >> Basil
      >>[/color]
      >
      > Does Me.Refresh work?
      >
      >[/color]
      Have tried with no success.


      Comment

      • Steve Gerrard

        #4
        Re: Help Updating Taskbar


        "Basil Fenix" <basil@iafrica. com> wrote in message
        news:qM6dncvIm5 wa08LfRVn-jg@is.co.za...[color=blue]
        >
        > "Raoul Watson" <WatsonR@Intell igenCIA.com> wrote in message
        > news:IGD7e.1674 8$nH4.4123@trnd ny05...[color=green]
        >>
        >> "Basil Fenix" <basil@iafrica. com> wrote in message
        >> news:edidnbN56_ F8W8PfRVn-3g@is.co.za...[color=darkred]
        >>> Hi,
        >>> I have a long process where I use a progressbar and update the caption of
        >>> the form with the % complete.The problem is that the caption in the[/color]
        >> taskbar[color=darkred]
        >>> does not get updated. I can get it done by hiding and showing the form but
        >>> the form then flickers. If the form is minimized it also does not update.
        >>> Hope someone can help.
        >>> Thanks
        >>> Basil
        >>>[/color]
        >>
        >> Does Me.Refresh work?
        >>
        >>[/color]
        > Have tried with no success.
        >[/color]

        Refresh might not work for the window caption, since the caption is not part of
        the "client" area of the window.

        Try the old
        Me.Caption = "21.28% complete..."
        DoEvents

        where DoEvents gives the system a chance to catch up with you.


        Comment

        Working...