What does DoMenuItem stands for?

bnw

Registered User.
Local time
Today, 14:58
Joined
Sep 19, 2006
Messages
26
DoCmd.DoMenuItem acFormBar, 3, 0, , acMenuVer70

:(
 
That is the problem with using that old style of code. I know you are probably wondering what it actually does so you could possibly substitute it with the newer

DoCmd.RunCommand acCmdXXXXXX

where the XXXXXX stands for whatever menu command you want.

So basically it says to use the acFormBar menu item 3 top selection (if I remember correctly). But, what exactly it does is not particularly clear.
 

Users who are viewing this thread

Back
Top Bottom