A
Alex Stark
Hi,
I have a WM2003 application ported from Compact Framework 1 to 2.
In my main menu I do a simple :
ToolsForm tf = new ToolsForm();
tf.ShowDialog();
in ToolsForm.Load I do some init stuff and show a state message. This
works with CF 1. But after porting this app to CF2 I have a different
behavior. The ToolsForm form is shown just after the Load-Methode is
executed, so that I can not see any state messages. It seems that in CF1
after a ShowDialog first the Form is shown and then the Load-Method is
execuded. In CF2 it seems that first the Load-Method is executed and
after that, the Form is shown. I haven't found a solution for this proble,
Refresh() on top of Load method doesn't matter.
Does anyone have a solution for this problem ?
Best regards
Alex
I have a WM2003 application ported from Compact Framework 1 to 2.
In my main menu I do a simple :
ToolsForm tf = new ToolsForm();
tf.ShowDialog();
in ToolsForm.Load I do some init stuff and show a state message. This
works with CF 1. But after porting this app to CF2 I have a different
behavior. The ToolsForm form is shown just after the Load-Methode is
executed, so that I can not see any state messages. It seems that in CF1
after a ShowDialog first the Form is shown and then the Load-Method is
execuded. In CF2 it seems that first the Load-Method is executed and
after that, the Form is shown. I haven't found a solution for this proble,
Refresh() on top of Load method doesn't matter.
Does anyone have a solution for this problem ?
Best regards
Alex