HIDE MENU BAR

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 6.0


HIDE MENU BAR

ParameterTypeDescription
This command does not require any parameters

Description

The HIDE MENU BAR command makes the menu bar invisible.

If the menu bar was already hidden, the command does nothing.

Example

The following method displays a record in full-screen display (Macintosh) until you click the mouse button:

   HIDE TOOL BAR
   HIDE MENU BAR
   Open window(-1;-1;1+Screen width;1+Screen height;Alternate dialog box)
   INPUT FORM([Paintings];"Full Screen 800")
   DISPLAY RECORD([Paintings])
   Repeat
      GET MOUSE($vlX;$vlY;$vlButton)
   Until($vlButton#0)
   CLOSE WINDOW
   SHOW MENU BAR
   SHOW TOOL BAR

Note: On Windows, the window will be limited to the bounds of the application window.

See Also

HIDE TOOL BAR, SHOW MENU BAR, SHOW TOOL BAR.


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next