Link to home
Start Free TrialLog in
Avatar of silentthread2k
silentthread2kFlag for United States of America

asked on

How can I get a progress bar to show up on the form load of my C# Form_Load function?

It seems like the progress bar only shows up after the processing of the form load is complete.
ASKER CERTIFIED SOLUTION
Avatar of plusone3055
plusone3055
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Are you trying to display a progress bar to indicate how far along your form has loaded?
if so, you will need to create some sort of a splash form that would host your progress bar. That splash form is going to be invoked from your Form_Load() method and, Form_Load will need to update the splash form with current loaded percentage.

If this is not what you're looking for, please rephrase your question.
Avatar of silentthread2k

ASKER

It's a helpfull link, just need to read it carefully and follow the instructions