ToolBar position in a form

Source code related resources

Moderator: Rathinagiri

User avatar
gfilatov
Posts: 1068
Joined: Fri Aug 01, 2008 5:42 am
Location: Ukraine
Contact:

Re: ToolBar position in a form

Post by gfilatov »

mol wrote: Mon Mar 11, 2024 10:58 amLooks really good!
Thanks, Marek :!:

You can see the source code for the above toolbar definition below:

Code: Select all

      DEFINE SPLITBOX HORIZONTAL

         DEFINE TOOLBAR ToolBar_1 BUTTONSIZE 85,85 FLAT BORDER WRAP

         BUTTON Button_1 ;
         CAPTION '&More ToolBars...' ;
         PICTURE 'button1.bmp' ;
         ACTION Modal_Click() ;
         TOOLTIP 'ONE'

         BUTTON Button_2 ;
         CAPTION '&Button 2' ;
         PICTURE 'button2.bmp' ;
         ACTION MsgInfo('Click 2') ;
         TOOLTIP 'TWO'

         BUTTON Button_3 ;
         CAPTION 'Button &3' ;
         PICTURE 'button3.bmp' ;
         ACTION MsgInfo('Click 3') ;
         TOOLTIP 'THREE'

         END TOOLBAR

      END SPLITBOX
Sorry, but this only works in MiniGUI Ex. 8-)
Kind Regards,
Grigory Filatov

"Everything should be made as simple as possible, but no simpler." Albert Einstein
Post Reply