From now on I will post my project ... writing with C# programming language ... I so tried for this .. so busy so hard .. but now I know a little about C# ...Following are the codes for FORM 1
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Manager_project
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 a = new Form2(); //for calling new form(2)
a.Show();
}
private void button2_Click(object sender, EventArgs e)
{
this.Close(); //for closing form(1)
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
Thursday, April 02, 2009
min that thant
Posted in 
No Response to "Manager Project(1)"
Post a Comment