M
Michael Culley
If I show a form in a c sharp pocket PC app the title of the form flickers to say "Start" and then the title of the previous form
several times and eventually it settles on the correct title. This looks pretty awful
. I found the reason was that any time I set
a property, such as ControlBox = false, the window was destroyed and created again. All of the controls on the form and destroyed
and created afaik. Not only does this cause a flicker but slows things down a lot because the form is effectively loaded several
times. I have not been able to find a solution except to not use these properties. These properties cause the problem:
FormBorderStyle
ControlBox
MaximiseButton
WindowState
MinimiseButton
Any ideas?
Thanks,
Michael Culley
several times and eventually it settles on the correct title. This looks pretty awful

a property, such as ControlBox = false, the window was destroyed and created again. All of the controls on the form and destroyed
and created afaik. Not only does this cause a flicker but slows things down a lot because the form is effectively loaded several
times. I have not been able to find a solution except to not use these properties. These properties cause the problem:
FormBorderStyle
ControlBox
MaximiseButton
WindowState
MinimiseButton
Any ideas?
Thanks,
Michael Culley