 | | How to use this control: Simply place this control on the form and fill its "Caption" property.
Limitations: In non-themed Windows systems there are bad iterations with MDI container forms.
IMPORTANT: Working on multiple languages on the same application: When working with many languages in the same application you probably need to translate the entire menu and the title of your form when a user choose to change the actual language. Unfortunately there is no way for the ctlUTF8Menu to receive a notification from Windows that a Top level menu item (items on the menu toolbars) has been changed and need to be refreshed. Sub-level menu items are automatically refreshed when they change.
You can avoid this problem by acting in this way:
ctlMenu.Detach
'<...Do your translations to the menu and to the Title of your Form...>
ctlMenu.Attach |