Can't Print more than once without restarting MBP using gutenprint

Hi I am using gutenprint 5.2.6 for my HP laserjet 5P. I can print a document once but when i try to print another document, it does not print +(it shows up in the print query but does not get sent to the printer) . I have to restart my MBP to print something else. even if i try to pront the same document twice, it only prints once. Anyone know how to fix this problem?
thanks,
Push

make sure you have the latest drivers
http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareIndex.jsp?lang=en&cc=us &prodNameId=15011&prodTypeId=18972&prodSeriesId=25481&swLang=8&taskId=135&swEnvO ID=4082

Similar Messages

  • Can't  print more than once with my epson epl-5800L  and airport express

    I recently bought an airport express (b/g) in order to use it with my epson usb printer epson epl-5800L. I'm running mac os X leopard 10.5.7 on my macbook pro (2.4 ghz). The printer is plugged into the airport express (firmware 6.3).
    My problem is the following : i can only print one job (one document), after that if i want to print a second document, the printer don't accept the print job...and the print status windows shows the following message "Unable to open device (read failure)!". The only solution to get it printing again is to reset the Airport.
    I downloaded and reinstalled the last 10.5 driver from epson site, this didn't result in any success, the problem remain, it's even worse now the application office word quit unexpectedly if i try to print through airport express. The error message say "The application escpageASTool quit unexpectedly".
    The problem seems only related to airport express via Bonjour protocol, because if i connect the printer directly to the usb port of my macbook pro i can print without troubles. Also, as reported from many forums Tiger 10.4 seems not concerned by this problem.
    Any help would be much appreciated!
    Thanks,

    I found this statement - +"Note: AirPort Base Station and Time Capsule printer sharing is for printing only, not for printer utilities or other special features that may require a direct proprietary connection."+ within http://support.apple.com/kb/TS1253. Not sure if it pertains exactly to your issue.

  • Can't print more than 75 reports... Load report failed

    Hi,
    I have a problem: I can't print more than 75 reports without restarting my application.
    I'm using VB, Visual Studio 2005 and Crystal Reports Developer XI Release 2.
    It's a windows application.
    In the following examples I'm exporting to pdf but the same hapens if I put it on a viewer.
    I tried to do some tests to find out the problem. I don't have a solution yet
    Test 1:
    I made a cycle printing 100 times the same report. I used the code from an example that was in the BusinessObjects website and just put it into a cycle. At 75 I get the error "Load Report Failed"
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportClass.Load(String reportName, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.EnsureLoadReport()
    Dim ExportFolder As String = Application.StartupPath + "\export"
    If Not IO.Directory.Exists(ExportFolder) Then
    IO.Directory.CreateDirectory(ExportFolder)
    End If
    For i As Integer = 1 To 100
    Dim crReportDocument As ReportDocument
    Dim crDiskFileDestinationOptions As DiskFileDestinationOptions
    ''The path/location where the exported file will be saved
    Dim exportFilePath As String = ExportFolder + "\exported" & i & ".pdf"
    ''Create an instance of the Chart report
    crReportDocument = New Chart()
    ''Set the options for saving the exported file to disk
    crDiskFileDestinationOptions = New DiskFileDestinationOptions()
    crDiskFileDestinationOptions.DiskFileName = exportFilePath
    crReportDocument.ExportOptions.DestinationOptions = crDiskFileDestinationOptions
    crReportDocument.ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile
    crReportDocument.ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
    ''Export the report
    crReportDocument.Export()
    Next
    Test 2:
    I try to insert a "crReportDocument.Dispose() after the Export. It takes more than 1 minute doing the dispose and lots of time processing the 2nd report (more than 2 minutes)
    Dim ExportFolder As String = Application.StartupPath + "\export"
    If Not IO.Directory.Exists(ExportFolder) Then
    IO.Directory.CreateDirectory(ExportFolder)
    End If
    For i As Integer = 1 To 100
    Dim crReportDocument As ReportDocument
    Dim crDiskFileDestinationOptions As DiskFileDestinationOptions
    ''The path/location where the exported file will be saved
    Dim exportFilePath As String = ExportFolder + "\exported" & i & ".pdf"
    ''Create an instance of the Chart report
    crReportDocument = New Chart()
    ''Set the options for saving the exported file to disk
    crDiskFileDestinationOptions = New DiskFileDestinationOptions()
    crDiskFileDestinationOptions.DiskFileName = exportFilePath
    crReportDocument.ExportOptions.DestinationOptions = crDiskFileDestinationOptions
    crReportDocument.ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile
    crReportDocument.ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
    ''Export the report
    crReportDocument.Export()
    ' Dispose
    crReportDocument.Dispose()
    Next
    Test 3
    Same as Test3 but with ReportDocument.Close() before the dispose.
    Still doesn't work, Close takes too long, just like Dispose...
    Test 4
    I tried using a global variable with the ReportDocument.
    Instead of creating new instances of the ReportDocument, I keep using the same.
    It works fine if I use always the same report file, but if I try to print 2 different reports the 2nd returns the error "Load Report Failed" and takes too long loading before the error.
    Well, I made some researches on internet and I foud this, but still doesn't work with me, because Dispose always takes too long... 
    http://www.arquitecturadesoftware.org/blogs/hugobatista/archive/2006/02/22/236.aspx
    http://www.arquitecturadesoftware.org/blogs/hugobatista/archive/2006/05/23/328.aspx
    http://www.arquitecturadesoftware.org/blogs/hugobatista/archive/2007/04/05/CrystalReportsMemoryLeakFixByJerryCote.aspx
    Can anybody help?
    Thanks
    Isabel
    Edited by: Isabel Cabral on Aug 12, 2008 8:12 PM

    Already tried that, then I get another problem...
    After exporting the first report, takes 1 or 2 minutes doing the Close and the Dispose, and after that it takes too long trying to load the next report (after 1 hour I give up!).
    This is the code I'm using to do the tests:
            'Create the export folder
            Dim ExportFolder As String = Application.StartupPath + "\export"
            If Not IO.Directory.Exists(ExportFolder) Then
                IO.Directory.CreateDirectory(ExportFolder)
            End If
            For i As Integer = 1 To 100
                Dim crReportDocument As ReportDocument
                Dim crDiskFileDestinationOptions As DiskFileDestinationOptions
                ''The path/location where the exported file will be saved
                Dim exportFilePath As String = ExportFolder + "\exported" & i & ".pdf"
                ''Create an instance of the Chart report
                crReportDocument = New Chart()
                ''Set the options for saving the exported file to disk
                crDiskFileDestinationOptions = New DiskFileDestinationOptions()
                crDiskFileDestinationOptions.DiskFileName = exportFilePath
                crReportDocument.ExportOptions.DestinationOptions = crDiskFileDestinationOptions
                crReportDocument.ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile
                crReportDocument.ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
                ''Export the report
                crReportDocument.Export()
                'Close and dispose
                crReportDocument.Close()
                crReportDocument.Dispose()
            Next
    Thanks,
    Isabel

  • PB won't start more than once without PMU Reset

    My son just got a hand-me-down G4 1.5Ghz 15" PowerBook at work. When he got it the battery would not hold a charge for more than about 5 minutes. We checked the serial number and it was part of the PowerBook battery recall so we requested a battery exchange from, Apple. The new battery arrived today and when he put it in, the PowerBook would not start up even on AC.
    He reset the PMU and it seemed to be OK but when the computer went to sleep he could not wake it up. He uplugged it and took out the battery but it will not restart. Also, the charge indicator on the AC adapter turned green after about 15 minutes but the battery indicator in the menu bar still says 0%. He pushed the test button on the bottom of the battery but no lights come on so the battery can't be charged. Even putting the old battery back into the PB won't let it restart more than once without resetting the PMU.
    While the old battery did not hold a charge at least the machine could be used and restarted without a PMU reset. Now it won't even do that.
    Anyone see this behavior on another machine? Any suggestions on what is wrong or how to fix it?
    Please help.
    Thanks,
    David

    It appears that deleting the com.apple.Powermanagement.plist file has resolved the restart problem. In fact. it looks like the old battery may now be charging properly. I still can't get the machine to start using the replacement battery.

  • Re: Can't print more than one page of a PDF

    I have Acrobat and Reader 9.3.3. With either program I can't print more than 1 page of any PDF despite changing settings. What will fix this problem? Thanks in advance for your help.

    Adobe strongly recommends that you should NOT have Acrobat and Reader installed on the same system. They have the bad habit on stepping on each other's files. You do not need both programs to read PDF files.
    You should uninstall Reader and repair Acrobat. I also recommend that you restart after removing Reader and after repairing Acrobat.
    Good luck.
    Ken Friedman

  • Statechart module: Using a master statechart to launch a slave statechart more than once without getting Error 1100 at Obtain Queue (No object of that name was found)

    Hello,
    I am trying to create a project using the statechart module, and one of the techniques I am trying to use is a "master-slave" statechart structure, illustrated by the code I have attached to this post (you probably need the statechart module installed to look at my example code).  The problem I have recently discovered is that the slave statecharts cannot be launched more than once without raising an Error 1100 at Obtain Queue.  I have gathered from a few other posts that the cause of this error is the fact that the First Call primitive is used by the Statechart module to initialize the statechart when it is first run.  This works fine for the first launch of the slave statechart, but the second launch and subsequent launches of the statechart fail on Error 1100, since the First Call primitive won't let the statechart initialize (the First Call primitive tells the statechart it has already been initialized (this isn't the first call), and the External Trigger function then tries to send an external trigger to a queue that doesn't exist).
    What I can't gather from those posts is the correction I need to make to get this design to work.  I tried to send the slave statecharts a boolean flag for the "Init?" terminal, to force a reinitializing of the slave statechart.  I couldn't get that to work.  I tried to not load the slave sub VI as a slave sub VI, and launch it using some VI Server code, so that maybe the slave sub VI would be loaded and unloaded, therefore causing the statechart to properly initialize, but I couldn't get that to work either.  What correction should I make?  How do I get this to work?
    I really want to use this design pattern, first of all since I wrote a lot of code already with this structure, and second of all, it makes a lot of sense to me.  How do I make it work?  If someone could post a version of my code that functions the same, but without the error, I would appreciate that.  If you don't have time for that, but would be able to outline the steps I need to take to get it to work, that would be helpful, as well.
    Thanks to anyone for any assistance they can provide.  If you need any other information, please let me know.
    Attachments:
    Statechart Sample.zip ‏431 KB

    Thanks, Deborah.  I tried this approach out, and it turns out you can't just wire a TRUE to the "Init?" terminal.  You have to wire a TRUE for the first run of the slave statechart, and then it has to become a FALSE.  If you wire a TRUE, it will constantly try to reset the statechart, which doesn't work.
    The master statechart has to keep track of whether it has called the slave statechart, and communicate that to the slave statechart.  On the very first call of the slave statechart, the "First Call?" function inside of the "Run Statechart" function will give a TRUE, which initializes the statechart properly, and then gives a FALSE from that point after.  After that, the "First Call?" function doesn't work anymore (it will always return FALSE), and an initial TRUE, with subsequent FALSE values, has to be provided manually.
    I attached a version that does this, which appears to work.  Let me know if it doesn't work for someone, or if you have a better idea to implement the correction.
    Thanks to everyone for the replies!
    Attachments:
    Master-Slave Statechart Sample.zip ‏439 KB

  • Can you print more than one photo on a sngle page in iPhoto, as you can in Picasa?

    iPhoto printing--
    Can you print more than one photo on a single page in iPhoto, as you can in Picasa? Terrible waste of paper and time to do it one at a time!  I 've been away from Macs for several years ( I know, shame on me) but I thought I remembered more printing flexibility.  Help, anyone?

    Yes - select the photos and print - select the print size and paper size (be sure they will fit with some small borders) and click customize - in settings select multiple photos per page (the preview will reflect this selection) and print
    LN

  • Can't print more than one job at a time.

    I am trying to print to either a HP DesignJet 1055cm plotter or a HP LaserJet 5000N. I can't send more than one file at a time. If i don't wait until the current job starts printing, the next one won't print. For example if I sent five files one right after the other, I might get 1, 4 and 5. I don't think it's a printer problem because it happens on two different printers, and it doesn't happen when I print from my PC. Any idea what could cause this?

    My work around is to put all the jobs "on hold" in the print settings or just "stop jobs" on the printer window.
    Then I click on each print job in the que and let them print one at a time. This way I can at least quit the program and move onto the next thing.

  • How can I print more than one slide per page from the iPad????

    Im having problems printing from the iPad. I want to print more than one slide in one peace of paper. 3, 6, 9 ...
    Can any one help?

    Start the print process and click on the Custom layout.  At the bottom you can set the size of the image desired and see how many photos can be placed on the page size selected.
    OT

  • How can I print more than 16 lines in an invoice PLD

    Hello, Im currently using SAP 2007 SP1 PL09.
    I cannot print more than 16 lines in my PLD invoice. I have tried making the repetitive area longer, making the end of report and the page footer shorter, I tried setting the "lines in repetitive area" to 50 and I also increased the max rows per page and the only thing that seemed to work was setting the "print with vertical compression" in the invoice print preferences to a value under 100.
    is this the only way I can solve my problem?
    Thanks,

    Hello neito
    Jst increase the height of the layout go to doucment properties change the height there to 1200 and see u can get more than 26 records per page
    Regards Jenny

  • I can't print more than 1 copy in Adobe Reader X

    I've recently come across an issue with a workstation that is unable to print more than one copy of a PDF file.
    When you increase the quantity to print multiple copies, it still just prints one copy only.
    I've downloaded the latest version of Adobe Reader but this has not corrected the issue.
    Any advice on this would be much appreciated.
    Regards, Mel

    I would be inclined to reinstall your printer drivers, if reinstalling Adobe Reader hasn't resolved it.
    Go to the web site of your printer manufacturer - then click on "Support" or "Downloads" to get the latest drivers.
    One thing you can try as an alternative is print to another printer and see if you still have the same issue - you can then narrow it down to being an Adobe problem or a printer software problem.
    If you don't have another physical printer installed, check to see if you have  a virtual printer like "Microsoft XPS Document Writer" or "Microsoft Office Document Image Writer".
    Both of these 'virtual' printers will print your document as a file that you can view on screen which is good for testing purposes. If you have the same problem with another printer or one of these virtual printers then the problem may be with Adobe Reader.
    What happens when you print other types of documents such as Word documents?

  • Can't print more than 1 on both my hp printers

    hi,
    I have 2 printers, an hp CP2025dn and a Photosmart C7280.
    Neither of them will print more than one of any document, no matter what I put in the box.
    It just started happening, I used to be able to print more than one copy.
    I am running windows 7 32 bit

    "Why wouldn't you be printing using a Epson C84 inkjet printer driver? (If you are trying to print to an Epson C84 inkjet)."
    We switch frequently between multiple printers connected for different print jobs--Laser, Color inkjet, and a Dymo label writer-- and having to go back to the Chooser to switch printers back and forth is tedious for the demands of our situation. We have had entire reports printed out on labels because a user didn't know how to use the Chooser or forgot to switch back. Using the LW8 driver in Classic makes all the printers available in a single place from a drop down menu and also allows for postscript file output easily (which is converted to a pdf file by an automator folder action). From a multiuser perspective, this is easier to use (and to teach) than dealing with the chooser and OS9 drivers. Unfortunately, there seems to be a one page limit with non-postscript printers and I would like to see if there is a way around this.

  • Can you print more than one copy from eprint.

    Does anyone know how to print more than one copy from eprint?

    Hi JJSS,
    Currently, the solution only offers one copy. If you need to print multiple copies, the workaround is to send the email multiple times.
    I work for HP.

  • Can I store more than One value in HashMap using Same kay?

    Hi,
    I want to store more than one value in HashMap using same key................. is it possible?
    If yes, then please give me source code for that.....
    Thankx in Adv.......

    I want to store more than one value in HashMap using >same key................. is it possible?I don't think so
    Message was edited by:
    manuel.leiria

  • How can I print more than one page of an internet site?

    When I try to print pages from internet sites (Facebook, Merchant Circle, Linked In, NBC.com, etc.), Firefox will only print the first page.
    In order to print more information, it is necessary to reduce the scale of the print so more of the information will print on the first page.
    How can I print out more than just one page of a website without having to make the print so small that I cannot read it when it prints?

    Firefox has problems with some style rules.
    First, it's always helpful to use any print-formatted or print-optimized version of the page. Sometimes there is a link for this.
    Second, in some cases you need to use this trick: press Ctrl+a to select all content on the page, then Ctrl+p to display the print dialog, and click the radio button next to Selection.
    Those tricks don't always work, but hopefully they will help.

Maybe you are looking for

  • Bridge Keywords driving me nuts! Please help......

    I've been directed here by the good people at Elements Village as I have a Bridge specific question that you guys may be able to help with. I've been using Bridge (CS3, I think) with PSE V4 Mac for several years and have multiple and extensive keywor

  • How does new Comparator() work?

    I have this code segment in my program. It works fine, but I don't know how exactly it works. Collections.binarySearch(vertexList, new Integer(vertexID), new Comparator() { public int compare(Object obj, Object key) { PDGVertex vertex = (PDGVertex)ob

  • Firewire 800 intentionally limited to 400

    With nothing but a FW800 drive plugged into any fw port, the drive is listed as capable of 800 speed, but communicating at 400. The system profiler shows a "phantom" unknown/unknown device, with a top speed of 400. I dug out the IORegistryTools from

  • ATT00001.htm shows up along a Mail attachment

    Every time I send email with an attachment, a strange file with the name like "ATT00001.htm" shows up along EACH attachment at the recipient's end. This is very annoying and confusing to the recipient. How can I prevent it from happening?

  • Ipod touch - Glittery screen !

    Does your IPT screen look "glittery" with full brightness on a black background? Picture (it shows more than you can see in real life) - you have to look really close to see it in person. It's not dead pixels (or stuck), there's one stuck pixel on th