User Profile
Collapse
-
Well, when I view error 35, I want to be able to go straight to the code that generates that error. Why don't I want to use find? Quite simply, it is slow... -
I think you missed out one comma:
DoCmd.OpenForm "frmX", acNormal, , "[FacilityID]=" & Me.FacilityIDLeave a comment:
-
Displaying Code modules
I would like to display the area within a code module where certain text appears.
The module concerned has numerous lines containing code such as:
If x Then AddErr 35
If y then AddErr 45
etc etc
The code below works (from a form or other module)
Dim l1 as long, l2 as long, c1 as long, c2 as long
Dim bolFound as Boolean
Dim mdl as module
DoCmd.OpenModul e "modProcessingB S"...
No activity results to display
Show More
Leave a comment: