H
Herb
I have developed an application in Access 2003. I need some users to run it
(not on a network) with their Access 2000. The app runs flawlessly for maybe
99% of the functionality. The VB code is failing in several points in
executing form-related functions for reasons that baffle me. e.g. VB hangs up
Access 2000 at the the expression: stDocName = "frmEventsForPostingForm"
with error "Can't find project or library". This statemetn never fails in
the Access 2003 execution. strDocName is used in: DoCmd.OpenForm
stDocName, , , stLinkCriteria When I change the statement to DoCmd.OpenForm
"frmEventsForPostingForm", , , stLinkCriteria, it works.
I suspect this is some kind of forward/backward compatability issue with the
two versions in play. Does anyone have any suggestion on how to vet my code
to avoid expressions / usages that would likely fail when running in the
older release?
Thanks.
(not on a network) with their Access 2000. The app runs flawlessly for maybe
99% of the functionality. The VB code is failing in several points in
executing form-related functions for reasons that baffle me. e.g. VB hangs up
Access 2000 at the the expression: stDocName = "frmEventsForPostingForm"
with error "Can't find project or library". This statemetn never fails in
the Access 2003 execution. strDocName is used in: DoCmd.OpenForm
stDocName, , , stLinkCriteria When I change the statement to DoCmd.OpenForm
"frmEventsForPostingForm", , , stLinkCriteria, it works.
I suspect this is some kind of forward/backward compatability issue with the
two versions in play. Does anyone have any suggestion on how to vet my code
to avoid expressions / usages that would likely fail when running in the
older release?
Thanks.