I have gone around and around with this problem using a combination of show(), showdialog(), bringtofront() and activate().
I am running CF 3.5 on a symbol MC50 PocketPC running Windows Mobile 5 (I think it is 5…)
This has to be simpler. Could someone please please give me some advice on this one?
If I use form.Show() the second time nothing happens.
If I use form.ShowDialog() the second time I receive this error:
“value does not fall within expected range”
If you call form.Close(), all resources within the instance of the form and the instance itself are disposed of. If you just wish to visually close the form but keep it around, you should use form.Hide(). This issue gave me quite a bit of frustration as well. Below is a note from the Microsoft documentation regarding this: