Can anyone advise me how to add an About form to my app.
I have tried to do it, and it works well on my Desktop, but
on my pocket pc it is doing some problems, for example,
after I display the About form with ShowDialog, and then
hide the dialog, I cannot access controls on the main form,
and also I cannot stop the app from Tasks. Any ideas?
Also, does anyone know how to create a global variable that
I can access from all forms, before I even instantiate the form.
For example, from the About form, I want to set a variable
on Form1 (the main form), but only constance come up on
the intellisense. The only way I can think of is doing it the
other way round, and having my global var on the About form
rather than on Form1, and then in Form1 I can instantiate the
About form and then I can access the global in About.
Is there no other way, without instantiation?
tia.