View Single Post
Old 10-25-2004, 09:53 PM   #9 (permalink)
Iron_Cross
 
Ultra Techie

Join Date: Sep 2003

Location: Bamberg, Germany

Posts: 549

Iron_Cross

Send a message via ICQ to Iron_Cross Send a message via MSN to Iron_Cross Send a message via Yahoo to Iron_Cross
Default

To create a form you can either use the IDE or just do this...

Code:
using System;
using System.Windows.Forms;

public class TestForm : Form {
    public static void Main(string[] args){
        Application.Run(new TestForm());
    }
}
And of course adding controls is longer, but that's a basic form.
__________________

See today\'s Penny-Arcade!(May contain foul lanuage)
Pain is weakness leaving the body.

PM Me for my MSN
Iron_Cross is offline