G
Guest
I have a field in a subform that is in datasheet view. Upon entry into that
field [ProductDescription], I would like another form, which is a cascading
combo box [frmProjectSelect], to open up. I wrote the following in the On
Enter event procedure:
On Error Resume Next
DoCmd.OpenForm _
FormName:="frmProductSelect", _
View:=acNormal, _
WindowMode:=acDialog
Me!ProductDescription.SetFocus
When I enter that field in the subform, nothing happens. There is currently
a drop down combo box in that field. Do I need to remove that first for it
to work, or does something in my event procedure not appear correct?
Thank you!
field [ProductDescription], I would like another form, which is a cascading
combo box [frmProjectSelect], to open up. I wrote the following in the On
Enter event procedure:
On Error Resume Next
DoCmd.OpenForm _
FormName:="frmProductSelect", _
View:=acNormal, _
WindowMode:=acDialog
Me!ProductDescription.SetFocus
When I enter that field in the subform, nothing happens. There is currently
a drop down combo box in that field. Do I need to remove that first for it
to work, or does something in my event procedure not appear correct?
Thank you!