• Creator
    Topic
  • #4302
    lp_irovetz
    Participant

      Hi Forum

      Sure, it’ trival but when you don’t know ….

      How set a progressbar ?

      I created in a form (Frms) a ProgressBar(PB01). The Win32 not Raize one.
      in my code
      Frms.PB01.Visible = true
      Frms.PB01.Min = 0
      Frms.PB01.Max = 0

      Frms.PB01.value = 50 ==> Bug !!! What is the right property ????? Confused

      Thanks for help

      L.P. Irovetz
      Arcane GroupWare

    • Author
      Replies
    • #7765
      Support 3
      Participant

        You can use the Position property to specify the current position of the progress bar.
        Frms.PB01.Position = 1

        Alternatively, you can use the StepBy property to specify the amount that position increases when the StepBy method is called.
        Frms.PB01.StepBy(1)

        Hope this helps.

        Regards,
        Advansys Support

        [This message was edited by Support 2 on October 27, 2006 at 12:53 AM.]

      Viewing 1 replies (of 1 total)
      • You must be logged in to reply to this topic.