I am building an IT helpdesk database, and I want to add a New Record in a subform (subActions) of the main form (fpriINCIDENTS), from another open form (frmHELPFILE)
A copy of the ID number of the record selected in form frmHELPFILE, (this has an underlying table tblHELPFILE that containes a list of troubleshooting tips) through a command button click event, will be transfered to the new record on the subform (subActions). Thus maintaining a list of tried troubleshooting tips for each incident. Therefore the code resides on a serparate form from either the main or subforms
If an excisting record in the subform of the main form is the focus the
strAddHelp = Me![txtHelpFileID].Valu
Forms!fpriINCIDENTS!subActions!cboHelpFileID = strAddHel
copies the data across and replaces what is already there, but I need a way of making the new record the focus, just before the ID number is copied, and then the record is save. Therefore completing the operation
Regard
Shau