G
Guest
I need some help with this. I'm a novice and have no skills in writing event procedures.
I have a combo box to make selections. I'd like to double click the selection to open a form and its record.
Here are the combo box details:
cbSupplierIDs
-ControlSource: tblSupplierIDs.txtSupplierID
-RowSource: SELECT tblSupplierIDs.txtSupplierID, tblSupplierIDs.txtName, tblSupplierNames.Type FROM tblSupplierNames INNER JOIN tblSupplierIDs ON tblSupplierNames.txtName=tblSupplierIDs.txtName WHERE (((tblSupplierNames.Type)="PK")) ORDER BY tblSupplierIDs.txtName;
The form to open is:
frmPKSuppliers
The form needs to open to the record that was selected in the combo box.
I hope this makes sense - I appreciate your help! THANKS!
I have a combo box to make selections. I'd like to double click the selection to open a form and its record.
Here are the combo box details:
cbSupplierIDs
-ControlSource: tblSupplierIDs.txtSupplierID
-RowSource: SELECT tblSupplierIDs.txtSupplierID, tblSupplierIDs.txtName, tblSupplierNames.Type FROM tblSupplierNames INNER JOIN tblSupplierIDs ON tblSupplierNames.txtName=tblSupplierIDs.txtName WHERE (((tblSupplierNames.Type)="PK")) ORDER BY tblSupplierIDs.txtName;
The form to open is:
frmPKSuppliers
The form needs to open to the record that was selected in the combo box.
I hope this makes sense - I appreciate your help! THANKS!