Re: Re: Delphi Progress bar?

Posted by Shorty:
In Reply to: Re: Delphi Progress bar? posted by sridharan:

Values of Delphi Progressbar you will want to change:

Min, Max, Position which are all integers
Max is the highest value (100%)
Position is what the value is.. so if max was 100 and position was 50 then it would be halfway

Just create a button that does:
Progressbar1.Position := Progressbar1.Position + 1
...and vice versa, or change it another way.