S
Stew
Hello,
I have a form, with a progress bar, which execute some operations like
checking update before launching another form.
I want update this progress bar but I don't know how launch my method
after the form appears on screen. I tried all events but they launched
my method before the form appears. I believe in .Net framework, there
is an event on Form show.
How can I do it? I am using compact framework 2.0 beta.
Example
public FormWelcome()
{
InitializeComponent();
CheckUpdate() ;
}
Thanx for your help.
Steve
I have a form, with a progress bar, which execute some operations like
checking update before launching another form.
I want update this progress bar but I don't know how launch my method
after the form appears on screen. I tried all events but they launched
my method before the form appears. I believe in .Net framework, there
is an event on Form show.
How can I do it? I am using compact framework 2.0 beta.
Example
public FormWelcome()
{
InitializeComponent();
CheckUpdate() ;
}
Thanx for your help.
Steve