My Goal:
1) To ignore any null values from the combo box columns (1-7)
*Note - Column(0) is the company name, which is the primary key of tblCompany
2) Populate txtboxes (WorkPhone, WorkExt, FaxNumber, Address, City, State, Zip) on frmContactsHome with the values of corresponding columns of the combo box.
I have the following tables and forms:
tblContacts - frmContactHome
tblCompany - frmCompany
tblCustomerAccounts - frmCustomerAccount
Basically, I have a form (frmCompany) that contians data about each company name (primarykey)
I want to be able to copy the company address fields for a selected company in my combo box on frmContactsHome.
I can do all of this expect when there is a null vaule in any of the columns of the combo, I get the message that the value can not be null.
Any ideas?
1) To ignore any null values from the combo box columns (1-7)
*Note - Column(0) is the company name, which is the primary key of tblCompany
2) Populate txtboxes (WorkPhone, WorkExt, FaxNumber, Address, City, State, Zip) on frmContactsHome with the values of corresponding columns of the combo box.
I have the following tables and forms:
tblContacts - frmContactHome
tblCompany - frmCompany
tblCustomerAccounts - frmCustomerAccount
Basically, I have a form (frmCompany) that contians data about each company name (primarykey)
I want to be able to copy the company address fields for a selected company in my combo box on frmContactsHome.
I can do all of this expect when there is a null vaule in any of the columns of the combo, I get the message that the value can not be null.
Any ideas?