<groan> I have two forms that use the same table. The table is an employee record, (name, address, phone, etc) and Form1 is used to gather this info. Also on Form1 I've created a text box control that opens Form2 on focus, if the field is null, which is used to gather information for a "contact" person in case of emergency, etc. This data is also stored in appropriate collumns on the same table. Everything seems to work hunky-dorey except in the properties for the controls on Form2 I've tried to set the default value to reflect the same info entered on Form1 which the user can either accept or edit. ie: since the contact person is usually a spouse or someone living at the same address then the address is probably the same. I've tried
and
etc to no avail. The controls come up blank except the ones with the default value set (text) from the field properties in the table.
Am I doing this wrong? Should I have more tables? Less forms? Should Form2 be a subform of Form1? HELP!
Btw, Form1 is modal and Form2 is popup modal.
Thanks,
Mike
Code:
=[Address]
Code:
=Forms![EmployeeInfo]![Address]
Am I doing this wrong? Should I have more tables? Less forms? Should Form2 be a subform of Form1? HELP!
Btw, Form1 is modal and Form2 is popup modal.
Thanks,
Mike