ok, here is help for you about GUI:
You use thing called Form, you can find it in namespace
System.Windows.Forms.
Typical usage is you inherit the Form and create your own, sample app would
look like
using System;
using System.Windows.Forms;
class Form1 : Form
{
public Form1()
{
this.Text = "Your form";
this.Width = 400;
this.b1 = new Button();
this.b1.Width = 300;
this.b1.Text = "Click me and nothing happens";
this.Controls.Add(this.b1);
this.b1.Show();
this.Show();
}
Button b1;
}
class Program
{
public static void Main(string[] args)
{
Form1 myForm = new Form1();
Application.Run(myForm);
}
}
Well. Maybe you will have to add references to System and
System.Windows.Forms.
You can find more controls on MSDN
2009/7/28 stanlei <[email protected]>
>
> hello dere ...
> im a 1st year student doin GNIIT (Software engineering) ... i kinda
> need help with C# GUI and C# with ADO.NET <http://ado.net/> ...
> any help would be most welcome
>