I have a contacts db I am working on. The main form has a tab control showing the following headers on the top row:
Base/Contacts/Server/TCNO/Equipment.
I have a combo box (cboBase_Name) outside of the tab control to select my base and I want each tab control to show the relevant info for each.
For example the Base tab show the current shipping address. The Contacts tab shows each point of contact (POC) for that base, example primary and alternate Finance POC or System POC. The Server tab would show the model server, IP address, Service tag, etc.... You get the picture.
I only want one combo box and don't want to use a multi-column combo to display data in my txtBoxes, ie:
Me.txtMajcom_POC = Me![cboContact].Column(1)
Me.txtMajcom_Email = Me![cboContact].Column(2)
Me.txtMajcom_DSN = Me![cboContact].Column(3)
I have been that route already.
I also want to have cmdAdd, cmdEdit and cmdSave buttons outside of my tab control to allow updates to the information from the tab control.
Did I make this clear enough?
Any suggestions.
Base/Contacts/Server/TCNO/Equipment.
I have a combo box (cboBase_Name) outside of the tab control to select my base and I want each tab control to show the relevant info for each.
For example the Base tab show the current shipping address. The Contacts tab shows each point of contact (POC) for that base, example primary and alternate Finance POC or System POC. The Server tab would show the model server, IP address, Service tag, etc.... You get the picture.
I only want one combo box and don't want to use a multi-column combo to display data in my txtBoxes, ie:
Me.txtMajcom_POC = Me![cboContact].Column(1)
Me.txtMajcom_Email = Me![cboContact].Column(2)
Me.txtMajcom_DSN = Me![cboContact].Column(3)
I have been that route already.
I also want to have cmdAdd, cmdEdit and cmdSave buttons outside of my tab control to allow updates to the information from the tab control.
Did I make this clear enough?
Any suggestions.
Last edited: