Help: Customized menu without Window's menu

Hi,
I've learnt how to hide the Window's menu. Now, if I have made a customized menu and same time to hide the Window's menu, how do I make it? Namely, I want the user only see the customized menu items without seeing the default Window's menu.
Jimmy

Okay,
open the Forms Builder
open Online help
goto tab page Index and type replace - the help-system finds the built-in replace_menu
I did this with forms 10, but this procedure is very old, your forms knows it.
There are several parameters - I didn't try them all. I mostly use it in the following manner:
REPLACE_MENU(menu_module_name VARCHAR2);
An empty ('') module_name means: No menu at all.
Wolfram

Similar Messages

  • Scrollable menu like Windows Start menu

    Hi Forum,
    I want to create scrollable menu like windows start menu. The menu should scroll on demand. It has to be shown in the same way as windows is showing like If we place the mouse over the scroll menu. The arrow should be shown if the menu has more children. The arrow menu item should be shown if the children cannot be shown in the screen limit.
    Please help me out in this. If anyone have the implementation, please pass it to me
    Thanks and Regards
    V.S.Saravanan

    Hi,
    Thanks. But I want windows start menu like solution. In windows, by default only recently accessed menus will be shown, if user put the mouse over the down arrow button then the other children will be shown. If all the children cannot be shown in the screen, then you will get arrow as first menu item and down arrow as last menu item. User can scroll to the next children.
    Thanks and Regards
    V.S.Saravanan

  • NEED HELP PC STUCK AT WINDOWS XP MENU

    HI I GOT A HP MEDIA CENTER M7434N AND EVERYTIME I TURN IT ON IT JUST GO TO THE HP START THEN GO TO A BLUE SCREEN THAT SAY WINDOWS XP SETUP AND STAY THERE!!!!!

    Were you installing XP? Is there an XP install disk in the DVD/CD drive? Was the machine working before?  Do you see the hard drive light flashing a lot or is it not flashing?
    Reminder: Please select the "Accept as Solution" button on the post that best answers your question. Also, you may click on the white star in the "Kudos" button for any helpful post to give that person a quick thanks. These feedback tools help keep our community active, so you receive better answers faster.

  • In SharePoint 2013 navigation, is it possible to add a custom link only to the left-hand menu without getting it in to the top menu dropdown?

    If I want to add a custom link to the left-hand navigation menu In a SharePoint 2013 sub-site, it can be done by visiting
    Site Settings à Navigation section and adding the link under
    Structural Navigation: Editing and Sorting section. However, this will automatically add a matching link to the top menu as a dropdown.
    (Note that Global Navigation is set to “Display the same navigation items as the parent site” where “Parent is using Structural Navigation.” and Current Navigation is set to “Structural Navigation:
    Display only the navigation items below the current site”)
    Is there a way to just add a custom link only to the left-hand menu without getting it in to the top menu dropdown?

    Hi Asanka,
     Please refer the below link which may help you to resolve your problem.
    http://blog.navantis.com/configuring-sharepoint-2013-navigation-to-span-site-collections/
    If its not helping you please let us know
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

  • Help Customizing Motion Menu

    Hello:
    I am trying to customize one of the motion menus that came with Encore CS2. Its called Television Menu.em   This is the first time I've tried customizing a motion menu. I've had no problems customizing the non-motion menus, even animating them in After Effects. The first problem here is that I need a widescreen version which of course isn't included. So I took the 4x3 menu and edited in Photoshop by creating an NTCS DV Widescreen 720 x 480 canvas, and then copying and pasting everything from the original .psd file into it. And then put in a nice background that blends with the color scheme. So haven't really changed anything from the original menu .psd file.  Saved that out, brought it into Encore, and connected it to the .wmv file that comes with this particular motion menu.  Rendered it out as a motion menu. Preview. Nothing!!!  No snow on the TV!  I haven't even gotten to the steps where I move all this into After Effects to animate stuff in and out, because I can't get the thing to work right in Encore even without doing any After Effects work.  Best I can tell, it must have something to do with the fact that I made the .psd part of the menu into widescreen and for some reason, it won't play the connected video file.  Sure would be nice if I could find this particular menu in widescreen, but since I can't, I just thought I'd make it myself.  Hmmm. I am stumped as to why I can't get past this seemingly simple step. Must be something I don't understand.
    Any ideas or suggestions cheerfully accepted!
    Thanks,
    Dave

    Hi Addison,
    Here is a sample which renames customers and search entries from crm menu:
      "menu-customers-manage":     
          "title": "Site Members List",
          "parent": "menu-customers",
          "weight": 1
      "menu-customers-search":     
          "title": "Site Member Search",
          "parent": "menu-customers",
          "weight": 10
    You have to specify parent attribute for children menus which you rename.I hope it helps.
    Regards,
    Radu

  • I have two faults! 1, an error comes up in Ps CC 2014 "could not apply the saved panel configuration, restring to default and my tools have disappeared completely and anything ive tried I cannot get them back not even the drop down menu in 'window' helps

    I have two faults! 1, an error comes up in Ps CC 2014 "could not apply the saved panel configuration, restring to default and my tools have disappeared completely and anything ive tried I cannot get them back not even the drop down menu in 'window' helps at all. And 2, Lr everytime I load it up it gives me the option to retry or switch to and it takes a while for me to even get anywhere with it I think it has something to do with the catalogs? I've been using these programs for a few years now on a Mac...no problem but when I use a PC when I'm away coz it's the (only) comp available these happen PC's are so useless! Please can anyone help??...

    I can give a few suggestions on Photoshop CC 2014, but Lightroom is a separate forum and you should ask Lr questions there.
    First close Photoshop.
    Then start Photoshop by double-clicking on it's icon and very quickly after that, hold down the ctrl-alt-shift keys until you see the reset dialog. answer "Yes" to delete settings, and let Photoshop continue to load.
    It's tricky to do and may take a few tries, but at least it should reset Photoshop CC 2014 to defaults.
    Gene

  • Custom context menu without separators?

    The following code adds two custom items to a context menu.
    However, they are separated into two different menu sections where
    I need them to be in only one. What am I missing?
    var cmiDrillIn:ContextMenuItem = new ContextMenuItem("Drill
    in...", true);
    var cmiDrillOut:ContextMenuItem = new ContextMenuItem("Drill
    Out...", true);
    cmiDrillIn.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,
    contextMenuItem_menuItemSelect);
    cmiDrillOut.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,
    contextMenuItem_menuItemSelect);
    cm = new ContextMenu();
    cm.hideBuiltInItems();
    cm.customItems = [cmiDrillIn,cmiDrillOut];
    cm.addEventListener(ContextMenuEvent.MENU_SELECT,
    contextMenu_menuSelect);

    Hi,
    According to your post, my understanding is that custom context menu is not available to every user.
    You can check whether you stop inheriting permsissions in the list setting.
    In addition, you can add javascript code as simple as possible to check whether it works.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Is there any way to quickly access the options menu without clicking "Firefox/Options"?

    I want to be able to quickly jump to the Firefox Options menu without having to click the "Firefox" button and then "Options" after. The reason I want to do this is because I want to be able to quickly change fonts, and I also want to quickly allow/disallow websites from using their own font and background colors. The bright whites that websites often use hurt my eyes. Some websites don't work properly if they aren't allowed to use their own font and background settings, so I have to switch it back and forth, depending on the website. It is annoying to have to go through multiple Firefox menus every time I change my font and background settings. A quick keyboard shortcut or a button press to access options or allow/disallow font and background settings would be great. Any help?

    One alternative solution would be to investigate some of the add-ons available. Some of these may need a bit of setting up but then modify how websites display.
    * https://addons.mozilla.org/en-US/firefox/addon/nosquint/
    About this Add-on
    Having a hard time reading on the web? Is that website with the ridiculously small font and hot-pink-on-slightly-darker-hot-pink text raising your blood pressure? NoSquint can:
    Override the default text-only and full-page (both text and images) zoom levels for all websites
    Enforce your own foreground and background colors
    Remember your zoom levels and color settings per site, automatically applying them when you return.
    Disagree with what NoSquint calls a site? A powerful exceptions mechanism lets you split up or group together sites with URL patterns.
    A second alternative if you are good with the keyboard is to use keyboard existing shortcut sequences. I do not know them offhand for Windows, but they are not likely to be particularly convenient unless well learnt and used frequently.

  • Don't see Presentation services in the windows star menu|OBI

    Hello,
    I have installed in "Basic mode" OBIEE version 1.3.3. I have chosen "complete". I had no error message during the installation.
    When I check in services, I have "Oracle BI Presentation Server" which is present, when I try to reinstall OBIEE in custom mode, the installation tells me :
    Oracle Business Intelligence Presentation Services (installed)
    Oracle Business Intelligence Presentation Services Plug-in (installed)
    So why in the windows start menu -> Oracle Business Intelligence, I don't have "Presentation services" ?
    I only have :
    Administration
    Administration help file
    ODBC client
    Start OC4J
    Stop OC4J
    Welcome to Oracle BI EE
    Catalog Manager
    Job Manage
    Thanks in advance for your help.

    Go to Start->Services->Run and type in Services.msc. There you would find the Presentation services. You would also find 3 other services like BI Server, Java Host and Scheduler. Bi Server and Java Host should also be started to make it work. If they are somehow not there, try starting them from command prompt using sawserver.exe, nqsserver.exe and sawjavahostsvc.exe.
    Thanks,
    Venkat
    http://oraclebizint.wordpress.com

  • How to add a custom code to standard sap menu

    Hello guru,
    will you please explain me how to add a custom code to standard sap menu?
    thanks in advance.
    Best regards.
    juan

    Hello juan,
    with SE43N you can add custom transaction codes to the existing menues.
    see http://help.sap.com//saphelp_erp2004/helpdata//EN/00/783b377bfdcf61e10000009b38f936/frameset.htm
    regards
    johannes

  • AD services not appearing in Windows 2012 menu

    Hi there
    I'm building a virtual 2012 environment with separate machines for AD and WSUS.
    I've then built another machine called Management.  Using the Windows 2012 menu, I've added the 2 machines above as machines to manage however there is a problem.
    It does appear to add them as on my left hand side of the Windows 2012 panel, it shows WSUS and AD DS.  However the problem is that when I click on the Tools machine to access AD, it doesn't exist.  My understanding is that once I add that machine
    as a machine to manage, I should get all the management options?
    I've pretty sure it's worked in the past...
    Any ideas?
    Note:  My firewall is on
    Many thanks

    Hi all
    I got this query answered on the Windows 2012 general page, located here:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/744f70f8-694b-4c6b-b0fc-6ce92e0f48a6/having-trouble-remotely-managing-other-windows-2012-servers?forum=winserver8gen
    It seems I needed to add the Remote Management from the Features tab of the dashboard.  I, mistakenly, was under the impression that by adding the servers to manage, it would automatically add the required Administration tool, depending on the server
    role.
    Thanks all for your replies and help.

  • How to hide the default windows inherit menu bar

    Dear All,
    I am using oracle Application server 10g with windows server 2003. with oracle 11g database.
    When ever I am accessing the application from client machine through browser i am getting the windows inherit menu bar at the top of the working space of the form.
    I want to hide that default menu bar from viewing the application users.
    Please help.
    Thank you in advance....

    actually vansul i have done this the default smart bar is removing by doing this
    but i want to hide the black window bar which is displayed even if by removing
    the default & smart bar.

  • How can I stop recent history being displayed in history menu without stopping remembering history altogether

    I'm using the latest release (10.0) and am looking for a way to stop the history from being displayed in the History menu without turning off History, so I can still access History by going into the library.

    I suppose it would help if I knew not only what you wanted but why, as there are a few possibilities that may help.
    You may use private browsing,to stop some events being logged into the history in the first place, you may also clear items,single ones if need be.
    * see[[Clearing Location bar history]]
    * and [[private browsing]]
    You can choose whether or not to display the history as suggested options from the location bar.
    * see [[location bar autocomplete#w_how-can-i-control-what-results-the-location-bar-shows-me]]_how-can-i-control-what-results-the-location-bar-shows-me
    If you save History, then it can be displayed, I dare say there are methods of removing the button/option to display history from the UseIneterface but it would still be available from the Library.
    Another option you may consider is settng up user accounts on the Operating System for different users, or even setting up separate firefox profiles for different users on the same OS account.

  • Configure custom query group in navigation menu

    How do we configure custom query groups? Say for example: I have created a custom query group and added my custom query definitions to it. How do I configure this so that when I click on Contract Management Tab on the workbench, my custom query group is invoked?
    I need to configure custom query group in navigation menu. Any help would be appreciated.
    Regards,
    Bindu Sharma

    Hi Bindu,
    As per my understanding, it is standard and query group cannot be added in the navigation but you can add your quries under Agreement and Claus Library.
    Kindly refer the blog for the same: http://scn.sap.com/docs/DOC-55733
    Let me know if you need any other information.
    Thanks,
    Kushagra A

  • OSX help menu search not activating menu items in Photoshop CC

    In Photoshop CS6, about 200 times a day I'd hit Command+Shift+/ to bring up the Help menu focused on the search field, just like I do in all of my apps. I'd type a couple letters from a menu item somewhere in the giant tangle of menu options, down arrow to the match, and hit Enter to action it.
    I can still do this in Illustrator CC (and everywhere), but it's gone in Photoshop CC – it all works up to hitting Enter, which just closes the menu without actioning anything.
    This is so much faster than mousing through the menu, so much more centralized and extensible than keyboard shortcuts. I miss it.
    Here's a quick, dumb screencast showing how this works in Chrome (or any app), but not in PS CC: http://f.cl.ly/items/1p273r0h3k3w202w3m00/screencast.mov
    I've contacted Adobe twice, on Photoshop.com (1) and on their support forums (2), and their engineer, Chris Cox, is drawing a line in the sand. He says their team hasn't done anything to provoke this bug, and that it's an Apple issue. Further, he says he can't (or he won't) deal with Apple's engineering directly, and that we users should do so through these forums. So, here's my swing.
    (1) http://feedback.photoshop.com/photoshop_family/topics/bring_back_osx_help_menu_s earch_support_in_photoshop_cc
    (2) http://forums.adobe.com/message/6145901#6145901

    Naw, I got nothing, I didn't even have a search field. Like, empty space, nothing to be found... HOWEVER. I reinstalled PS CC and got the search field back, then changed my shortcut to ⌘⇧+ system wide, and bam.. it worked.
    I'm happy.
    Greetings also from our mutual friend C. Cox from Adobe... Yeah, that's me.

Maybe you are looking for

  • How can I turn my MacBook Air on after an over-heat-shutdown?

    I was using my Mac today and it suddenly froze and the date on the top went funny. I tried pressing buttons on the keyboard and nothing seemed to work. So I pressed and held the power button down and it turned off. Then I tried turning it back on but

  • Not able to cancel membership

    Not able to cancel membership using Manage Plan option. cancel plan option not showing in the page

  • What is the Debugger and how do you turn it off?

    Hi folks, I'm updating a site for a client and when I open the home page http://www.imcnewcastle.com I get this annoying pop up from Adobe flash player 10 asking if my debugger is on this machine or host application and it locks up if I try to connec

  • Smartd startup service failure

    We have just loaded Unbreakable Linux 4 on a new HP Proliant DL360 Server. The server has a HP Smart Array Raid controller that is recognized as a CCISS drive in Linux. From the get go, and after doing all ULN required updates, this service on start

  • Relative positioning of two cross tabs.

    I have two cross tabs. The first one is dynamic as the number of columns change based on user prompts. The second cross tab is fixed one column which is attached as the last column to the first cross tab. When the columns of first cross tabs change,