C# help
-
- Posts: 541
- Joined: Thu Feb 08, 2007 5:39 pm
- Location: NJ
C# help
Where can I find info on learning C#? Microsoft's site has tons of VB things but I can't find much for C# there.
Your mom became oversized. Please make your mom smaller before reposting.
Infern0 wrote:You just shave the excess bush and burn the leftovers.
there should be an option near the top to switch languages
Halo 2 Plugins | Lock-on To Just About Anything | My Sites | Snow Hog
Old Plugins you have, upgrade you must...
Always Maintain a High Quality-To-Crap Ratio.
- Aumaan Anubis
- Posts: 2938
- Joined: Fri Jun 30, 2006 1:01 pm
- Location: Aumaan
- Contact:
-
- Posts: 541
- Joined: Thu Feb 08, 2007 5:39 pm
- Location: NJ
-
- Posts: 541
- Joined: Thu Feb 08, 2007 5:39 pm
- Location: NJ
- Aumaan Anubis
- Posts: 2938
- Joined: Fri Jun 30, 2006 1:01 pm
- Location: Aumaan
- Contact:
Depends. For instance, if you want to open a generic form with C#, you can use...
But if you want a specific form to load, you can create that form with its specific attributes, and assuming that it is called form2.cs, you can use...
Code: Select all
private void button1_Click(object sender, EventArgs e)
{
Form objform = new Form();
objform.Show();
}
Code: Select all
private void button1_Click(object sender, EventArgs e)
{
Form2 objform2 = new Form2();
objform2.Show();
}
It is expected, and demanded.Tural wrote:MrMurder, we're going to hold you to that promise.
-
- Posts: 1262
- Joined: Sun Sep 03, 2006 10:43 pm
- Location: Michigan
- Aumaan Anubis
- Posts: 2938
- Joined: Fri Jun 30, 2006 1:01 pm
- Location: Aumaan
- Contact: