How to turn of menu bar and window decoration of Forms 11g Rel2?

According to Forms documentation, one can turn off menu bar and window decoration.
How can that be done?.
Best regards, Luis ...:)=

From the documentation (Forms Deployment Guide), see Section 3.4.3. Refer to "guiMode"
http://docs.oracle.com/cd/E38115_01/doc.111210/e24477/basics.htm#BABGEGBC

Similar Messages

  • After installation of 11.0.6 update und disabling protected mode text menu bar and window frame are disappeared

    Hello,
    see topic.
    my environment : WIndows Server 2008R2 SP1 witx xenapp 6.5.
    adobe acrobat 11.000 without protected mode  and 11.0.06 with protected mode works properly
    F9 reactivate the menu bar and the window frame but it is not practicable for my customers permanently F9 to press
    protected mode has to be disabled
    greetings
    Don Mentiroso

    This looks like a bug and I'll have it investigated.
    Ben

  • Creative cloud - how to change small menu bars and boxes?

    After changing from CS5.5 to Creative Cloud the menu bars and boxes has become extremely small.
    I use the same screen.
    How can I change??

    Hi Leander A%305,
    Which applications are seeing this in? Would it be possible to post screen shots of both CS5,5 and CC to show the difference?
    Thanks,
    -Dave

  • How to hide the menu bar and Dock

    Howto hide the menu bar and Dock on Mac, I found a tutorial that addfunctions esto info.plist this
    <key> LSUIPresentationMode </ key>
    <integer> 4 </ integer>
    But does not work  which you know another way to do this?

    I have played with 'LSUIPresentationMode' in the past - I may be wrong but I think a value of "1" (and "2" for that matter) only really works in combination with 'LSUIElement' set to a string value of "1". The 'LSUIElement' property of course does away with the application's own menu items so isn't ideal for most applications and since you mentioned using "1" instead of "4", I assume you want your menu items visible all the time.

  • How to fix Spry Menu bar and Firefox with a Mac

    The spry menu bar does not properly display in Firefox (Version11&12) on a mac. Have looked at a number of different ways to fix this. Included is a copy of css for menu bar. Would appreciate any suggestions.
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              cursor: default;
              width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
              z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 11em;
              float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              z-index: 1020;
              cursor: default;
              width: 11em;
              left: -1000em;
              position: relative;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
              left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
              width: 11em;
              float: none;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
              position: absolute;
              margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
              left: auto;
              top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
              /* [disabled]border: 1px solid #CCC; */
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: #FFFFCC;
              padding: 0.5em 0.75em;
              color: #4F8627;
              text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              background-color: #FFFFCC;
              color: #4F8627;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
              background-color: #FFFFCC;
              color: #4F8627;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
              background-image: url(SpryMenuBarDown.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
              background-image: url(SpryMenuBarRight.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
              background-image: url(SpryMenuBarDownHover.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
              background-image: url(SpryMenuBarRightHover.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
              position: absolute;
              z-index: 1010;
              filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
              ul.MenuBarHorizontal li.MenuBarItemIE
                        display: inline;
                        f\loat: left;
                        background: #FFF;

    Change
    ul.MenuBarHorizontal ul
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              z-index: 1020;
              cursor: default;
              width: 11em;
              left: -1000em;
              position: relative;
    to
    ul.MenuBarHorizontal ul
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              z-index: 1020;
              cursor: default;
              width: 11em;
              left: -1000em;
              position: absolute;
    Gramps

  • How to resize Tabs, Menu bar and Bookmarks Bar 36.0, no "userChrome.css" file help?

    So I lost my profile when FF updated, and had to create a new one. From what I can tell, to do what I want to do I need a Chrome Folder inside the new profile folder. There was none, so I created one. I also created a .css file named exactly how I put it in the title, is this the correct name, or should "user" be my profile name?
    Last but not least, here is the exact text I have in the file, nothing more, or less, just this:
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #TabsToolbar { height: 15px !important; }
    #PersonalToolbar {height: 4px !important;}
    #BookmarksToolbar {height: 4px !important;}
    #MenuToolbar {height: 4px !important;}
    #tabbrowser-tabs { height: 15px !important; }
    #TabsToolbar { margin-top:-15px!important; }</nowiki></pre>
    Saved the file. Restarted FF, no effect. Changed numbers, still no effect.
    TIA for help.
    p.s there is likely some redundacy there for sure, please advise. I want all 3 in title of thread smaller (as in less height)

    I use this code to resize the Tab bar.
    I'm on Linux, so you may have to adjust or omit the margin-top and margin-bottom properties.
    <pre><nowiki>#TabsToolbar { height:25px!important; margin-top:-1px!important; margin-bottom:1px!important; }
    #tabbrowser-tabs { height:25px!important; min-height:25px!important; }
    .tab-background-start[selected=true]::after,
    .tab-background-start[selected=true]::before,
    .tab-background-start,
    .tab-background-end,
    .tab-background-end[selected=true]::after,
    .tab-background-end[selected=true]::before {
    min-height:25px!important;
    }</nowiki></pre>

  • I have a late 2011 Macbook and whenever I open any application it opens only the top menu bar and no viewer windows.I always have to click cmd n to open new windows and it is quite annoying.Does anyone know how to fix this issue? Thx

    I have a late 2011 Macbook and whenever I open any application it opens only the top menu bar and no viewer windows.I always have to click cmd n to open new windows and it is quite annoying.Does anyone know how to fix this issue? Thx

    You may have more of a chance getting a quicker answer here:
    https://discussions.apple.com/community/windows_software/windows_compatibility

  • Clear(translucent) Menu Bar and Clear Windows!!~~~

    Does anyone know how to customize configurations so that I could have a clear menu bar and also, make it so that when i open up windows, it'll be clear..??
    plz?
    that'd be so cool................

    Actually there's a public beta if you look around the site. Honestly all that kind of stuff does nothing to help you computer's stability. I can't tell you how many times someone has some weird quirk that can't be explained until they realize they're running some hack. Especially one that works so deep in the system.
    But any way there's a beta if you're feeling lucky. Even if they had a full release I'd say you better have luck on your side. I'm not saying there aren't people using this type of thing and not have any trouble at all but......

  • When I maximize my screen on my Mac it hides the menu bar and the typed tool bar at the top of the screen - how do i fix this

    When I maximize the screen on my Mac Book Pro it hides the menu bar and the typed tool bar at the top of the screen as well.  How do I undo this?

    10.7 "Full Screen" is a feature imported from IOS, the land of tiny screens.
    To use a larger window on a REAL computer, adjust the Window's size to suit your needs. Do not use "Full Screen".

  • HT5610 How do I show the menu bar for Window 8.1?

    I cannot find the menu bar in Windows 8.1

    Authorization
    iTunes Store- Authorize or deauthorize your Mac or PC.
    In iTunes you use the Authorize This Computer or De-authorize This Computer option under the Store menu in iTunes' menubar. For Windows use the ALT-S keys to access it. Or turn on Windows 7 and 8 iTunes menus: iTunes- Turning on iTunes menus in Windows 8 and 7.

  • All type in my menu bar and under icons has disappeared how do I get it back?

    I lost all type in my menu bar and in drop down menus as well as under icons and next to icons in the hard drive menu. The dashboard also doesn't pop up when the curser goes over it. How do I get the type back?

    Do any fonts work or show up at all in any application?
    Have you installed any new Fonts or Adobe/MS Apps?
    See if you can run Font Book in Applications, verify Fonts & check for duplicates.

  • How to increase size of fonts in Menu bar and in Safari toolbar?

    How to increase size of fonts in Menu bar and in Safari toolbar?  Munu bar and Safari toolbar  fonts too small on a 24" iMac screen.
    Thanks in advance !

    If you want to change the size of the font of a TextEdit text document, you do it in the preferences. Alternatively, if you want control over the size of the fonts, make it a Rich Text document, and then you can change the font size. You can either use the Larger or Smaller options, or Show Fonts to choose a size. You can elect to have new documents be Rich Text in the preferences as well.

  • How do I put my menu bar and address bar back at the top?

    I closed my menu bar and address bar, etc. Now I can get them back I even tried reinstalling Firefox and that didn't work. Opposite clicking the top of the page doesn't work, either. HELP!
    == This happened ==
    Just once or twice
    == When I temporarily turned off my bars.

    Hit the '''Alt''' key to show the Menu bar, then open View > Toolbars and select Menu bar, so it has a check-mark.

  • How to Make Fonts Bigger in Safari Menu Bar and Tabs

    Hello,
    I just set up a new IMAC 27" for my mom and she cannot read the menu bars and tabs in Safari. I know how to make the text of the webpage itself bigger, but is there any way to make the text in the menu bars and tabs bigger.  Someone sugggested Opera browser. Would that be a better option?
    Thanks
    John

    Welcome!
    I had the same issue with my 27-inch--here's how I fixed it:
    1) Go to System Preferences > Displays and select the "Displays" tab
    2) For "Resolution" there are two buttons: "Best for Display" and "Scaled." Select "Scaled."
    3) Now you should see a list of resolutions. The default is probably 2560x1440. Change it to 1920x1080.
    I don't have great eyes but this setting makes it easy for me to see. It makes all menu bars including Safari about 3/10ths inch wide and the menu lettering close to 1/4-inch tall.

  • Can anyone tell me how to increase the text size in my menu bar and drop down menus?

    Just bought a new 27" screen iMac.  The menu bar and drop down menu text is much to small for me to see without leaning close to the screen.  Does anyone know how to customize the text to a larger size.  This is an issue for any program I open.

    Once upon a time Apple displays packed in 72 dots to an inch (making their resolution 72 DPI). That meant that what we saw on screen at 100% scale was exactly what was printed on a printer - not to mention quite comfortable to read. However that advantage was eclipsed by the fact that photopgraphs and video were pixelated and the only solution to that was to increase the resolution - to pack in more dots per inch - which has the side effect of shrinking the size of text. Where I once used Word at 100% scale I now find it most comfortable at 150% scale.
    There are several solutions. One, as Lex gave you, was to reduce the resolution of the LCD display. But unlike CRT displays, an LCD is tuned to a specific resolution and when you change it the results tend to be blurry. Another is to keep the resolution as it is and to adjust each program (if the program allows it). This makes Word usable and your browser can be set to use no font smaller than a size you set (which has some unpleasant side affects at some Web sites), but some programs and some parts of programs cannot be changed. The menubar and menus are among them. The third solution is one that Apple promised several years ago but has not yet provided - a resolution independant GUI. We can only hope that comes soon. And there's another partial solution - look in System Preferences under Accessibility.

Maybe you are looking for

  • Exception in File To JDBC Scenario

    Hi, I am getting the Exception "Error ID     EXCEPTION_DURING_EXECUTE" while working with File to JDBC Scenario. Pl Let me know why this exception is raised? Thanks, Srini

  • IPlanet- WebLogic Proxy Connection Pools

    In the NSAPI weblogic plugin doco it says that the wlproxy plugin pools connections. How do you control the size of the connection pool. I don't see a min/max paramater. All I see is KeepAlive, ConnectTimeoutSecs and a few other related but nothing r

  • Report for tracking Batch changes inside (Multiple) Deliveries

    Hi Experts, There is a requirement where in it is required to track changes in the field 'Batch' in the deliveries. This change log report should have the option of checking the log for multiple deliveires at a time. It can be similar to the delivery

  • Portal's ability to pull information from foreign data stores?

    Besides gateways, what are other alternatives to allow Portal to pull information from foreign data stores?

  • SAP - AS400 Tables cleaning

    Hi experts I apoligize because I'm newbie on BW and I have my first requirement. The scene is: SAP get data from AS400 to BW environment, when BW process this I have to put a file on AS400 server and activate something (that I don´t know) to clean on