Personalize titles in information menus

  • Thread starter Thread starter an
  • Start date Start date
A

an

Hello!

Is possible to personalize the menu title, where appear on
menu top bar blue "Microsoft Access" originating, for
exemple, in next code on command button?

On Error GoTo Err_Command35_Click

DoCmd.GoToRecord , , acNext

Exit_Command35_Click:
Exit Sub

Err_Command35_Click:
MsgBox "No more records in this process"
Resume Exit_Command35_Click

Thanks in advance.
an
 
Yes. Check out the msgbox function in the Help file. One
of the parameters is "Title".

HTH

Byron
 
Back
Top