DEFINE SPLIT BOX casues havoc to EDIT/EDIT EXTENDED
Posted: Wed Mar 11, 2009 10:01 am
Hi Escigi/Rathinagiri
Why does adding DEFINE SPLITBOX cause havoc (lots of error messages, disappearing buttons etc as follows :-
Try it out yourself as in the following code snippet:-
Regards
CCH
http://cch4clipper.blogspot.com
Why does adding DEFINE SPLITBOX cause havoc (lots of error messages, disappearing buttons etc as follows :-
Try it out yourself as in the following code snippet:-
Code: Select all
DEFINE WINDOW MainForm ;
AT 0,0 ;
WIDTH 600 ;
HEIGHT 480 ;
TITLE 'FAS4MiniGUI' ;
MAIN ;
MDI
DEFINE MAIN MENU
POPUP '&File'
ITEM 'Exit' ACTION FileExit() IMAGE 'Exit.Bmp'
END POPUP
END MENU
DEFINE STATUSBAR FONT 'MS Sans Serif' SIZE 9
KEYBOARD
DATE
CLOCK
END STATUSBAR
// VERY IMPORTANT, commenting away solves EDIT/EDITEXTENDED issue but cannot show 'coolbar effect'
DEFINE SPLITBOX
DEFINE TOOLBAR ToolBar_1 BUTTONSIZE 25,25 FLAT BORDER
BUTTON Button_Close ;
PICTURE 'exit.bmp' ;
TOOLTIP 'Close this Window' ;
AUTOSIZE;
ACTION Exit();
SEPARATOR
END TOOLBAR
Regards
CCH
http://cch4clipper.blogspot.com