Hi All,

I want to do the following, show the form and after the form is visible do
some processing, so i can show the process on the form. But the problem is
that i can't seem to find an event that get fired after the form is visible.
Am i missing something?

I'm using c# for this.

Please help, thanks in advance,
Richard.

Re: Starting a process after the form is visible? by Jan

Jan
Tue May 11 05:01:26 CDT 2004

hello, Richard

Try Form.Activated event, you have to add this eventhandler by yourself.
And notice, every time the form is shown, the event will get fired, even
when you dismiss the notification alert (such as power low notification)
will trigger this event.

--
Best Regards,
Jan Yeh

eMVP, MCAD, .NETcf Developer
Mobile Mind Company @ Taiwan
http://blog.mvpcn.net/janyeh

"Richard" <rh@xs4all.nl> ¦b¶l¥ó news:%23Fx2YHzNEHA.1276@TK2MSFTNGP11.phx.gbl
¤¤¼¶¼g...
> Hi All,
>
> I want to do the following, show the form and after the form is visible do
> some processing, so i can show the process on the form. But the problem is
> that i can't seem to find an event that get fired after the form is
visible.
> Am i missing something?
>
> I'm using c# for this.
>
> Please help, thanks in advance,
> Richard.



Re: Starting a process after the form is visible? by Richard

Richard
Tue May 11 06:07:35 CDT 2004

Hi Jan,

Thanks for your quick reply.

I tried that, but the event get's fired before the window is actually
visible, is there any way to do it?

Richard.

"Jan Yeh [MVP]" <janyehNO@SPAMmail2000.com.tw> schreef in bericht
news:eVjat7zNEHA.3452@TK2MSFTNGP10.phx.gbl...
> hello, Richard
>
> Try Form.Activated event, you have to add this eventhandler by yourself.
> And notice, every time the form is shown, the event will get fired, even
> when you dismiss the notification alert (such as power low notification)
> will trigger this event.
>
> --
> Best Regards,
> Jan Yeh
>
> eMVP, MCAD, .NETcf Developer
> Mobile Mind Company @ Taiwan
> http://blog.mvpcn.net/janyeh
>
> "Richard" <rh@xs4all.nl> ¦b¶l¥ó
news:%23Fx2YHzNEHA.1276@TK2MSFTNGP11.phx.gbl
> ¤¤¼¶¼g...
> > Hi All,
> >
> > I want to do the following, show the form and after the form is visible
do
> > some processing, so i can show the process on the form. But the problem
is
> > that i can't seem to find an event that get fired after the form is
> visible.
> > Am i missing something?
> >
> > I'm using c# for this.
> >
> > Please help, thanks in advance,
> > Richard.
>
>



Re: Starting a process after the form is visible? by Jan

Jan
Tue May 11 22:03:38 CDT 2004

Hi Richard,

Will Form.GotFocus event fit your requirement?
You can check "Control.GotFocus" section in MSDN Library for detail.
It will explain the difference between Form.Activated and Form.GotFocus
and the order of form events triggered.

HTH..

--
Best Regards,
Jan Yeh

eMVP, MCAD, .NETcf Developer
Mobile Mind Company @ Taiwan
http://blog.mvpcn.net/janyeh

"Richard" <rh@xs4all.nl> ¦b¶l¥ó news:u8Uktg0NEHA.3988@TK2MSFTNGP09.phx.gbl
¤¤¼¶¼g...
> Hi Jan,
>
> Thanks for your quick reply.
>
> I tried that, but the event get's fired before the window is actually
> visible, is there any way to do it?
>
> Richard.
>
> "Jan Yeh [MVP]" <janyehNO@SPAMmail2000.com.tw> schreef in bericht
> news:eVjat7zNEHA.3452@TK2MSFTNGP10.phx.gbl...
> > hello, Richard
> >
> > Try Form.Activated event, you have to add this eventhandler by yourself.
> > And notice, every time the form is shown, the event will get fired, even
> > when you dismiss the notification alert (such as power low notification)
> > will trigger this event.
> >
> > --
> > Best Regards,
> > Jan Yeh
> >
> > eMVP, MCAD, .NETcf Developer
> > Mobile Mind Company @ Taiwan
> > http://blog.mvpcn.net/janyeh
> >
> > "Richard" <rh@xs4all.nl> ¦b¶l¥ó
> news:%23Fx2YHzNEHA.1276@TK2MSFTNGP11.phx.gbl
> > ¤¤¼¶¼g...
> > > Hi All,
> > >
> > > I want to do the following, show the form and after the form is
visible
> do
> > > some processing, so i can show the process on the form. But the
problem
> is
> > > that i can't seem to find an event that get fired after the form is
> > visible.
> > > Am i missing something?
> > >
> > > I'm using c# for this.
> > >
> > > Please help, thanks in advance,
> > > Richard.
> >
> >
>
>



Re: Starting a process after the form is visible? by Richard

Richard
Thu May 13 14:37:18 CDT 2004

Here's a hack that should do the trick - Over die the form's OnPaint event.
In your form's class, declare a bool that is initialized to false. In the
OnPaint over ride, if the bool is false, then do what ever it is that you
need to do upon first time visible activation of the application and then
set the boolean true so that your one time code doesn't execute again.
===========
Richard Lewis Haggard
www.haggard-and-associates.com

"Jan Yeh [MVP]" <janyehNO@SPAMmail2000.com.tw> wrote in message
news:eHvd628NEHA.3476@TK2MSFTNGP09.phx.gbl...
> Hi Richard,
>
> Will Form.GotFocus event fit your requirement?
> You can check "Control.GotFocus" section in MSDN Library for detail.
> It will explain the difference between Form.Activated and Form.GotFocus
> and the order of form events triggered.
>
> HTH..
>
> --
> Best Regards,
> Jan Yeh
>
> eMVP, MCAD, .NETcf Developer
> Mobile Mind Company @ Taiwan
> http://blog.mvpcn.net/janyeh
>
> "Richard" <rh@xs4all.nl> ¦b¶l¥ó news:u8Uktg0NEHA.3988@TK2MSFTNGP09.phx.gbl
> ¤¤¼¶¼g...
> > Hi Jan,
> >
> > Thanks for your quick reply.
> >
> > I tried that, but the event get's fired before the window is actually
> > visible, is there any way to do it?
> >
> > Richard.
> >
> > "Jan Yeh [MVP]" <janyehNO@SPAMmail2000.com.tw> schreef in bericht
> > news:eVjat7zNEHA.3452@TK2MSFTNGP10.phx.gbl...
> > > hello, Richard
> > >
> > > Try Form.Activated event, you have to add this eventhandler by
yourself.
> > > And notice, every time the form is shown, the event will get fired,
even
> > > when you dismiss the notification alert (such as power low
notification)
> > > will trigger this event.
> > >
> > > --
> > > Best Regards,
> > > Jan Yeh
> > >
> > > eMVP, MCAD, .NETcf Developer
> > > Mobile Mind Company @ Taiwan
> > > http://blog.mvpcn.net/janyeh
> > >
> > > "Richard" <rh@xs4all.nl> ¦b¶l¥ó
> > news:%23Fx2YHzNEHA.1276@TK2MSFTNGP11.phx.gbl
> > > ¤¤¼¶¼g...
> > > > Hi All,
> > > >
> > > > I want to do the following, show the form and after the form is
> visible
> > do
> > > > some processing, so i can show the process on the form. But the
> problem
> > is
> > > > that i can't seem to find an event that get fired after the form is
> > > visible.
> > > > Am i missing something?
> > > >
> > > > I'm using c# for this.
> > > >
> > > > Please help, thanks in advance,
> > > > Richard.
> > >
> > >
> >
> >
>
>