System Menu Help

how do i add a menu next to "View"?
error = sAIMenu->AddMenuGroup(newMenuGroup,kMenuGroupAddAboveNearGroup, kViewMenuGroup ,&newGroupMenu);
i've tried creating a new menu group using AddMenuGroup but i don't know how to place the menu on the system menu instead of in the sub menus
please help?

As far as I know, you can't add a new menu to the menu bar. Unfortunately you can only add menu groups, subgroups and menu items to existing menus, eg Window/View/Type etc.
--W

Similar Messages

  • Default menu options System and Help

    Hi Experts,
    is it possible to remove the default menu options system and help from an ALV screen???
    if yes How?
    if no--is there any way to restrict user to select there two menu options?
    Thanks in advance
    Anit gautam

    HAI
                             NO,sytem and help are the default menu items,we cant disable this feature.

  • I got a flashing folder with a question mark. I got a new hard drive and upgraded to 4 gigs and can't open anything or reload the operating system? Help?

    I got a flashing folder with a question mark. I got a new hard drive and upgraded to 4 gigs and can't open anything or reload the operating system? Help? FYI: I have been using boot camp with windows 7 and started getting a kernal_data_Page_error and it would reboot windows, i was trying to do a chkdsk on the next reboot, but thats when i started getting this issue. I have put in a new hard drive and went from 2 gigs to 4. I can not get the computer to do anything, even the monitor does not show anything now????

    Prep your new drive:
    Drive Preparation
    1. Boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID (for Intel Macs) or APM (for PPC Macs,) then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Security button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    After formatting has completed quit DU and return to the installer. Install OS X.

  • Add checkmark to system menu item

    Hello,
    My aim is to add a menu item to a windows system menu to toggle a stay on top feature.
    I found a nice piece of code on stack overflow to accomplish this:
    Link to stackoverflow code
    Here is the result in my program:
    I've modified the code to keep my form on top:
    Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
    If m.Msg = &H112 Then
    If m.WParam.ToInt32 = &H1FFF Then
    Me.TopMost = IIf(Me.TopMost = True, False, True)
    End If
    End If
    MyBase.WndProc(m)
    End Sub
    All I need now is to place a checkmark beside my menu item to indicate the current state.
    Can someone show me the code to place/remove the checkmark, given the stackoverflow code I'm using?
    Any help would be appreciated.
    Rick

    Hi,
     Here is an example you can use. I changed things around a bit to correct things. This will check the menu item when it is set to TopMost and uncheck it if it is not.
    Imports System.Runtime.InteropServices
    Public Class Form1
    Private Const WM_SYSCOMMAND As Integer = &H112
    Private Const MF_STRING As Integer = &H0
    Private Const MF_CHECKED As Integer = &H8
    Private Const MF_UNCHECKED As Integer = &H0
    <DllImport("user32.dll", EntryPoint:="GetSystemMenu")> _
    Private Shared Function GetSystemMenu(ByVal hWnd As IntPtr, <MarshalAs(UnmanagedType.Bool)> ByVal bRevert As Boolean) As IntPtr
    End Function
    <DllImport("user32.dll", EntryPoint:="AppendMenuW")> _
    Private Shared Function AppendMenuW(ByVal hMenu As IntPtr, ByVal uFlags As UInteger, ByVal uIDNewItem As UInteger, <MarshalAs(UnmanagedType.LPWStr)> ByVal lpNewItem As String) As <MarshalAs(UnmanagedType.Bool)> Boolean
    End Function
    <DllImport("user32.dll", EntryPoint:="CheckMenuItem")> _
    Private Shared Function CheckMenuItem(ByVal hMenu As IntPtr, ByVal uIDCheckItem As UInteger, ByVal uCheck As UInteger) As UInteger
    End Function
    Private idMenu As UInteger = &H1FFF
    Private hMenu As IntPtr = IntPtr.Zero
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    hMenu = GetSystemMenu(Me.Handle, False)
    AppendMenuW(hMenu, MF_STRING, idMenu, "Stay On Top")
    End Sub
    Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
    If m.Msg = WM_SYSCOMMAND Then
    If m.WParam.ToInt32 = idMenu Then
    Me.TopMost = Not Me.TopMost
    If Me.TopMost Then
    CheckMenuItem(hMenu, idMenu, MF_CHECKED)
    Else
    CheckMenuItem(hMenu, idMenu, MF_UNCHECKED)
    End If
    End If
    End If
    MyBase.WndProc(m)
    End Sub
    End Class
    If you say it can`t be done then i`ll try it

  • Error in user exit for System menu

    Hi,
    I was working on the user exit for the System menu.
    There was some error in the menu exit I added and then logged off.
    Now when I am tryin to log in the system again and error is given without allowing me to login because the initial log on screen loads the system menu.
    Can anyoone help me resolve this issue.
    Edited by: Ashutosh Tripathi on Mar 26, 2008 11:16 AM

    Michael,
           Thanks for the quick response,
    I did check in IMG, an entry is already there, the 'primary field' is checked,
    USD is assigned to the iso code USD.
    Regards,
    Disney.

  • User Menu Image disappear when update the system menu

    Hi all,
    We created an user menu after the system menu Sales A/R, with an image as an icon.
    And also we changed some of the system menu description.
    But the problem is when you change some information from the Admistration menu, the system menu is updated and all the changes we made in the systems menu description and the image of our user menu, disappear.
    The system menu description return to the oficial description and our image isn't showed after the system menu update.
    Thanks,
    Fran.

    Dear Francislaine,
    There is a very good example which might be helpful in this context; given by SAP which is installed while installing SDK. The sample project is stored in the followng default folder :
    C:\Program Files\SAP\SAP Business One SDK\Samples\COM UI DI\VB.NET\UIDIBasicApp
    In th above sample project the basic need for adding images to the menu has been addressed.
    PS: Would it be possible to change the system menu description before adding the image to the custom menu?
    Regards
    Arshdeep

  • I could not find network utility option in mavericks. i was using os x lion.there is a network utility option in utility menu.help me to find out the option in mavericks.

    i could not find network utility option in mavericks. i was using os x lion.there is a network utility option in utility menu.help me to find out the option in mavericks.

    Choose Go to Folder from the Finder's Go menu, provide /System/Library/CoreServices/Applications/ as the path, and open it.
    (109612)

  • JPopupMenu, JDK1.4 and System Menu...

    I don't know if I am the only one facing this problem. I have a Jframe and a JComponent is being added to this frame. The component has a keylistener which will show up a popup menu whenever SHIFT + F10 is pressed. So when SHIFT+F10 is used Popup menu shows up without any problem but when I try to navigate it using UP or DOWN arrow keys, I see system menu of JFrame getting popped up and the navigation will be in the system menu instead of the popup menu. I have to press escape key twice to start the navigation in the popup menu. Does anyone know how to avoid showing the system menu when (SHIFT+F10+ ARROW KEYS) are pressed?? Any suggetion/help in this regard is really appreciated.

    Thanks marsian27.
    Can you please give me the details of the code??
    Actually I tried this way: First subclass AWTEventListener and get the KeyEvent dispatched.
    class AWTEventListenerCustom extends AWTEventListener {
    public void eventDispatched( AWTEvent e ) {
    if(e.getID == AWTEvent.KEY_EVENT_MASK)
    System.out.println("Key event fired:" + e.toString());
    I created an instance of this and added it to the the toolkit event listener to get the details of the keyevent on the system menu.
    AWTEventListenerCustom awtEventListenerc:
    Toolkit.getDefaultToolkit().addAWTEventListener(awtEventListenerc, AWTEvent.KEY_EVENT_MASK );
    With this I don't see any key event fired when arrow keys are pressed on the system menu.
    Thanks once again
    Krish

  • Scripting: No system menu when open connection with "/INPLACE"

    Hi!
    I use SriptingAPI in my application. When i open connection using OpenConnectionByConnectionString("...") in a separate window (without "/INPLACE" in connection string) the window has a title and menu.
    But there is no menu in the SAPGUI ActiveX when i use inplace activation.
    Is it possible to get system menu with "/INPLACE"?
    The sample html-page to test this behavior:
    <html>
    <title>Test SAPGUI Scripting</title>
    <body>
    <table width="100%" height="90%">
    <tr>
    <td>
    <object
       classid="clsid:B90F32AD-859E-4EDD-BFAE-C9216849520C"
       id="GuiAppl"
       width="100%"
       height="100%"
       align=left
       hspace=0
       vspace=0>
    </object>
    </td>
    </tr>
    </table>
    <br>
    <FORM NAME="TestForm">
        <INPUT TYPE="TEXT" NAME="Server" VALUE="192.168.1.64">
        <INPUT TYPE="BUTTON" NAME="Run" VALUE="Connect to server">
        <INPUT TYPE="BUTTON" NAME="RunInplace" VALUE="Connect to server (Inplace)">
    </FORM>
    <SCRIPT LANGUAGE="VBScript">
    <!--
    Sub Run_onClick
        Dim TheForm
        Set TheForm = Document.Forms("TestForm")
        GuiAppl.openConnectionByConnectionString ("/H/" & TheForm.Server.Value &
    "/S/sapdp00")
    End Sub
    Sub RunInplace_onClick
        Dim TheForm
        Set TheForm = Document.Forms("TestForm")
        GuiAppl.openConnectionByConnectionString ("/H/" & TheForm.Server.Value &
    "/S/sapdp00 /INPLACE")
    End Sub
    -->
    </SCRIPT>
    </body>
    </html>

    Welcome to Arch!
    EF02 is definitely not the type code you want. That is used for a small partition with no file system which grub needs on GPT disks because it cannot fit into the space on disk. You don't install anything into it and it is 1-2MB.
    Perhaps https://wiki.archlinux.org/index.php/Usb_installation would help?

  • Menu,help,Home tabs in ESS in Portal dont work

    Hello All,
    We r on SAP Enterprise Portal 6.0 SPS09 and we have installed Business Package for Employee Self-Service 4.6C - 4.7 in Portal and connected Portal to the R/3 Backend System with ITS version 6.20 patch 22.When accessing iviews of ESS in Portal there occur various tabs like Menu,help,Home on every page but when we click on them nothing happens and no pop up window occurs and it moves out of that window saying thankyou for working with Internet transaction Server.Iam not getting the cause of this error?can someone plz suggest?My Email Id is [email protected] .
    Regards,
    Saumya

    Hi,
       See if the foll notes help you.
    321439
    212990
    BR,
    Disha.
    Pls reward points for helpful answers.

  • System Preference Help File?

    I noticed that when I am in the System Preferences, and open the help menu, there is nothing there. I get an empty help pane. Typing in a question gets the spinning beachball.
    This is the case for both my MacBook and MacPro.
    Did I do something to both of these computers, or is this a common problem?
    Or is it a problem at all?
    I did not see anything in the forum on this.
    Thanks,
    Russ

    I finally stumbled upon the answer.
    See
    http://discussions.apple.com/thread.jspa?messageID=6987566&#6987566
    I'll leave this post up so those who search for "System Preference Help File" will see it.
    Thanks, MacJack!

  • Webgui service - system menu.

    Hi,
       I am using webgui service to display a standard SAP transaction on ESS through ITS. In doing so, the system also creates a 'system' and 'help' menu by default in the generated HTML template.
       Is there anyway I can hide/remove these 'system' and 'help' menus?
       Since, I am calling a standard txn., I cannot classify it as EWT...also, I dont want to create my own HTML templates.
       Pls help.
    Thanks,
    Kapil

    check out the following thread.
    /message/155699#155699 [original link is broken]
    Regards
    Raja

  • Iam not able to share internet in windows 8 from my macbook air...though my iphone ipad is connected to the hotspot well..tried everything but it seems to be different from windows 7  and other microsft operating systems setting. help!!

    Iam not able to share internet in windows 8 from my macbook air...though my iphone ipad is connected to the hotspot well..tried everything but it seems to be different from windows 7  and other microsft operating systems setting. help!!

    Ask on a Windows forum since that's what you're having a problem with.

  • New SAP system menu option

    Just a quick question, if you add a new function code to the Standard SAP System Menu options via program MENUSYST / status MEN where do you add the abap code for this functionality?
    Regards
    Mart

    The necessary java code to achieve this needs to be put in the file: includes/bodyStart.jsp above the line that creates the navigation bar:
    <% String navBar = p.getMainNavigation();
    For example, let's say we want to add a new tab that gives us a shortcut to the debug/session pages, and a sub-tab below it that lists all configuration objects in the repository. Here's the code for it:
    // Add a tab..
    com.waveset.ui.PageNavigation DEBUG_PAGE = new com.waveset.ui.PageNavigation("Debug", "debug/session.jsp", 0);
    DEBUG_PAGE.setRequiredPerms(new com.waveset.object.Permission[] { new com.waveset.object.Permission(com.waveset.object.Type.SYSTEM, com.waveset.object.Right.VIEW, true) });
    p.addPage(DEBUG_PAGE);
    // Add a sub-tab..
    String urlDebugListConfiguration = "debug/List_Objects.jsp?List_Objects_Type=Configuration";
    if (! DEBUG_PAGE.containsSubPage(urlDebugListConfiguration) ) {
    com.waveset.ui.PageNavigation DEBUG_LIST_CONF_PAGE = new com.waveset.ui.PageNavigation("List Configuration", urlDebugListConfiguration, 0);
    DEBUG_LIST_CONF_PAGE.setRequiredPerms(new com.waveset.object.Permission[] { new com.waveset.object.Permission(com.waveset.object.Type.CONFIGURATION, com.waveset.object.Right.VIEW, true)});
    DEBUG_PAGE.addSubPage(DEBUG_LIST_CONF_PAGE);
    As seen above, appropriate rights can be coded to limit the visibility of these tabs to administrators with certain capabilities. For a complete list of rights, refer to the IDM documentation and the java-docs for com.waveset.object.Type and com.waveset.object.Right.

  • Move System Preferences Help file back into System Preferences folder?

    How do I move System Preferences Help file back into System Preferences folder.  I unintentionally moved it.  My Mac blocks putting it back.  Suggestions?  Thanks!

    Somehow I managed to delete my System Preferences shortly after upgrading, and was able to use the 10.4 one for a while until I applied the patch. Luckily, I already had Pacifist, and with your directions I was able to get close enough so that I could find the Applications folder within the ContentsofEssentialsSystemSoftwareGroup > ContentsofEssentials.pkg > Applications > SystemPreferences.app.
    For that, I owe you the deepest gratitude and a gigantic THANK YOU. My System Preferences is now fully reinstalled and working wonderfully.
    Pacifist might actually be worth purchasing.

Maybe you are looking for

  • How do I add a FullScreen button to Project Playback Skin?

    How do I add a fullscreen button to the project playback skin? I know how to load another skin (using Project -> Skin Editor) and how to add a custom playback skin (paste custom skin SWF into C:\Program Files\Adobe\Adobe Captivate 5\en_US\Gallery\Pla

  • Disable e-mail  field  when line item created by copying another line item

    Hi All, I need your help. Actually our user wants to create a line item by copying existing line item in shopping cart. While doing so the requirement is the e-mail address field remains disable after the line item is copied. Please guide me how to d

  • Transferring picture on camera roll to macbook pro

    I did a search on here and couldnt find anything about this so could anyone tell me the easiest way to get a picture in my camera roll on my iphone to my macbook pro so I can print it off? Thank you in advance for your help.

  • OSX 10.6.8 best ever

    Im a long time user of Apple I want to buy new MBP but can't stand what Apple has done to OSX, I want to downgrade my new MBP to snow leopard [10.6.8] can this be done?

  • ISE Joined with AD but Some Groups Are Missing

    Folks, In my ISE, i have already joined my AD in a Windows 2008 server. But when I retrieve the groups with *, some groups are missing. I mean there is a group like XXX.COM\COMPANY\IDG\HR in my 2008 server, but i cannot retrieve that in my ISE, the g