W
Wylie
I'm working on a custom input box (popup = yes and modal = yes) in
Access 2000 that may be called from several different forms.
On the double click event in the calling form control:
docmd.openform "SearchForm"
forms!SearchForm.initializeForm strMode, strForm, strControl
where strForm is the form name and strControl is the control name of
the calling form.
The called search form allows them to search based upon the mode, then
upon completion writes the value back by:
If Nz(cboLookup, "") <> "" Then
Forms(strForm).Controls(strControl) = cboLookup
End If
My problem is after this writes back I can't get an event to fire on
the calling form to process the value. I tried AfterUpdate, Change,
GotFocus with no luck.
Access 2000 that may be called from several different forms.
On the double click event in the calling form control:
docmd.openform "SearchForm"
forms!SearchForm.initializeForm strMode, strForm, strControl
where strForm is the form name and strControl is the control name of
the calling form.
The called search form allows them to search based upon the mode, then
upon completion writes the value back by:
If Nz(cboLookup, "") <> "" Then
Forms(strForm).Controls(strControl) = cboLookup
End If
My problem is after this writes back I can't get an event to fire on
the calling form to process the value. I tried AfterUpdate, Change,
GotFocus with no luck.