B
Brian
I have a combo box that uses a Row Source Type of Table/Query and a Row
Source that is a SQL Statement. Basically, the combo box lists all of the
Contact Names in my database. I would like to be able to add "Add Contact"
and "Edit Contact" as the first two items of the list. Is there any way to
do this?
My SQL Statement is:
SELECT dbo_tbl_Contacts.str_ContactID, dbo_tbl_Contacts.str_CompanyName,
dbo_tbl_Contacts.str_FirstName, dbo_tbl_Contacts.str_LastName FROM
dbo_tbl_Contacts WHERE (((dbo_tbl_Contacts.str_CompanyName) Is Not Null) AND
((dbo_tbl_Contacts.bit_Delete)=0)) ORDER BY dbo_tbl_Contacts.str_CompanyName;
Thanks to anyone that responds!
Source that is a SQL Statement. Basically, the combo box lists all of the
Contact Names in my database. I would like to be able to add "Add Contact"
and "Edit Contact" as the first two items of the list. Is there any way to
do this?
My SQL Statement is:
SELECT dbo_tbl_Contacts.str_ContactID, dbo_tbl_Contacts.str_CompanyName,
dbo_tbl_Contacts.str_FirstName, dbo_tbl_Contacts.str_LastName FROM
dbo_tbl_Contacts WHERE (((dbo_tbl_Contacts.str_CompanyName) Is Not Null) AND
((dbo_tbl_Contacts.bit_Delete)=0)) ORDER BY dbo_tbl_Contacts.str_CompanyName;
Thanks to anyone that responds!