New HP7525, printing preview, how to enable?

I've had a few HP printers in my time, and also have another wireless HP310a now. In all of these, and especially in the HP310A, I can enable a PRINT PREVIEW in the Printer properties. I can't seem to find this?
Does this printer driver have such an option?
Even finding the Duplex setting wasn't as easy as on the 310A.
IrvSp

Hi,
this could be due to multiple reasons....
Reason 1 = You are having inquiry access alone and not allowed to create Invoices
Inquiry Navigation = Payables Responsibility > Invoices > Inquiry > Invoices
Entry Navigation = Payables Responsibility > Invoices > Entry > Invoices
Reason 2 = Inspite of following an ENTRY navigation you still see the NEW Button disabled, it means
payables system does not allow creation of Individual invoices, you should create it only in batch mode.
Check the value of profile option "AP: Use Invoice Batch Controls" ..If the value is YES, it is intentional that NEW button is disabled...
Reason 3 = You are using Entry Navigation, your responsibility is not enabled for Invoice Batches
The invoice create function might have been excluded from the responsibility....
Regards,
Ivruksha

Similar Messages

  • In print preview - how can you have multipage previews of the document - 1 - 2 - 3- 6 - 12 page preview and so on so that you can see if the document is ok to print?

    WINXP - In Explorer you can have multi-page print previews from 1, 2, 3, 6 upwards to check and confirm that the document will print correctly to your needs - and does this across the screen format as opposed to down the page, so that you can see all 12 pages on your screen to quickly see that the print percentage is correct and all pages fall into the print area and so on - how can you set this up with Firefox, because printing with Firefox is so unstable, you don't know what to expect when printing a document or web page?

    No what I mean is how can you see many pages across the screen without having to scroll like in explorer where you can see 12 or more small pages on your screen without scrolling down, like tiled across your screen as opposed to vertical down the page. Thanks

  • Clicking on File and the Print Preview no longer gives a print preview.

    I used to be able to click on File and then Print Preview. Now all of a sudden it no longer works. There is no Print Preview.

    How did you get the '''HP Smart Web Printing4.51 true [email protected]''' extension enabled?
    AFAIK that extension hasn't worked in Firefox since Firefox version 3.5.
    Try disabling that extension and see if Print Preview works.

  • Printing JPanel ,how do i do it

    Hi,
    I am pasting a code below, which will build a screen with 2 panels in a JSCrollPane, added to a JSplitPane in left and right sides,
    so it will look some thing like below
    | | |
    | | |
    | | |
    | | |
    |___|__________|
    Now i want to provide a funtion to print this , but i dont want to print all the panel on right side, but only a portion, say from 100 to 500 on x-axis, along with the panel on left side
    So how can i do it, i am attaching the code to build this screen can anyone help by providing some code or info about printing it
    Ashish
    //start code
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.util.*;
    import java.io.*;
    import java.awt.print.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import javax.swing.filechooser.*;
    public class TestPanelPrinting extends JFrame implements ActionListener
         private MyTotalPanel totalPanel;
         public TestPanelPrinting()
         super("Print Frame");
         this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
    JMenuBar menuBar = new JMenuBar();
    JMenu menu = new JMenu("print");
    JMenuItem print = new JMenuItem("Print Preview");
         print.addActionListener(this);
         menu.add(print);
         menuBar.add(menu);
    totalPanel = new MyTotalPanel();
         this.setJMenuBar(menuBar);
    this.getContentPane().add(totalPanel);
         this.setSize(1000,700);
    show();
         public void actionPerformed(ActionEvent evt)
         //do printing here
         public class MyTotalPanel extends JPanel
              public MyTotalPanel()
              Data data = new Data();
              MyLeftPanel leftPanel = new MyLeftPanel(data);     
              MyPanel myPanel = new MyPanel(data);
              JScrollPane jsLeft = new JScrollPane(leftPanel, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);     
              JScrollPane jsRight = new JScrollPane(myPanel, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);     
              JSplitPane totalSplit = new JSplitPane();
         totalSplit.setOrientation(JSplitPane.HORIZONTAL_SPLIT);
         totalSplit.setLeftComponent(jsLeft);
         totalSplit.setRightComponent(jsRight);
         totalSplit.setDividerLocation(100);
         totalSplit.setDividerSize(2);
         ((javax.swing.plaf.basic.BasicSplitPaneUI) totalSplit.getUI()).getDivider().setEnabled(false);
         int totalWidth = (int)leftPanel.getPreferredSize().getWidth() + (int)myPanel.getPreferredSize().getWidth() ;
         int totalHeight = (int)leftPanel.getPreferredSize().getHeight() ;
         this.setLayout(new BorderLayout());
         this.setPreferredSize(new Dimension(totalWidth , totalWidth));
         this.add(totalSplit, BorderLayout.SOUTH);
         public class MyLeftPanel extends JPanel
              private int height;
              private int last;
              private Data data;
              public MyLeftPanel(Data data)
                        this.setBackground(Color.white);
                        this.setOpaque(true);
                        this.data = data;
                        int size = data.getSize();
                        height = size * 50;     
                        setPreferredSize(new Dimension(100, height) );
                   public void paintComponent(Graphics g)
         super.paintComponent(g);
         setBackground(Color.white);
    // Rectangle r = g.getClipBounds();
         g.setColor(Color.blue);
         int size = data.getSize();
    int width = 30;
    int height = 20;
    int yAxis = 20;
    for(int i = 0; i < size; i++)
         int dataSize = data.getDataSize(i);
         g.setColor(Color.green);
    //     for(int k = 0; k < dataSize; k++)
              g.drawLine(0, yAxis, 100, yAxis );
              g.setColor(Color.red);
              g.drawString(String.valueOf(yAxis), 10, yAxis + 15);          
         yAxis = yAxis + 50;
         class MyPanel extends JPanel
              private int height;
              private int last;
              private Data data;
              private int length;
              public MyPanel(Data data)
                   this.setBackground(Color.white);
                   this.setOpaque(true);
                   this.data = data;
                   int size = data.getSize();
                   height = size * 50;     
                   last = data.getDataSize(0);
                   int last1 = last -1;
                   length = data.getX(0, last1) + 100;
                   System.out.println ("Lenght " + length + " height " + height);
                   setPreferredSize(new Dimension(length, height) );     
         public void paintComponent(Graphics g)
    super.paintComponent(g);
    setBackground(Color.white);
    // Rectangle r = scrollPane.getViewport().getViewRect();
    // g.setClip((Shape)r);
    // Rectangle r = g.getClipBounds();
    g.setColor(Color.blue);
    int x = 0;
    for(int i = 0; i < last ; i++)
         x +=60;
         g.drawLine(x, 0, x, height);
         g.drawString(String.valueOf(i), x, 10);
    int size = data.getSize();
    int width = 30;
    int height = 20;
    int yAxis = 20;
    for(int i = 0; i < size; i++)
         g.setColor(Color.cyan);     
         int dataSize = data.getDataSize(i);
         for(int k = 0; k < dataSize; k++)
              int xAxis = data.getX(i, k);
         //      if(data.isInView(xAxis- 30, width+ 30,height+ 10 ,yAxis -10,r))
    //     if (r.contains(xAxis, yAxis) || r.contains(xAxis+width, yAxis+height))
              g.fill3DRect(xAxis, yAxis, width, height, true);
         g.setColor(Color.green);
         g.drawLine(0, yAxis, length, yAxis);
         yAxis = yAxis + 50;
    private class Data
              private ArrayList totalData = new ArrayList();
              public Data()
                        for(int i = 0; i < 50; i++)
                        ArrayList data = new ArrayList();
                        int l = 50;
                        for(int k = 0; k < 50; k++)
                             data.add(new Integer(l));
                             l = l + 50;
                        totalData.add(data);
              public int getSize()
                   return totalData.size();     
              public int getDataSize(int i)
                   return ((ArrayList)totalData.get(i)).size();     
              public int getX(int x, int y)
                   ArrayList data = (ArrayList)totalData.get(x);
                   Integer i = (Integer)data.get(y);
                   return i.intValue();
              public boolean isInView(int xAxis, int width, int height, int yAxis, Rectangle r)
              //     System.out.println ("xAxis " + xAxis + " yAxis " + yAxis + " width " + width + " height " + height);
                   Rectangle phase = new Rectangle(xAxis, yAxis, width, height);
                   boolean flag=     r.contains(phase);
                   return flag;
    public static void main(String args[])
         new TestPanelPrinting();
    //end code

    You can print the JPanel or infact any java.awt.Component by breaking into multiple pages using the Smart JPrint APIs at http://www.activetree.com
    You can look at the online demo program that shows how to print any component along with printing support for vistually any swing and Java program output.
    The Smart JPrint API also generates a PDF document for the same printable output pages.

  • Problem with Print Preview  Urgent!

    Hello BW Experts,
    1.I am trying to use the Print functionality for web printing.In the print preveiew i see all the text in black and white.It is completely different from the page that is displayed in the browser.
    --I tried using the same print stylesheet but it does not work.
    2.In the print preview how do i change the default header line height to some other value.
    3.If i select file>print preview in internet explorer it is treating the logo as a different page,so the logo is printing in seperate page followed by the text.
    I appreciate all your help.
    Thank you all!
    Raj

    Thanks deepak for the reply.
    I am using the stylesheet and media = print but i still have the problem.
    This is the javascript function i am using
    <head>
    <link href="/sap/bw/Mime/BCT/StyleSheets/ServicePortalBWReports.css" type="text/css" rel="stylesheet"/>
    <script>
    <script language=javascript>
    function callPrintHelpService(parameter, cell_type, filter, parameter1, parameter2, item, dataprovider, x, y) {
    var print_service = "Z_PRINT_HELP_SERVICE"
    <!--if ( parameter == "inches") print_service = "Z_PRINT_HELP_SERVICE_IMP";
    var cmd = url + "&DATA_PROVIDER=DP&HELP_SERVICE_CLASS=" + print_service;--->
    SAP_BW_URL_Get();
    if( dataprovider == "DP") window.open(url, "Print", "width=800, height=600, menubar=yes, toolbar=no, scrollbars=yes, resizable=yes"); }
    </script>
    <!-- Query description in the window title bar --->
    <title>
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="TITLE"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_TEXT_ELEMENTS"/>
             <param name="DATA_PROVIDER" value="DP"/>
             <param name="GENERATE_CAPTION" value=""/>
             <param name="ELEMENT_TYPE_1" value="COMMON"/>
             <param name="ELEMENT_NAME_1" value="REPTXTLG"/>
             <param name="ONLY_VALUES" value="X"/>
             <param name="ELEMENT_NAME" value="REPTXTLG"/>
             ITEM:            TITLE
    </object>
    </title>
          <link href="/sap/bw/Mime/BEx/StyleSheets/ServicePortalBWReports.css" type="text/css" rel="stylesheet" media="print"/>
    </head>
    1.---can you please be more specific where i need to change the default header height value.
    2.In the print preview of the report it looks fine but when i say file>print preview from internet explorer it is considering the logo as seperate page .Do i need to make any settings somewhere.
    3.In the print preview it remains same eventhough i use the same stylesheet as that of the report.
    Please advice.
    Thank you,
    Raja

  • How to enable Print Preview with the Envy 5530

    How to enable Print Preview on the Envy 5530

    Hi,
    A print preview is not offered by the current HP software as older software versions provided.
    A preview is only available if the application you are printing from include a such, it is not provided by the printer driver itself.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to enable standard actions and print preview in Output management in FU and FO in SAP TM9.1

    Hello Experts,
    This is regarding the Output management on Truck load scenario.
    I have maintained configuration which is related to output management in Freight order type (truck load).
    Configuration is :
    Output profile : " /SCMTMS/TOR" and
    Add. Output Profile “ /SCMTMS/TOR_PRINT_ROAD”.
    Results: I have created a Freight order based on the FU ( Sales order ) , go to output management tab in FO, I can see only one Action status that is “Shipping Instruction” .
    Expectations: I am expecting couple of other FORMs like HBL and label and etc which is available in “/SCMTMS/TOR_PRINT_ROAD”.
    /SCMTMS/PRINT_AIRPORT_TRANSFER Road Waybill (Europe)
    /SCMTMS/PRINT_CMR Road Waybill (Europe)
    /SCMTMS/PRINT_CMR_MAN Road Waybill (Europe)
    /SCMTMS/PRINT_DELIVERY_ORDER Road Waybill (Europe)
    /SCMTMS/PRINT_FFI Shipping Instruction
    /SCMTMS/PRINT_FFI_MAN Shipping Instruction
    /SCMTMS/PRINT_LAB Label for Packaging
    /SCMTMS/PRINT_LAB_MAN Label for Packaging
    /SCMTMS/PRINT_MAN Shipping Manifest
    /SCMTMS/PRINT_MAN_MAN Shipping Manifest
    /SCMTMS/PRINT_PICKUP_ORDER Road Waybill (Europe)
    /SCMTMS/PRINT_TRUCK_MANIFEST Road Waybill (Europe)
    /SCMTMS/PRINT_VICS Road Waybill (U.S.)
    /SCMTMS/PRINT_VICS_MAN Road Waybill (U.S.)
    Also, When I am executing “List of Actions” by manually I can see all of above actions in popup screen but by default “scheduled condition” check box is checked on “Shipping Instruction” not rest of them.
    Would you please guide me what I am missing?
    Thank you very much.
    Regards,
    Surender reddy

    Dear Surender,
    For PPF customizing you can follow SPRO path -> Cross application components ->Processes and Tools for Enterprise Applications->Reusable Objects and Functions for BOPF Environment ->PPF Adapter for Output Management->Maintain PPF Settings -> Select the application '/SCMTMS/TRANSPORTATION' -> Define action profiles and Actions.
    Select the required action profile (Here in your case /SCMTMS/TOR or /SCMTMS/TOR_PRINT_ROAD)-> select the required action definitions -> Make sure 'Inactive' checkbox is deselected against the required action -> Choose processing types -> Here you can assign a new form. You can also create new action definitions and assign forms accordingly.
    Then go back and go to 'Condition configuration' ->Choose the required action profile -> Check the Start condition and schedule condition. Make sure you have 'Schedule automatically' radio button selected under overview tab.
    Print preview is also called as Document preview. To my knowledge this tab should be displayed default with standard under Output Management tab. Document preview will appear upon selecting the action in Output management tab. If not appearing just check the WD component customizing or personalization.
    Let me know if you have any specific questions.
    Link below to PPF and Output Management in SAP TM document would help you.
    http://help.sap.com/SCENARIOS_BUS2013/helpdata/EN/82/717662E5D84908B8777042308B24FE/OUTPUT_MANAGEMENT_GUIDE_SP37_2.pdf
    Best Regards,
    Bharath.K

  • How to enable frontend printing using Adobe Print Forms

    Otto Gold at the forum "SAP Interactive Forms by Adobe" gave me the tip that Sandra Rossi in this forum might help me out. Here is the link to my original thread How to enable frontend printing using Adobe Print Forms
    My question was:
    Hi Experts!
    Did anyone of you manage to enable frontend printing using Adobe Print Forms? In order to save administration effort we use frontend printing in our ERP system. We just changed some SMARTFORMS to the new Adobe Forms technology. Now we learned that direct frontend printing does not work with these forms.
    Any help will be very much appreciated.
    Kind Regards,
    Gerald

    I think you'll be disappointed by a rather negative answer but I'll try to explain everything I know (or think I know) the best I can
    The simplest solution is to do a preview, and print from Adobe Reader! (as I could see on one project, users have to display one more dialog than usually to print) It's the best workaround according to me.
    How Adobe form printing works:
    When you print an Adobe form from SAP, a printer language (PCL, PS, ZPL, PDF) is retrieved from TSP0B table according to the device type, ADS (Adobe Document Services, installed in the SAP java stack) is then contacted to generate the form: a file corresponding to the printer language is generated and sent back to SAP (there are also 2 other little files but it's of none interest here). SAP stores it as a file (named SPOOL...) in the global directory (DIR_GLOBAL when you use AL11 transaction).
    When you ask SAP to print it, it sends the file as is to the printer.
    Note: when you ask SAP to display the spool, SAP sends a request to ADS which will send back a PDF (binary stream which is not stored on disk, just displayed on frontend).
    How frontend printing works:
    If you want to print a normal spool via frontend, SAP doesn't know the language of the printer you will choose. SAP sends the spool in a format named SAPWIN to a frontend program named SAPLPD, it converts the SAPWIN format into GDI, a Windows format that is understood by all printer drivers, and it is sent to the printer driver (you have selected) which converts the GDI format into the printer language.
    Any workaround?
    First possibility would be that ADS converts the PDF into SAPWIN format (by creating an Adobe .XDC file at the ADS side). SAP says it's not possible in Note 685571 - Printing PDF-based forms. As I understand, SAPWIN is a very simple language compared to PCL for example, so it is very difficult to convert a PDF to SAPWIN without losing much information. There's a SAP note about the SAPWIN language if you want to check.
    Second possibility is to print directly the PDF through Adobe Reader: you get the PDF from ADS, download it to the frontend (easy), and execute directly Adobe Reader print function. Unfortunately, I don't know if it's possible. Moreover, we should enhance the standard SAP print dialog...
    Third possibility is the one I recommended at the beginning of this post

  • How to print preview in a popup window?

    There are couple of websites that I use frequently and they open links up into popup windows that I would like to print using print preview so I don't waste paper. Is there a way to do print preview from a popup window or can I open popup windows in a new tab?
    Please Help,
    jpmtnman

    Thanck you for your answer.
    Unfortunatly, my plugin aim to help debug javascript code. So, it's not my code which directly open popup, it's the code I'm watching. I cannot give argument to window.open.
    Correct me if I did not understand something, but your second option consist in modifying the settings of the user browser. How could I do that from a plugin ?
    Also, I realized that when I open a popup without the plugin tester(cfx run), i.e. in opening firefox the usual way, popup windows have the menubar with plugin buttons. O.o
    Is anyone know why this difference ?

  • How can I select paper size while in print preview ?

    I have a printer with four different paper trays, and each one is loaded with different size of paper: A3, A4, Legal, envelopes. When I use IE 11, I can easy go to print preview, click on page setup (little gear icon), select paper size , margins, etc.. there, and when i hit OK, the page is adjusted to the settings I selected and its ready to print, and printer selects the proper size of the paper automatically
    In Firefox v32, I can almost do this same, but I'm stuck with printing only on A4 style paper, as I don't see where to select the paper I want to print on !
    I tried to select A3 and legal paper in the printer driver, but then firefox used the selected paper, but printout on the paper came out as set to A4 size, and rest of the page was empty ! Also I was not able to see the page preview of the selected paper either. How do I then print on other size papers than a4 ?
    I found only one workaround which does not suits my needs but works: First: Go to printer driver and select legal or A3 paper as default, and then open firefox. If I do that i can print on any paper I select, but thats a horrible workaround, because then I often forget to change the default paper size back inside the printer driver, and i print my documents on wrong paper, wasting paper, ink and time...
    Please let me know if there is a way to fix this printing feature somehow.
    Thanks.

    MichalB,
    Sorry, IMO there is no real "fix" for what you are experiencing. Printer prefs set or changed in the operating system won't affect Firefox printing ''[IMO, either ancient code in Firefox or a "cross-browser thing".]'' Firefox has its' own settings for prefs and it defaults to the "last used" for all printer preference setting. And there is no way to set a pref as "use now and return to my defaults after this print job is completed".
    As you have found out, there is no way of changing paper size from the Print Preview screen. Other prefs - Margins & Header/Footer can be changed via Page Setup and you can see changes in the Preview window, but not for paper size. As ''CoryMH'' mentioned, '''paper size''' is selected thru what called the "native print dialog" box using the '''Properties''' button which shows a window provided by your printer software for the Printer which is selected in the "native print dialog" window, and accessed after you hit the Print button in the Print Preview screen.
    Problem is that you can't '''"preview"''' what is going to be printed when you change paper size. If you go back to Print Preview without printing from the "native print dialog" the change for Paper Size isn't saved for viewing in Print Preview!
    IMO, it would be nice if Firefox recognized each "tray" as a separate printer, so that a user could set Margins & Header/Footer prefs AND paper size per tray. IOW, a feature sort of writing a completely new print module that would reflect "today's" environment with multiple tray printers; rather than to continue using the print module that was built by Netscape back in '94 - '95, which we are stuck with almost 20 years later.
    ''As I sit here shaking my head after composing this reply, wondering why the issues I had back in 2002 with printing from Firefox / Firebird / Phoenix haven't been corrected in the last 14 years.''
    ''I do like "old stuff", and have a vehicle sitting my driveway that rolled out of the showroom 30 years ago come October 1 - a 35th birthday present I purchased for myself. [85 Corolla GTS TwinCam coupe - aka Sprinter in GTA] But as far as computer software, I prefer it to be compatible with hardware made in this century.''

  • Print Preview in RFx does not show new Adobe Interactive Form

    Hello Experts,
    I am trying to assign a standard Adobe Interactive form as the output form for SRM RFQ.  I have carried out the following steps in customising under "Define Actions for Document Output".
    - Selected bid invitation Action Profile = BBP_PD_BID
    - Go to "Processing Types"
    - Create a new Processing Type called "External Communication"
    - Set the following values to the new processing type:
         - Form Name = BBP_BID_INV_ADB
         - Form Type = P PDF-Based Forms
         - Format = BBP_BID_INV_ADB_MAI
         - Personalization Type = 5 - Recipeient Variable Replacement
    - Save Changes
    My problem is that when I go to into the BID (RFx) and click "Print Preview" it picks up the standard Smartform, not the new Adobe form I have added as required.
    Please can you advise of any additional config settings or other steps required to ensure that the Adobe Form is called when I click "Print Preview"?
    We are on SRM 7.0.
    I look forward your response.
    Regards,
    Matt

    Hi Matt could you please tell me how do you solve your issue? I have the same and I cant find the solution.
    Thanks a lot
    Kind Regards

  • The old version of firefox had print preview option - how can i do this in the latest firefox update?

    My old version of firefox had a little red firefox tab (top, left) with a pulldown menu offering print option,
    then a secondary menu offering print preview option. How can I access the print preview function in
    the latest version of firefox?

    When you use the new "3-bar" menu button, where you see the Print icon, that actually opens Print Preview. You can use Customize to move that to the main toolbar if you like.
    I created a map showing where the old menu items moved in the new menu. maybe it will be useful? http://www.jeffersonscher.com/res/menu/comp.php

  • How do I get my ipad to find my new wireless printer?

    How do I get my IPAD to find my new wireless printer?

    Is it an ePrint / AirPrint capable printer?  If so, enable that feature and the iPad should see it automatically.

  • How to enable the printer option in print priview screen in script

    Hi All,
    Please tell me how to enable the printer option in script print priview screen.
    Thanks & Regards
    Murali

    hi
    the print option TDNOPRINT has to be intial  (' ').  NOT 'X'
    TDNOPRINT  CHAR  1  0  No printing from print preview
    this will do.
    Gr., Frank

  • How to enable printer range selection in printer Dialog?

    I try to do the printer setup, when I do
    Code:
    job.setPageable (book);
    if (job.printDialog ()) {
    try {
    job.print ();
    catch (PrinterException ex) {
    ex.printStackTrace ();
    note: job is PrinterJob.
    The printer setup that shown, it disable the selection mode in printer range. Anyone know how to enable it or do print by text selection (highlight).
    Thank you in advance.

    If you set up a JFileChooser dialog you can set the setMultiSelectionEnabled to true then the JFileChooser returns an array of files.
    eg.
    File files[];
    JFilechooser chooser new JFileChooser();
    chooser.setMultiSelectionEnabled(true);
    if (result == JFileChooser.APPROVE_OPTION) {
    files = chooser.getSelectedFiles();

Maybe you are looking for

  • Can't figure out how to connect my Macbook Pro to my TV...

    I bought a Gigaware Mini Displayport to HDMI adapter from Radio Shack. Hooked everything up but still nothing. I watched a couple youtube videos and realized I need to turn my "Mirror Displays" on under the "Display" tab. But I dont have the "Arrange

  • HELP! Keyboard -lowercase 'stuck'-no caps, no Shift key-Can't 'select all'

    HELP! I have tried all sorts of things, like: - removed syst prefs to desktop then restarted - un-done, re-done, re-booted - tried various options in International and Keyboard & Mouse - run disk utility, both from startup CD AND in target disk mode

  • PDF file size grows each time form is saved (with no data changes). Why?

    I have an SAP Adobe form (PDF) and we are seeing a difference in the Save behavior between when it is viewed in Adobe Reader vs. the adobe plug-in(?) for Internet Explorer. When the form is viewed in Internet Explorer, every time the user saves the f

  • Process Hang

    Hi, I have a problem that I put on the back-burner a few months ago, but it has become more important again. I have a daemon which maintains a multiplexing stream stack. Every once in a while when the daemon exits and tears down the stack (flushing t

  • Wondering how to find out where to find my add-ons

    since i upgraded to firefox4 i cant find where my add ons are listed