You should just be able to set the ProgressBar's Value property when you do a push/pull. So, for example, if you know you're going to receive 5 pieces of data, set the Minimum to 0, the Maximum to 5, and increment Value every time you receive something... pretty straight-forward.
Sorry if I misunderstood the question and you're trying to do something more complicated.
Progress bar for Remote Data Access Push Pulls.
Noam Lewis
you mean it'll be like 5 pulls = Max = 5 so 1 pull = +1 Value
hmm i was more thinking of realtime thing like as each pull goes the bar increases. But this might work well :)
John.Doe
You should just be able to set the ProgressBar's Value property when you do a push/pull. So, for example, if you know you're going to receive 5 pieces of data, set the Minimum to 0, the Maximum to 5, and increment Value every time you receive something... pretty straight-forward.
Sorry if I misunderstood the question and you're trying to do something more complicated.
--Jeff