We Have Two Forms Application
First Form: Look Up
Sceond Form: Invoice Form
C Sharp.Net Language
Look Up Window Use DataGrid Control
When We Open LookUp Window and Double Click On DataGrid We went Select Value enter on Invoice Form Field.
Printable View
We Have Two Forms Application
First Form: Look Up
Sceond Form: Invoice Form
C Sharp.Net Language
Look Up Window Use DataGrid Control
When We Open LookUp Window and Double Click On DataGrid We went Select Value enter on Invoice Form Field.
you could try making the grid public and in the invoice form have some code like
this is all off the top of my head so I not sure if it will work or if it's the proper way to do thingsCode:LookUpForm frm = new LookUpForm();
frm.grd.Click+= new EventHandler(grdClicked);
...
private void grdClicked(object sender,EventArgs e)
{
MessageBox.Show("clicked");
}