How to display progress bar in windows form during execution of DTS package?

O

owais

H

I want to display progress bar during execution of windows form. When I execute DTS package the form will idle till the DTS package finishes

Please help me in this regard. its an urgen

Thank
sohail
 
G

Guest

If you are using VS.NET, a progress bar is available from the Forms toolbox.

Three properties that make it work are :

Minimum
Maximum
Value

Set Min and MAx at the beginning, set value at each 'milestone'. Give
windows a chance to redraw the control (doEvents or whatever the exact method
is).

If you don't have VS.NET, the control is :

System.Windows.Forms.ProgressBar
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top