Advertisement
Advertisement
| 05.03.2008 at 10:57PM PDT, ID: 23374582 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: |
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'nORTHWNDDataSet.Customers' table. You can move, or remove it, as needed.
this.customersTableAdapter.Fill(this.nORTHWNDDataSet.Customers);
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}
|