I want to move from one Screen to another screen. Can you tell me about it.
what's the code for changing Screen?
Collapse
X
-
Tags: None
-
-
Hey Mark,
Can you plz give me a big hint.
I m unable to understand your hint.
Thanxxxxx for replying me.
And Nice picture budyComment
-
Kapil,
We don't know what you mean by "Move from one screen to another" is this on the PDA? How does a PDA have two screens? What OS are you using? What device is it? What language are you writing in?Comment
-
I am writting in C#.
and my mean that I have two forms. How I hide form1 and how to display form2 while form2.show property is not working in Windows Mobile 6.
So now can you help me.Comment
-
First of all Form.Show(); is a method not a property, so make sure you are putting () after the .Show.
You need to create an instance of the form
Code:frmYourForm form = new frmYourForm();
Code:form.show();
Comment
-
Thank You Dear, Thats it what I am Looking for.
Thank you very much for helping me in my other problems too.Comment
-
-
Hey Mark, Can you tell me that how can I take a value of one form to another.
my mean for this purpose there are a lots of technique in ASP.Net where from I. but ASP.Net is a Web development Area.
I had worked in VB6 too. I gives us the facility of Modules in which we can put global variables.
Whats in C# for. I have a variable and I need its value on the other form How can I do it?Comment
-
In the constructor for your 2nd form (the bit at the top that is the same as the file name
i.e.
Code:public frmMyForm()
so it would need changed to
Code:public frmMyForm(string _yourVariable)
Code:frmMyForm newForm = new frmMyForm(strVariable)
Comment
Comment