1
我必須在C#中將id
從一個窗體傳遞到另一個窗體。將值從一個窗體傳遞到另一個窗體在c#
我無法做到這一點。
的C#代碼:
private void btnedit_Click(object sender, EventArgs e)
{
foreach (DataGridViewRow a in dataGridViewUnPaidList.Rows)
{
if (a.Cells[0].Value != null)
{
Convert.ToInt64(a.Cells[1].Value); // i have to pass this id in AddInvoice() form
AddInvoice ad = new AddInvoice();
ad.Show();
NonPaideData non = new NonPaideData();
non.Hide();
}
else
{
MessageBox.Show("Now Row Is Selected");
}
}
}
誰能告訴我什麼,我做錯了什麼?