Moorzee
Well-known member
I have a main form calling a query form. The queryForm has a variable EditForm of type form. If the user dblclicks a record an edit form is shown. There are many edit forms for different purposes one of which is frmSupplier
The code which exists is in mainForm:
Is the form loaded into memory here??????
In the query form on the dblClick event of a datagrid:
Has the form already been loaded into memory before this call???????
Cheers.
The code which exists is in mainForm:
VB.NET:
queryForm.EditForm = frmSupplierForm
In the query form on the dblClick event of a datagrid:
VB.NET:
EditForm.showDialog
Cheers.
Last edited by a moderator: