Click here to Skip to main content
15,905,867 members

Comments by Hoa Súng (Top 4 by date)

Hoa Súng 14-Nov-12 18:07pm View    
Thx so much <3
Hoa Súng 14-Nov-12 17:50pm View    
but I can replace this code above like that:
public class WinForm:Form
{
//private Button button1;
//private TextBox textBox1;
public WinForm()
{
}
static void Main(string[] args)
{
WinForm myFrm = new WinForm();
//myFrm.button1 = new Button();
//myFrm.textBox1 = new TextBox();
Button button1=new Button();
TextBox textBox1=new TextBox();
myFrm.Text = "my first window application";
Application.Run(myFrm);
}
}

So what differences between them. (sorry if I ask you many stupid question but I want to know clearly)
Hoa Súng 14-Nov-12 17:45pm View    
Thx so much.
Hoa Súng 14-Nov-12 17:13pm View    
thx for helping me. I just understand a little bit so if you don't mind can explain more or give some example to clarify this matter.