fifi said:
Oh I am so sorry JonOfAllTrades, but I actually have a check box. I am new
in this, so if you could tell me more explicitely where to go and what to type
Thank you so much for your time

No problem. Going back to my first post, this is what I would recommend:
Open the Form in question
Open the Properties pane, and click the Events tab
Under OnCurrent, select [Event Procedure], this will let you creat Visual
Basic code
Click the ellipses next to OnCurrent to edit the code
Inside Form_Current, add code like this:
If BizNameSameAsTechName Then
TechName = BizName
TechPhone = BizPhone
TechEMail = BizEMail
EndIf
Only, you will need to replace "BizNameSameAsTechName" with the name of your
check box. You can find this under the Other tab for the Properties page for
your control. You will also need to change "TechName," "TechPhone,"
"BizName," etc. to the names of the appropriate controls.
How's that?