G
google3luo359
Hmmmm...
I've always had success at putting VB code under controls, and just
double-clicking them to fire the code.
But it's not working now and I'm wondering what's happening?
The control is on a subform. It's a plain textbox. I just want to
dbl-click and open a help form.
I can dbl-click a control on the parent form and it works.
What are some things that might be preventing the code from firing?
I tried:
DoCmd.OpenForm "fmHelpGoals"
and also:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "fmHelpGoals"
DoCmd.OpenForm stDocName, , , stLinkCriteria
TIA Ric
I've always had success at putting VB code under controls, and just
double-clicking them to fire the code.
But it's not working now and I'm wondering what's happening?
The control is on a subform. It's a plain textbox. I just want to
dbl-click and open a help form.
I can dbl-click a control on the parent form and it works.
What are some things that might be preventing the code from firing?
I tried:
DoCmd.OpenForm "fmHelpGoals"
and also:
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "fmHelpGoals"
DoCmd.OpenForm stDocName, , , stLinkCriteria
TIA Ric