Heres what Ive done so far:
Created a table called Suppliers with basic address fields
Created a form called Suppliers with the same
Both have a Primary Key using Autonumber
What I want to do is like in the template database "Inventory Control", when you go to enter a Category name it tells you to double click it to enter, then another small form pops up and you can add it to the combo box.
I have tried to reproduce everything exactly the way it is in the template but can get it to work. When I enter something into the box, its telling me that what I entered is not in the list, but it wont pop open the form I have designed.
Heres what I put into the field that I want to enter data in:
Row Source Type: Table/Query
Row Source: SELECT DISTINCTROW Suppliers.* FROM Suppliers ORDER BY [Suppliers].[SupplierName];
Shouldnt this line make the Suppliers Form pop up?
Also, for the OnNotInList and DBLclick events, I have only put in there "Event Procedure", Do I need to program the events at all?
Thanks any info would be helpful.
John
Created a table called Suppliers with basic address fields
Created a form called Suppliers with the same
Both have a Primary Key using Autonumber
What I want to do is like in the template database "Inventory Control", when you go to enter a Category name it tells you to double click it to enter, then another small form pops up and you can add it to the combo box.
I have tried to reproduce everything exactly the way it is in the template but can get it to work. When I enter something into the box, its telling me that what I entered is not in the list, but it wont pop open the form I have designed.
Heres what I put into the field that I want to enter data in:
Row Source Type: Table/Query
Row Source: SELECT DISTINCTROW Suppliers.* FROM Suppliers ORDER BY [Suppliers].[SupplierName];
Shouldnt this line make the Suppliers Form pop up?
Also, for the OnNotInList and DBLclick events, I have only put in there "Event Procedure", Do I need to program the events at all?
Thanks any info would be helpful.
John