a customer reported the following Problem to me:

On windows 8, the menu is display in a 'random' position, not align correctly (see picture).
On my machines, the menu appears directly below the "Ordner" menu. I can not reproduce, but customers complain...
I'm doing it like this:
Code: Select all
; do menu
MenuTitle(LG(61))
MenuItem(#Menu_Window_0_Configuration, LG(62))
MenuItem(#Menu_Window_0_Exit, LG(63))
MenuTitle(LG(144))
MenuItem(#Menu_Window_0_OpenInput, LG(145))
MenuItem(#Menu_Window_0_OpenBilldir, LGS(146, "APP_NAME", productName))
MenuItem(#Menu_Window_0_OpenDonedir, LG(147))
MenuItem(#Menu_Window_0_OpenErrdir, LG(197))
If FileSize(globalEventLogPath) > 0
MenuItem(#Menu_Window_0_OpenEventlog, LG(198))
EndIf
MenuTitle(LG(64))
MenuItem(#Menu_Window_0_Manual, LG(165))
MenuItem(#Menu_Window_0_Wizard, LG(65))
MenuItem(#Menu_Window_0_About, LGS(66, "APP_NAME", productName))
What can I do?
Kukulkan