Menu Items does not display after Making ARD file

Hi Experts
I have created a Addon Which has Five Menu Items. Three Items in Setup->Inventory and Two in Inventory->Inventory Transcation. It will woriking fine when I run my addon from Visual Studio directly But after created ARD file It does not show Menu items. There was no error during making ARD. I tried three times. But result is same it does not show any Menu Items. Plz suggest me Code is given below. I Use VB B1 AddOn Wizard for creating Menu Items This has a seprate addMenu.xml module.
<Application>
  <Menus>
    <action type="add">
      <Menu Checked="0" Enabled="1" FatherUID="43540" Image="" Position="9" String="Bin-In" Type="1" UniqueID="AM_1" />
      <Menu Checked="0" Enabled="1" FatherUID="43540" Image="" Position="10" String="Bin-Out" Type="1" UniqueID="BINOUT" />
      <Menu Checked="0" Enabled="1" FatherUID="43540" Image="" Position="11" String="Intra-WH Movement" Type="1" UniqueID="INTRA_WH" />
      <Menu Checked="0" Enabled="1" FatherUID="11520" Image="" Position="12" String="Zones" Type="1" UniqueID="Zone" />
      <Menu Checked="0" Enabled="1" FatherUID="11520" Image="" Position="13" String="Bin AddOn Setup" Type="1" UniqueID="Setup" />
      </action>
  </Menus>
</Application>
Thanks
Gorge

Hi,
Did you included the AddMenus.xml in the extra files when you generated the installer?
The AddMenus.xml file needs to be in the same folder as the addon exe. If there is no AddMenus.xml file there is no error raised, B1DE thinks there are no menus to add.
You have to include all extra files in the installer when you generate it.
Hope it helps
Trinidad.

Similar Messages

  • "Hyperion" menu item does not appear in Excel after SmartView Installation

    Hi to all! When I first installed SmartView, everything was ok - "Hyperion" menu item appeared in Excel and I successfully established connection to Planning and worked with data in Excel. Then, once upon a time I happened to select all data through Ctrl+A in the data form open in Excel and tried to copy it to another worksheet in the same workbook, Excel threw out a message about some serious error and informed me that the Hyperion Add-on would be removed. So it was removed in fact. When I was reinstalling Smart-View, all the installation went smoothly but the "Hyperion" menu item did not appear in Excel again. I tried to reinstall both Excel and SmartView and rebooted the system several times but the Hyperion menu item still does not appear in Excel. Can anyone hint me on how to solve this? Thanks a lot in advance!

    Hi, John! Thanks a lot! Your link led me to the thread in which the last post had the link Re: Smart View errors in Excel?! containing the "low-tech" 's instructions. It was these instructions that pulled me from underwater! Thank you so much and to that guy too! :)

  • "View Selected Item" does not display

    I'm using RoboHelp7 out of the Technical Communication Suite.
    When I'm working on a topic and select the
    View Selected Item button, the topic does not display. When
    I first tried yesterday, nothing happened (IE didn't open and there
    was nothing in my tray). I contacted Oversea's support and was
    informed that there wasn't an incident for this occurance. I was
    instructed to uninstall and reinstall RoboHelp.
    I uninstalled and reinstalled the applications and the button
    still doesn't work; however, this time there is an hourglass for an
    instant before not producing any results.
    The button doesn't work with anything that I've created or
    with the example projects (Clownfish School). Any help would be
    greatly appreciated. I'd hate to have to regenerate the project
    just to look at a quick change.
    Thanks,
    Matt

    Sounds like I need to add a note to that Snippet. Thanks.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Check menue item does not work

    Hello,
    I create a menu item MI_DEBUG of type Check in a submenu named EXTRAS_MENU.
    In the menu item code I want to enable debug logging of the current user actions.
    In the Menu Startup Code I set the status UNCHECKED.
    When the user clicks the menu item I want the status to be changed to CHECKED and back on a second click
    Menu Startup Code
    DECLARE
        mi_id   MENUITEM;
    BEGIN
        mi_id   := find_menu_item('EXTRAS_MENU.MI_DEBUG');
        IF id_null(mi_id) THEN
            my_debug.pl('EXTRAS_MENU.MI_DEBUG not found','zvc_menu.mmb Menu Startup Code');
        ELSE
            set_menu_item_property(mi_id,CHECKED,PROPERTY_FALSE);
        END IF;
    END;Menu Item Code
    DECLARE
        mi_id   MENUITEM;
    BEGIN
        mi_id   := find_menu_item('EXTRAS_MENU.MI_DEBUG');
        IF id_null(mi_id) THEN
            my_debug.pl('EXTRAS_MENU.MI_DEBUG not found','zvc_menu.mmb mi_debug');
        ELSE
            my_debug.pl('EXTRAS_MENU.MI_DEBUG found','zvc_menu.mmb mi_debug');
            my_debug.pl('Status '||get_menu_item_property(mi_id,CHECKED),'zvc_menu.mmb mi_debug');
            IF get_menu_item_property(mi_id,CHECKED) = 'TRUE' THEN
                my_debug.pl('property(CHECKED) = TRUE','zvc_menu.mmb mi_debug');
                set_menu_item_property(mi_id,CHECKED,PROPERTY_FALSE);
            ELSE
                my_debug.pl('property(CHECKED) = FALSE','zvc_menu.mmb mi_debug');
                set_menu_item_property(mi_id,CHECKED,PROPERTY_TRUE);
            END IF;
        END IF;
    END;But I never get the checked sign in the menu and every time my debug messages say, that the property CHECKED = 'TRUE'.
    I even have tried it with PROPERTY_ON/OFF as some examples suggest, but it doesn't work.
    Any ideas what is wrong with my code?
    Forms [32 Bit] Version 11.1.1.4.0 (Production)
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    Regards
    Marcus

    Hm. In that case the only thing that comes to my mind is to apply the latest patchset for forms 11gR1 which is 11.1.1.6 if memory serves.Not possible, applying patches requires tons of tests for many applications.
    Does it work in a previous version of forms?This is a new menu item and I have not other version available to test.
    Another thing I found: When I open or close a form after clicking the menu item, then the check mark appears. Changing the label of an item works without opening a form.
    Therefore I changed my Menu Item Code to
    DECLARE
        mi_id   MENUITEM;
    BEGIN
        mi_id   := find_menu_item('EXTRAS_MENU.MI_DEBUG');
        IF id_null(mi_id) THEN
            my_debug.pl('EXTRAS_MENU.MI_DEBUG not found','zvc_menu.mmb mi_debug');
        ELSE
            my_debug.pl('EXTRAS_MENU.MI_DEBUG found','zvc_menu.mmb mi_debug');
            my_debug.pl('Status '||get_menu_item_property(mi_id,CHECKED),'zvc_menu.mmb mi_debug');
            IF get_menu_item_property(mi_id,CHECKED) = 'TRUE' THEN
                my_debug.pl('property(CHECKED) = TRUE','zvc_menu.mmb mi_debug');
                set_menu_item_property(mi_id,CHECKED,PROPERTY_FALSE);
                set_menu_item_property(mi_id,LABEL,'Debug on');
            ELSE
                my_debug.pl('property(CHECKED) = FALSE','zvc_menu.mmb mi_debug');
                set_menu_item_property(mi_id,CHECKED,PROPERTY_TRUE);
                set_menu_item_property(mi_id,LABEL,'Debug off');
            END IF;
        END IF;
    END;Now when I click the menu item the first time, the label changes immediately, but not the check mark. When I click the menu item a second time without opening a form the label does not change, this means, that the property CHECKED is only changed, when a form is opend/closed.
    Even better: The initial label id Debug, clicking the item should change it to+ Debug on+ and on subsequent clicks change between Debug on and Debug off
    1. Click -> Label changes to "Debug on", check mark unchanged
    2. open a form
    3. Check mark is shown but label is the default Debug
    4. close the form
    5. Check mark is not shown, label is back to Debug on
    6. Repeat step 2 - 5 with the same result
    Different sequences of clicking and opening/closing forms give seemingly random combinations of check mark on/off and label texts.
    Conclusion:
    A menu check item is a very obstinate thing. I will not use it if I can avoid it.
    Regards
    Marcus

  • "Send link..." context menu item does not launch the mail client

    This was working in Firefox 12 but with the latest update to Firefox 13.x no mail client is launched (mine is Thunderbird) when context menu item "Send link..." is clicked.
    '''I have tried this with all addons disabled''' but the same problem is occurring.
    Does it happen for you? If not, how could I solve it?
    I will report as a bug if others have this problem.
    Thanks.

    I changed the network.protocol-handler.external.mailto setting in about:config to the default value (true) and that seemed to fix it.
    I don't know what changed it before though.

  • Menu items are not highlighted after Design Studio Client 1.3 upgrade

    Hi expert I used DS_CLIENT00_0-20011685 patch to update my client. After update I do not see the menu items.
    Please help with this.Below is the screen.

    Hi,
    if this is what you see after start, it it is possible that you face a general issue on Java Runtime level (which version do you have installed)? or on memory allocation level.
    do you see any log file located in your workspace? search for *.log. can be that there are some basic exceptions.
    also, I do not know if this is upgrade or fresh install.. you can try to uninstall, delete the content of the folder under C:\Program Files (x86)\SAP BusinessObjects\Design Studio\... and then install from scratch again. could be that the upgrade went wrong.
    Regards, Karol

  • Spark ComboBox new item does not display in textInput?

    I've been playing with s:ComboBox and generally like them a lot. One detail is driving me nuts though - most likely due to my lack of knowledge in the subject - is that if I try to add a new item to my dataprovider in a changeHandler (registered to the change event) the text for the ComboBox textInput disappears - although the item addition works perfectly. Interestingly enough the same operation works fine if it gets called by clicking on a button, i.e. post the change event has been processed, and the text does not disappear. To better understand what I'm talking about check out the code from http://help.adobe.com/en_US/flex/using/WS70f0d54f063b9b081aac8d1d1247252e4a0-8000.html#WS7 0f0d54f063b9b08626480d2124725f692c-7fff
    and try to add a new item and hit enter. Taking the same code from myCB_changeHandler and using it as a button click event instead of a change event handler yields to the behavior I'm looking for, i.e. the new item appears in the CB textInput field and when clicking the button gets added to the data provider while not disappearing from the textInput. Is there a way to accomplish this same behavior in the change event handler?
    thank you!
    f

    thank you!
    that does the trick!
    f

  • The save icon does not dim after saving a file

    The LabWindows™/CVI™ 2013 Known Issues list claims that bug ID 357213 has been resolved in CVI2013.
    This seems not always to be the case...
    Assume an unsaved file in the IDE. Then there are two disk symbols, one in the toolbar, one in the status bar. If I click on the disk symbol in the toolbar, the toolbar symbol disappears (it only shows if the file is modified), but the disk symbol in the toolbar does not get dimmed. It works correct if I use the File / Save menu command or if I click on the toolbar symbol...
    By the way, what is the date format in the known issues list, e.g. what does 'Added: 00/41107/' mean?
    (for CVI2010 the list looks OK)
    Solved!
    Go to Solution.

    Wolfgang wrote:
    The LabWindows™/CVI™ 2013 Known Issues list claims that bug ID 357213 has been resolved in CVI2013.
    This seems not always to be the case...
    Assume an unsaved file in the IDE. Then there are two disk symbols, one in the toolbar, one in the status bar. If I click on the disk symbol in the toolbar, the toolbar symbol disappears (it only shows if the file is modified), but the disk symbol in the toolbar does not get dimmed. It works correct if I use the File / Save menu command or if I click on the toolbar symbol...
    The updated list of known issues lists ID 357212 as resolved, although it is not, it should have been re-opened... the bug still exists in CVI2013 SP1

  • TOC, Search, Index does not work after hosting published files in Multiscreen HTML5

    I have generated and published the files for multiscreen html5. The default screen layout is Desktop_layout. When I access index.htm directly from the published location, every function and all details work beautifully. However, once I host the published files in IIS, and type the URL in Google Chrome, the screen layout is all messed up. TOC, Index, Glossary and the Search function does not work. Please help/suggest/guide.

    Could this be related to IIS? I host it locally on IIS (8.0 on Windows 8.1 Pro) and on Apache without any problems. But IIS can give trouble if the folder security options are not set correctly, so please make sure the IIS User has full read rights on all directories and files.
    Kind regards,
    Willam

  • JSTL unicode xml does not display after x:parse call

    I am trying to display an xml file on the web using JSTL xml tags. The file is encoded in utf-8 containing ancient Greek characters (x1f92, etc.). The file displays properly from a servlet + xslt (http://163.1.169.41/testapp), but I want to use JSTL.
    The JSTL produces intricate spaghetti on the screen (e.g. ��������������� ). I have seen this before --it would seem that unicode is indeed being directed at the screen but is not being interpreted properly. (Not strings of question marks mind you; the unicode seems to be there in this case).
    The code producing the spaghetti is below. I am just dumping in on the screen for now and will use xpath calls later for more precise extraction.
    Does the JSTL want character entities for the x arse call? I would not think so: parsing a utf-8 file would be a very common operation. How can I get the xml unicode file to display properly using the JSTL below?
    [headers]
    <%@ page contentType="text/html; charset=utf-8"pageEncoding="utf-8" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <c:import var="papyrus" url="blabula.xml" />
    <x:parse var="doc" xml="${papyrus}" />
    <x:out select="$doc" />
    ....

    Is it the parse or the import tag that is at fault?
    Try just printing the results of the <c:import> and see what it produces.
    you might try <c:import var="papyrus" url="blabula.xml" charEncoding="utf-8" />

  • Custom Product catalog item text not displayed after product search

    Hello Experts,
    1. We have configured a custom PCAT_ITM text - Product catalog item text. - (say 000A )
    2. Have appropriate text determination procedure, access sequence to determine this custom text
    3. The text determination procedure has been chosen in the custom catalog type.
    The above steps lets us use and publish this custom text in catalog using the text id ( TEXT000A_ ).
    4. For accessing this text in the ISA Catalog search, we have maintained the text-id mapping in the file catalog-site-config.xml as follows:
      <Map ID="siteMapID">
        <Key ID="Subtitle">TEXT_000A</Key>
    </Map>
    Well, the issue now is, this setup works fine only in certain pages, but not in some other pages.
    a. Works fine in ProductDetails.inc.jsp - currentItem.getAttribute("TEXT_000A") gives the right catalog item text value.
    b. Doesn't work in organizer-content-product-search1.jsp - product.getCatalogItem().getAttribute("TEXT_000A"). Though the expectation is to get the catalog item text, we get a value "TRUE", yes (TRUE).
    Can any expert tell if we are missing anything.
    Easwar Ram

    Hi Suvitha,
    It may help in you looking up tables STXH / STXL before and after you make a change to one of your text objects ZPROD_DES.
    Cheers,
    Ashok.

  • Item does not display in correct position with TileLayout

    Please take a look at below coding. If I choose Frank and click button “age<5", the damn Frank stays still rather than the first column.
    What else should I do after refreshing the data list?
    Best Regards,
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                                            xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
              <fx:Script>
                        <![CDATA[
                                  import mx.collections.Sort;
                                  protected function button1_clickHandler(event:MouseEvent):void
                                            // TODO Auto-generated method stub
                                            list.filterFunction = f1;
                                            list.refresh();
                                  protected function button2_clickHandler(event:MouseEvent):void
                                            // TODO Auto-generated method stub
                                            list.filterFunction = f2;
                                            list.refresh();
                                  private function f1(item:Object):Boolean
                                            var i:int = int(item.age);
                                            return i<20;
                                  private function f2(item:Object):Boolean
                                            var i:int = int(item.age);
                                            return i>5;
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
                        <s:ArrayCollection id="list">
                                  <fx:Object name="April" age="1"  sex="male" />
                                  <fx:Object name="Brown" age="2"  sex="male" />
                                  <fx:Object name="Cindy" age="3"  sex="male" />
                                  <fx:Object name="Daren" age="4"  sex="male" />
                                  <fx:Object name="Emily" age="5"  sex="male" />
                                  <fx:Object name="Frank" age="6"  sex="male" />
                                  <fx:Object name="Green" age="7"  sex="male" />
                                  <fx:Object name="Helen" age="8"  sex="male" />
                                  <fx:Object name="Ice" age="9"  sex="male" />
                                  <fx:Object name="Jack" age="10"  sex="male" />
                                  <fx:Object name="Lance" age="11"  sex="male" />
                                  <fx:Object name="Mary" age="12"  sex="male" />
                                  <fx:Object name="Nancy" age="13"  sex="male" />
                                  <fx:Object name="Opera" age="14"  sex="male" />
                                  <fx:Object name="Quntas" age="15"  sex="male" />
                                  <fx:Object name="Ray" age="16"  sex="male" />
                                  <fx:Object name="Stone" age="17"  sex="male" />
                                  <fx:Object name="Tom" age="18"  sex="male" />
                        </s:ArrayCollection>
              </fx:Declarations>
              <s:List x="69" y="57" width="320" height="320" dataProvider="{list}" itemRenderer="spark.components.LabelItemRenderer"
                                                      labelField="name">
                        <s:layout>
                                  <s:TileLayout columnWidth="100" orientation="rows" requestedColumnCount="3"
                                                                                                        requestedRowCount="3" rowHeight="100"/>
                        </s:layout>
              </s:List>
              <s:Button x="63" y="9" label="age &lt; 20" click="button1_clickHandler(event)"/>
              <s:Button x="157" y="9" label="age &gt; 05" click="button2_clickHandler(event)"/>
    </s:View>

    Hi,
    It seems that is a problem with selectedIndex.
    Try:
    protected function button1_clickHandler(event:MouseEvent):void
        myList.selectedIndex = -1;
        list.filterFunction = f1;
        callLater(applySort);
    protected function button2_clickHandler(event:MouseEvent):void
        myList.selectedIndex = -1;
        list.filterFunction = f2;
        callLater(applySort);
    private function applySort():void
        list.refresh();
    <s:List id="myList" x="69" y="57"...
    Philippe

  • Custom Persona does not display after updating Firefox!

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I just updated Firefox, and my custom persona is no longer displaying properly. If I change to another persona from Mozilla it will display it just fine, and I can even see my custom persona when I mouse over the button that you would use to select it. But as soon as I move the mouse away or click to select it, it reverts to the previous persona. What can I do about this?
    == This happened
    ==
    Every time Firefox opened
    == As soon as I updated yesterday
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name Firefox
    Version 3.6.6
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Adblock Plus 1.2.1 true
    Adblock Plus: Element Hiding Helper 1.0.6 true [email protected]
    AVG Safe Search 9.0.0.825 true {3f963a5b-e555-4543-90e2-c3908898db71}
    AVG Security Toolbar 4.504.019.002 true avg@igeared
    Boston Red Sox Toolbar 2.7.1.3 true
    CoolPreviews 3.1.0625 false
    Download Statusbar 0.9.7 true
    Fanhouse Toolbar 5.69.1.3215 true {9b0d1426-453e-4c5e-b6ba-181dca55454c}
    Flashblock 1.5.13 false {3d7eb24f-2740-49df-8937-200b1cc08f8a}
    FoxTab 1.3 false
    Glasser 3.5.2 false [email protected]
    Java Console 6.0.16 true
    Java Quick Starter 1.0 false [email protected]
    Microsoft .NET Framework Assistant 1.2.1 true {20a82645-c095-46ed-80e3-08825760534b}
    MultirowBookmarksToolbar 4.9 true
    Personas 1.5.3 true [email protected]
    RealPlayer Browser Record Plugin 1.0 true
    SkipScreen 0.4.7amo true SkipScreen@SkipScreen
    Stop-or-Reload Button 0.2.2 true {61D0D7AF-4FF6-476a-B68F-6531F613A6D8}
    WeatherBug 2.0.0.4 true {3EC9C995-8072-4fc0-953E-4F30620D17F3}
    Xsticky-Tool 1.3.2 false [email protected]
    Yahoo! Toolbar 2.1.2.20100119091315 true {635abd67-4fe9-1b23-4f01-e679fa7484c1}
    Adobe DLM (powered by getPlus(R)) 1.6.2.63 true
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar 0
    browser.history_expire_days.mirror 180
    browser.places.importBookmarksHTML false
    browser.places.smartBookmarksVersion 2
    browser.startup.homepage_override.mstone rv:1.9.2.6
    browser.tabs.loadInBackground false
    dom.event.contextmenu.enabled false
    extensions.lastAppVersion 3.6.6
    general.useragent.extra.microsoftdotnet ( .NET CLR 3.5.30729)
    keyword.URL http://us.yhs.search.yahoo.com/avg/search?fr=yhs-avgb&type=yahoo_avg_hs2-tb-web_us&p=
    network.cookie.prefsMigrated true
    network.protocol-handler.warn-external.dnupdate false
    places.last_vacuum 1279495794
    print.print_printer Send To OneNote 2007
    print.printer_Microsoft_XPS_Document_Writer.print_bgcolor false
    print.printer_Microsoft_XPS_Document_Writer.print_bgimages false
    print.printer_Microsoft_XPS_Document_Writer.print_command
    print.printer_Microsoft_XPS_Document_Writer.print_downloadfonts false
    print.printer_Microsoft_XPS_Document_Writer.print_edge_bottom 0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_left 0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_right 0
    print.printer_Microsoft_XPS_Document_Writer.print_edge_top 0
    print.printer_Microsoft_XPS_Document_Writer.print_evenpages true
    print.printer_Microsoft_XPS_Document_Writer.print_footercenter
    print.printer_Microsoft_XPS_Document_Writer.print_footerleft &PT
    print.printer_Microsoft_XPS_Document_Writer.print_footerright &D
    print.printer_Microsoft_XPS_Document_Writer.print_headercenter
    print.printer_Microsoft_XPS_Document_Writer.print_headerleft &T
    print.printer_Microsoft_XPS_Document_Writer.print_headerright &U
    print.printer_Microsoft_XPS_Document_Writer.print_in_color true
    print.printer_Microsoft_XPS_Document_Writer.print_margin_bottom 0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_left 0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_right 0.5
    print.printer_Microsoft_XPS_Document_Writer.print_margin_top 0.5
    print.printer_Microsoft_XPS_Document_Writer.print_oddpages true
    print.printer_Microsoft_XPS_Document_Writer.print_orientation 0
    print.printer_Microsoft_XPS_Document_Writer.print_pagedelay 500
    print.printer_Microsoft_XPS_Document_Writer.print_paper_data 1
    print.printer_Microsoft_XPS_Document_Writer.print_paper_height 11.00
    print.printer_Microsoft_XPS_Document_Writer.print_paper_size_type 0
    print.printer_Microsoft_XPS_Document_Writer.print_paper_size_unit 0
    print.printer_Microsoft_XPS_Document_Writer.print_paper_width 8.50
    print.printer_Microsoft_XPS_Document_Writer.print_reversed false
    print.printer_Microsoft_XPS_Document_Writer.print_scaling 1.00
    print.printer_Microsoft_XPS_Document_Writer.print_shrink_to_fit true
    print.printer_Microsoft_XPS_Document_Writer.print_to_file false
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_bottom 0
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_left 0
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_right 0
    print.printer_Microsoft_XPS_Document_Writer.print_unwriteable_margin_top 0
    print.printer_Send_To_OneNote_2007.print_bgcolor false
    print.printer_Send_To_OneNote_2007.print_bgimages false
    print.printer_Send_To_OneNote_2007.print_command
    print.printer_Send_To_OneNote_2007.print_downloadfonts false
    print.printer_Send_To_OneNote_2007.print_edge_bottom 0
    print.printer_Send_To_OneNote_2007.print_edge_left 0
    print.printer_Send_To_OneNote_2007.print_edge_right 0
    print.printer_Send_To_OneNote_2007.print_edge_top 0
    print.printer_Send_To_OneNote_2007.print_evenpages true
    print.printer_Send_To_OneNote_2007.print_footercenter
    print.printer_Send_To_OneNote_2007.print_footerleft &PT
    print.printer_Send_To_OneNote_2007.print_footerright &D
    print.printer_Send_To_OneNote_2007.print_headercenter
    print.printer_Send_To_OneNote_2007.print_headerleft &T
    print.printer_Send_To_OneNote_2007.print_headerright &U
    print.printer_Send_To_OneNote_2007.print_in_color true
    print.printer_Send_To_OneNote_2007.print_margin_bottom 0.5
    print.printer_Send_To_OneNote_2007.print_margin_left 0.5
    print.printer_Send_To_OneNote_2007.print_margin_right 0.5
    print.printer_Send_To_OneNote_2007.print_margin_top 0.5
    print.printer_Send_To_OneNote_2007.print_oddpages true
    print.printer_Send_To_OneNote_2007.print_orientation 0
    print.printer_Send_To_OneNote_2007.print_pagedelay 500
    print.printer_Send_To_OneNote_2007.print_paper_data 1
    print.printer_Send_To_OneNote_2007.print_paper_height 11.00
    print.printer_Send_To_OneNote_2007.print_paper_size_type 0
    print.printer_Send_To_OneNote_2007.print_paper_size_unit 0
    print.printer_Send_To_OneNote_2007.print_paper_width 8.50
    print.printer_Send_To_OneNote_2007.print_reversed false
    print.printer_Send_To_OneNote_2007.print_scaling 1.00
    print.printer_Send_To_OneNote_2007.print_shrink_to_fit true
    print.printer_Send_To_OneNote_2007.print_to_file false
    print.printer_Send_To_OneNote_2007.print_unwriteable_margin_bottom 0
    print.printer_Send_To_OneNote_2007.print_unwriteable_margin_left 0
    print.printer_Send_To_OneNote_2007.print_unwriteable_margin_right 0
    print.printer_Send_To_OneNote_2007.print_unwriteable_margin_top 0
    privacy.sanitize.migrateFx3Prefs true
    security.disable_button.openDeviceManager false
    security.warn_viewing_mixed false
    == Firefox version
    ==
    3.6.6
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-getplusplusadobe16263
    *npdnu
    *npdnupdater2
    *Adobe PDF Plug-In For Firefox and Netscape
    *6.0.12.448
    *RealPlayer(tm) LiveConnect-Enabled Plug-In
    *RealJukebox Netscape Plugin
    *Default Plug-in
    *Google Update
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *GEPlugin
    *3.0.50106.0
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Next Generation Java Plug-in 1.6.0_16 for Mozilla browsers
    *The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object

    This can be a problem with the Personas extension.
    See [[Troubleshooting extensions and themes]]

  • Mountain Lion: Mail does not display directory when attaching file

    After upgrading to Mountain Lion, when composing a Mail message and attempting to attach a file, the directory window opens and nothing is displayed. Trying to attach via the paper clip button, not drag & drop. The gear spins continuously but nothing is ever displayed (at least not for the 10 minutes I waited). Doesn't seem to matter which directory is chosen, no files are displayed. Anyone seen this problem? Thanks.

    An Apple support 'all in one' Mail with various troubleshooting articles:
    Mail

  • My iPad2 does not display greens in pdf files correctly.

    The green areas of photos in some pdf files are displayed as magenta.  Some other areas in the same photos are also displayed incorrectly; light greys are almost black. Exactly the same thing happens when the same files are displayed on my iPhone4.  But, the same files display correctly on my iMac.
    There is also a strong magenta cast in the green areas in jpg files displayed on the iPad2 (same on iPhone4) but, when the same files are displayed on my iMac, the colours are correct.
    Looks very like a bug in iOS.
    Any ideas?

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Security
    and check the box marked Allow other plug-ins.

Maybe you are looking for

  • Posting Open Balance to a All Currencies G/L Account

    Hi All, I have a situation for which some assistance is required. I am trying to post opening balance to the G/L bank account which is defined as ALL Currency. On the G/L the system show that Account as Currency = All Currencies and adjacent to the B

  • Costing of a Configurable within a Configurable

    Good Day I would like to ask any experts who have worked with the costing of variant configurables. Is it possible to have a situation in which a manufactured config material consumes another config material which is procured. Although the "procured"

  • File to BAPI error

    hi, iam getting following error in file to bapi scenario.plz help me 2007-11-02 17:21:20     Success     RFC adapter received a synchronous message. Attempting to send sRFC for BAPI_SALESORDER_CREATEFROMDAT1 2007-11-02 17:21:21     Error     Exceptio

  • Live muse site defaults to tablet when on desktop

    I have just published my site to my hosting provider but it keeps showing the tablet version of the site instead of the desktop. I'm reluctant to delete the tablet (and possibly phone) versions but how do I get it to show the right site on the deskto

  • Premiere Elements 10 slow GUI refresh

    Hi all, I am experiencing a very slow GUI refresh rate using Premiere Elements 10. It has been happening since I first started using the program, but I am using it a bit more now and it's starting to frustrate me. Basically, as soon as I open the pro