maxmangion
AWF VIP
- Local time
- Today, 09:08
- Joined
- Feb 26, 2003
- Messages
- 2,805
i have some forms, which i am creating customised menubar for them. On each menubar, i am planning to have options such as Add New Records, Delete, Exit Form etc. Now if i will create some general functions in a Module for each of the above, for example :
and then place the function name on the onAction of a command button in the Menubar, will this be ok i.e. will it affect only the current form which has the focus (in case there are other forms opened will they be affected too?)
Moreover is it possible to set a background colour to a customised menubar, because i've seen it on a database, but i do not know how to do it.
Thank You for any advice/suggestions.
Code:
Function Add_Record()
DoCmd.GoToRecord , , acNewRec
End Function
and then place the function name on the onAction of a command button in the Menubar, will this be ok i.e. will it affect only the current form which has the focus (in case there are other forms opened will they be affected too?)
Moreover is it possible to set a background colour to a customised menubar, because i've seen it on a database, but i do not know how to do it.
Thank You for any advice/suggestions.