J
JP
I am beginning C# programming and am trying to open frmOrders from a button
in frmCustomer (in Northwind database) with CustomerID as the link between
the two forms. What is the easiest and quickest way to do this? I'm stuck at:
private void btnOrders_Click(object sender, EventArgs e)
{
Form newForm = new frmOrders();
newForm.Show();
}
not able to figure out how to filter frmOrders to only show the focussed
CustomerID in frmCustomer.
in frmCustomer (in Northwind database) with CustomerID as the link between
the two forms. What is the easiest and quickest way to do this? I'm stuck at:
private void btnOrders_Click(object sender, EventArgs e)
{
Form newForm = new frmOrders();
newForm.Show();
}
not able to figure out how to filter frmOrders to only show the focussed
CustomerID in frmCustomer.