A family of Microsoft relational database management systems designed for ease of use.
Thanks Hans, I just realized that.
Thanks again,
James
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm unable to find actual examples for NavigateTo, either on the web or in access help.
I've tired all the following:
DoCmd.NavigateTo ([Auto Maintenance],[Objects])
DoCmd.NavigateTo ("Auto Maintenance","Objects")
DoCmd.NavigateTo [Auto Maintenance],[Objects]
DoCmd.NavigateTo [Auto Maintenance],[Objects]
As I type past DoCmd.NavigateTo the example:
DoCmd.NavigateTo([Category],[Group])
I type it in exactly, with my of the Category and Group names but keep getting an error like. "Expected =]
James
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Thanks Hans, I just realized that.
Thanks again,
James
Both arguments are strings. Try
DoCmd.NavigateTo "Auto Maintenance", "Objects"