Using 1 form for dbl click in multiple text boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello all.....


I want to use one form to enter information in several text boxes on the
calling form by using the dbl click event.

The calling form has a text box for each 30 minute time slot, hence 0830,
0900, 0930 and so on.

Double clicking opens the form 'frmAssignTime'.

How would I code the button that assigns the PatientID on the form
'frmAssignTime' to the text box that was double clicked?

Thanks in advance.
 
Try: Forms!FormName!ControlName = Me!PatientID

Change FormName and ControlName to your form and control names.
 
Back
Top