I'm preparing a sample. Please delay the release of the new FWH build...
EMG
I'm preparing a sample. Please delay the release of the new FWH build...
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd, oMenu
MENU oMenu 2007
MENUITEM "Test&1" ACTION MSGINFO( "1" )
MENUITEM "Test&2" ACTION MSGINFO( "2" )
MENUITEM "Test&3" ACTION MSGINFO( "3" )
ENDMENU
DEFINE WINDOW oWnd MDI;
TITLE "MDI Test";
MENU oMenu
ACTIVATE WINDOW oWnd;
ON INIT CREATECHILD( oWnd )
RETURN NIL
STATIC FUNCTION CREATECHILD( oMdi )
LOCAL oWnd, oMenu
MENU oMenu 2007
MENUITEM "Changed&1" ACTION MSGINFO( "1" )
MENUITEM "Changed&2" ACTION MSGINFO( "2" )
MENUITEM "Changed&3" ACTION MSGINFO( "3" )
ENDMENU
DEFINE WINDOW oWnd MDICHILD OF oMdi;
TITLE "MDI Child Test";
MENU oMenu
ACTIVATE WINDOW oWnd;
VALID !GETKEYSTATE( VK_ESCAPE );
MAXIMIZED
RETURN NILThe bugs:
the area to the right of the menu is not properly painted
Pressing ALT-2 you will get 1 instead of 2
Pressing ALT-1 and then ESC and ESC again the menu icon to the left vanishes
EMG
Enrico, I'm watching your example
This bug also it appears with previous versions FWH 15.04
I tried it with version 13.12
You can check this?
Except that is to correctly paint the menubar
Anyway, obviously I will look how to fix it
Regards
cnavarro wrote:Enrico, I'm watching your example
This bug also it appears with previous versions FWH 15.04
I tried it with version 13.12
You can check this?
Except that is to correctly paint the menubar
Anyway, obviously I will look how to fix it
Regards
Enrico, thanks for you feedback
Cristobal,
great! ![]()
EMG
Enrico Maria Giordano wrote:Cristobal,
great!
EMG
Thank you, Cristobal!
EMG