W
What To Do
Hi All,
Sorry newbie here ...... I have a Splash Screen and am trying to get a
progress bar to work on the bottom. My splash screen stays on for 8000ms and
I would like the bar to go up in time with that.
I have the following code:
private void frmSplash_Load(object sender, EventArgs e)
{
prbSplash.Minimum = 0;
prbSplash.Maximum = 8000;
{
}
int value;
for (value = 0; value != 8000; value++)
{
prbSplash.Value = prbSplash.Value + 1;
}
}
This seems to just wizz up though. How can I slow it down a bit?
Cheers Everyone
Si
Sorry newbie here ...... I have a Splash Screen and am trying to get a
progress bar to work on the bottom. My splash screen stays on for 8000ms and
I would like the bar to go up in time with that.
I have the following code:
private void frmSplash_Load(object sender, EventArgs e)
{
prbSplash.Minimum = 0;
prbSplash.Maximum = 8000;
{
}
int value;
for (value = 0; value != 8000; value++)
{
prbSplash.Value = prbSplash.Value + 1;
}
}
This seems to just wizz up though. How can I slow it down a bit?
Cheers Everyone
Si