LostGamerz
C# Tutorial - How To Open New Forms 1296785282
LostGamerz
C# Tutorial - How To Open New Forms 1296785282
LostGamerz
Would you like to react to this message? Create an account in a few clicks or log in to continue.



 
HomePinoy VendeTaLatest imagesRegisterLog in

 

 C# Tutorial - How To Open New Forms

Go down 
AuthorMessage
Crowd™
Administrator
Administrator
Crowd™


Join date : 31/01/2011
LostPoints : 10383
Thanks & Rep : 28
Posts : 229
Age : 33
Location : 6ret
Warning Level : C# Tutorial - How To Open New Forms WarningBar-Gloss1

C# Tutorial - How To Open New Forms Empty
PostSubject: C# Tutorial - How To Open New Forms   C# Tutorial - How To Open New Forms Icon_minitimeFri Aug 03, 2012 10:19 pm

OK, this question seems to have popped up quite a lot, and it's really quite simple, so here's some details about how to open secondary forms from a main form.

Example

We have a main form. The user clicks "New Order", where the order form pops up. But how does it pop up?

Instance and Static

This is how C# differs to VB. In VB, you have one copy of each form. You can hide and show this form any time you like, but there is one form. You can toggle visibility by using Show() or Hide().

C#, on the other hand, is very different. Here we can only use instance members. What this means is that there is no single copy of the form - if you want to open a form, you must create a new "version" of the form, and display this to the user.

Classes and Objects

In VB, a form name in the code would refer to the actual form object. By typing a period (.), we could access the properties of the form. In C#, the form name is a class. Therefore, we cannot access any properties directly from it. We must create a new object variable, and use the form class to fashion it to the shape of the form we want to show.

The Code

To open the order form, we would do something like this:

[HIGHLIGHT=csharp]
frmOrder form = new frmOrder();
form.ShowDialog();
[/HIGHLIGHT]

Notice how the frmOrder form (the name of our order form) is being used as a class - the actual form object is called "form". Therefore, to access its properties we refer to this, and not the form class.

Suppose we wanted to know the result of the order form:


[HIGHLIGHT=csharp]
frmOrder form = new frmOrder();
if (form.ShowDialog() == DialogResult.OK)
{
MessageBox.Show("You selected the " + form.txtOrder.Text + " item!");
}
else
{
MessageBox.Show("Oh well, maybe next time!");
}
[/HIGHLIGHT]

First, we check the DialogResult enumeration that ShowDialog() returns. If it is DialogResult.OK (under a couple of namespaces, of course) then we grab the contents of the txtOrder textbox on the form. If not, we display a cancellation note (you don't have to do this, of course).

Conclusion

I hope this will be helpful - especially for those migrating from VB to C#. Bear this in mind, and creating new forms will be a doddle.
Back to top Go down
https://pinoyvendetta.forumtl.com
 
C# Tutorial - How To Open New Forms
Back to top 
Page 1 of 1
 Similar topics
-
» Creating login/registration forms with php
» Basic Decryption Tutorial
» Easy -Swf - Tutorial (For Bym Or Any Game)
»  Basic Decryption Tutorial
» VB 6.0: Tutorial, Making a Port Scanner

Permissions in this forum:You cannot reply to topics in this forum
LostGamerz :: Guides, eBooks, Tutorials and Tools Zone :: Tutorials and Guides-
Jump to: