Cannot print the report on Window 7 64 bit

Hi all,
I try to print the report using Print icon on Crystal Report Viewer but it does not print out and no error display. Any idea how to fix it? Is it a bug when print on Window 7 64 bit OS? Thanks.

I'd go with Don's suggestion:
http://support.microsoft.com/kb/184291/en-us
- Ludek

Similar Messages

  • I Cannot print a report with windows XP

    Hi,
    I am trying to print a report but it is imposible, after a while, I have to reset the PC.
    Here goes some data: The report was built in Report Builder 3.0.5.8.0 and Oracle 7 Server Release 7.3.4.0.0 and the printer is HP LaserJet 2300 Series PCL6 and the operative system Windows XP.
    Anybody know what should I do to print?
    Thanks
    Veronica

    The minimum version that runs on Windows XP is 6.0.8.22.1 (Reports 6i Patch 13).
    See the certification matrix on:
    http://otn.oracle.com/support/metalink/index.html

  • Cannot print pdf file using windows 7 64 bit and trial acrobat X

    cannot print pdf files using trial version of Acrobat X and windows 7 64 bit prints all other files no problem.
    I've done some searching but can't find anything that helps
    Thanks for any help
    Kim

    I fixed this problem. I had to turn off the browser virtualization feature in Zone Alarm Extreme Security. This wiped out all of the Firefox settings, but I had bookmarks, etc. backed up. (answered by original poster)

  • How to print the report directly without previewing (report viewer) using c# windows application

    Hi,
    Currently, we are using crystal report to all of our reporting applications, but since I/users have encountered some issues about CR's speed to load only a simple report, maybe it is now time for us to adopt a new reporting environment in which I think SSRS
    can fill this problem.
    To start with, I have here a sample code, that uses the crystal report to print the report directly without previewing:
    csCashInvoiceCal csCashCal; --Crystal report name .rpt
    dsCsReceipt dsCs; --created dataset
    DataTable u;
    DataRow s;
    private System.Drawing.Printing.PrintDocument printDocument1;
    private System.Windows.Forms.PrintDialog printDialog1;
    ParameterValues paramValue;
    ParameterDiscreteValue discreteValue;
    ParameterFieldDefinition fieldDefinition;
    private void btnPrint_Click(object sender, EventArgs e)
    this.Cursor = Cursors.WaitCursor;
    loadReceipt2();
    print2();
    csCashCal.Close();
    this.Cursor = Cursors.Default;
    private void loadReceipt2()
    dsCs = new dsCsReceipt(); --created dataset
    u = dsCs.Tables.Add("DtCsReceipt");
    u.Columns.Add("Qty", Type.GetType("System.String"));
    u.Columns.Add("UOM", Type.GetType("System.String"));
    u.Columns.Add("Description", Type.GetType("System.String"));
    u.Columns.Add("UnitPrice", Type.GetType("System.String"));
    u.Columns.Add("Discount", Type.GetType("System.String"));
    u.Columns.Add("Amount", Type.GetType("System.String"));
    try
    for (int i = 0; i < dgvDesc.Rows.Count - 1; i++)
    s = u.NewRow(); double.TryParse(dgvDesc.Rows[i].Cells[Discount2.Name].Value.ToString(), out discount);
    s["Qty"] = double.Parse(dgvDesc.Rows[i].Cells[Qty.Name].Value.ToString());
    s["UOM"] = dgvDesc.Rows[i].Cells[Uom2.Name].Value.ToString();
    s["Description"] = invcode + dgvDesc.Rows[i].Cells[Description.Name].Value.ToString();
    s["UnitPrice"] = dgvDesc.Rows[i].Cells[UnitPrice.Name].Value.ToString();
    if (discount != 0)
    s["Discount"] = "(" + string.Format("{0:0.##}", discount) + "%)";
    else
    s["Discount"] = "";
    s["Amount"] = dgvDesc.Rows[i].Cells[Amount2.Name].Value.ToString();
    u.Rows.Add(s);
    catch (Exception) { }
    csCashCal = new csCashInvoiceCal();
    csCashCal.SetDataSource(dsCs.Tables[1]);
    //csCashCal.Refresh();
    loadParameter2();
    private void loadParameter2()
    ParameterFieldDefinitions paramFieldDefinitions;
    paramValue = new ParameterValues();
    discreteValue = new ParameterDiscreteValue();
    paramFieldDefinitions = csCashCal.DataDefinition.ParameterFields;
    discreteValue.Value = date;
    fieldDefinition = paramFieldDefinitions["Date"];
    commonParam();
    discreteValue.Value = txtcsno.Text;
    fieldDefinition = paramFieldDefinitions["InvoiceNo"];
    commonParam();
    discreteValue.Value = txtNameTo.Text;
    fieldDefinition = paramFieldDefinitions["CustomerName"];
    commonParam();
    discreteValue.Value = txtAdd.Text;
    fieldDefinition = paramFieldDefinitions["CustomerAddress"];
    commonParam();
    ------other parameters----
    private void commonParam()
    paramValue.Clear();
    paramValue.Add(discreteValue);
    fieldDefinition.ApplyCurrentValues(paramValue);
    private void print2()
    using (printDocument1 = new System.Drawing.Printing.PrintDocument())
    using (this.printDialog1 = new PrintDialog())
    //this.printDialog1.UseEXDialog = true;
    this.printDialog1.Document = this.printDocument1;
    DialogResult dr = this.printDialog1.ShowDialog();
    if (dr == DialogResult.OK)
    int nCopy = this.printDocument1.PrinterSettings.Copies;
    int sPage = this.printDocument1.PrinterSettings.FromPage;
    int ePage = this.printDocument1.PrinterSettings.ToPage;
    string PrinterName = this.printDocument1.PrinterSettings.PrinterName;
    try
    csCashCal.PrintOptions.PrinterName = PrinterName;
    csCashCal.PrintToPrinter(nCopy, false, sPage, ePage);
    printcount++;
    //saveCountPrint();
    catch (Exception err)
    MessageBox.Show(err.ToString());
    This is only a simple sales receipt application that uses dgv and textboxes to push its data to dataset to the crystal report, a simple one but there are instances that it is very slow.
    But I'm having trouble implementing this using SSRS, since I'm only new to this one, wherein I created the report using report wizard, with two button options inside the form for print preview or direct print selection. Actually, it is very easy to implement
    with print preview because it uses reportviewer. My problem is that how can I print the report directly without using a reportviewer?
    So here is my code so far which I don't know what's next:
    private void button2_Click(object sender, EventArgs e)
    this.Cursor = Cursors.WaitCursor;
    loadReceipt3();
    //print3();
    this.Cursor = Cursors.Default;
    ReportParameter[] parameter = new ReportParameter[11];
    private void loadParameter3()
    parameter[0] = new ReportParameter("InvoiceNo", txtcsno.Text);
    parameter[1] = new ReportParameter("Date", date);
    parameter[2] = new ReportParameter("CustomerTin", txtTin.Text);
    parameter[3] = new ReportParameter("CustomerName", txtNameTo.Text);
    parameter[4] = new ReportParameter("CustomerAddress", txtAdd.Text);
    parameter[5] = new ReportParameter("Agent", agent);
    parameter[6] = new ReportParameter("Discount", "Discount: ");
    parameter[7] = new ReportParameter("TotalDiscount", lblDiscount.Text + "%");
    parameter[8] = new ReportParameter("TotalSales", rdtotal);
    parameter[9] = new ReportParameter("Tax", rdtax);
    parameter[10] = new ReportParameter("TotalAmount", rdnet);
    private void loadReceipt3()
    DataSet dsrs = new DataSet();
    DataTable dtrs = new DataTable();
    DataRow drs;
    dtrs.Columns.Add("Qty", Type.GetType("System.String"));
    dtrs.Columns.Add("UOM", Type.GetType("System.String"));
    dtrs.Columns.Add("Description", Type.GetType("System.String"));
    dtrs.Columns.Add("UnitPrice", Type.GetType("System.String"));
    dtrs.Columns.Add("Discount", Type.GetType("System.String"));
    dtrs.Columns.Add("Amount", Type.GetType("System.String"));
    try
    for (int i = 0; i < dgvDesc.Rows.Count - 1; i++)
    drs = dtrs.NewRow();
    drs["Qty"] = double.Parse(dgvDesc.Rows[i].Cells[Qty.Name].Value.ToString());
    drs["UOM"] = dgvDesc.Rows[i].Cells[Uom2.Name].Value.ToString();
    drs["Description"] = invcode + dgvDesc.Rows[i].Cells[Description.Name].Value.ToString();
    drs["UnitPrice"] = dgvDesc.Rows[i].Cells[UnitPrice.Name].Value.ToString();
    if (discount != 0)
    drs["Discount"] = "(" + string.Format("{0:0.##}", discount) + "%)";
    else
    drs["Discount"] = "";
    drs["Amount"] = dgvDesc.Rows[i].Cells[Amount2.Name].Value.ToString();
    dtrs.Rows.Add(s);
    catch (Exception) { }
    int addtlRow = 7;
    if (addtlRow > (count - 1))
    addtlRow = addtlRow - (count - 1);
    for (int i = 0; i < addtlRow; i++)
    dtrs.Rows.Add();
    loadParameter3();
    LocalReport localreport = new LocalReport();
    localreport.SetParameters(parameter);
    localreport.DataSources.Clear();
    localreport.DataSources.Add(new ReportDataSource("dsSalesReceiptSsrs", dtrs));
    localreport.Refresh();
    //what's next....
    So what's next after local..refresh()? Actually, I have googled a lot but I didn't found the exact solution that I'm looking for which confuses me a lot.
    Anyway I'm using VS 2010 with sql server 2012 express.
    You're help will be greatly appreciated.
    Thank you,
    Hardz

    After some further studies with ReportViewer controls and with the use of this tutorial @ : http://msdn.microsoft.com/en-us/library/ms252091.aspx, which helps me a lot on how to print a report without using a report viewer, I found out what is missing
    with my code above and helps solve my question.
    Here's the continuation of the code above:
    private void loadReceipt3()
    loadParameter3();
    LocalReport localreport = new LocalReport();
    localreport.ReportPath = @"..\..\SsrsCashReceipt.rdlc";
    localreport.SetParameters(parameter);
    localreport.DataSources.Clear();
    localreport.DataSources.Add(new ReportDataSource("dsSalesReceiptSsrs", dtrs));
    Export(localreport);
    print4();
    private IList<Stream> m_streams;
    private int m_currentPageIndex;
    private void Export(LocalReport report)
    string deviceInfo =
    @"<DeviceInfo>
    <OutputFormat>EMF</OutputFormat>
    <PageWidth>8.5in</PageWidth>
    <PageHeight>11in</PageHeight>
    <MarginTop>0.25in</MarginTop>
    <MarginLeft>0.25in</MarginLeft>
    <MarginRight>0.25in</MarginRight>
    <MarginBottom>0.25in</MarginBottom>
    </DeviceInfo>";
    Warning[] warnings;
    m_streams = new List<Stream>();
    report.Render("Image", deviceInfo, CreateStream,
    out warnings);
    foreach (Stream stream in m_streams)
    stream.Position = 0;
    private void print4()
    if (m_streams == null || m_streams.Count == 0)
    throw new Exception("Error: no stream to print.");
    PrintDocument printDoc = new PrintDocument();
    PrintDialog printDlg = new PrintDialog();
    printDlg.Document = printDoc;
    DialogResult dr = printDlg.ShowDialog();
    if (dr == DialogResult.OK)
    if (!printDoc.PrinterSettings.IsValid)
    throw new Exception("Error: cannot find the default printer.");
    else
    printDoc.PrintPage += new PrintPageEventHandler(PrintPage);
    m_currentPageIndex = 0;
    printDoc.Print();
    Dispose();
    public void Dispose()
    if (m_streams != null)
    foreach (Stream stream in m_streams)
    stream.Close();
    m_streams = null;
    private Stream CreateStream(string name, string fileNameExtension, Encoding encoding, string mimeType, bool willSeek)
    Stream stream = new FileStream(name + "." + fileNameExtension,
    FileMode.Create);
    m_streams.Add(stream);
    return stream;
    private void PrintPage(object sender, PrintPageEventArgs ev)
    Metafile pageImage = new
    Metafile(m_streams[m_currentPageIndex]);
    // Adjust rectangular area with printer margins.
    Rectangle adjustedRect = new Rectangle(
    ev.PageBounds.Left - (int)ev.PageSettings.HardMarginX,
    ev.PageBounds.Top - (int)ev.PageSettings.HardMarginY,
    ev.PageBounds.Width,
    ev.PageBounds.Height);
    // Draw a white background for the report
    ev.Graphics.FillRectangle(Brushes.White, adjustedRect);
    // Draw the report content
    ev.Graphics.DrawImage(pageImage, adjustedRect);
    // Prepare for the next page. Make sure we haven't hit the end.
    m_currentPageIndex++;
    ev.HasMorePages = (m_currentPageIndex < m_streams.Count);
    Thank you very much for this wonderful tutorial. :)

  • Print prob: system cannot print the last number of columns of the report

    Hi, im having trouble printing my report with more than the standard screen size. i want to print the report in a specific font size, so i created a customized page format. however, it does not print the succeeding columns of the report. what should i do? thanks

    Received answer directly from SQL*Plus Development:
    "sqlplus does not have a limit on the number of columns it displays."
    They created a table with more than 256 columns with data and had no problem retrieving the data.

  • Error While Printing the Report

    Post Author: saqib
    CA Forum: .NET
    HI All,I have joined this forum recently. I found this forum so helpful. I have one query which is: I am using crystal report 10 with Dot Net 1.1, I have created one web report which consists of 19 pages. Once i press the print button on the report after previewing it shows me the error reporting screen of windows. I have checked in event viewer it gives me the following error detail:The description for Event ID ( 1000 ) in Source ( Microsoft Internet Explorer ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: iexplore.exe, 6.0.2800.1106, printcontrol.dll, 10.0.0.533, 0003bb45. Can any one helps me as i am totally stuck in that. Thanks in advance.  

    Try the following if your printer is a network printer
    1. Add Printers - select Local Printer
    2. In the Add Printer wizard, select "create a new port" option and select "TCP/IP" as type
    3. Write the IP address of the network printer in the "Add standard TCP/IP Printer Port wizard". The port name becomes IP_<ip addr>. Click Next.
    4. Select the printer and printer type in "Add Printer" wizard.
    5. Select a driver and Write a printer name. This completes the setup. Use this printer name to print from Oracle reports.
    Hope this helps..
    Yogesh
    I am getting this error message while printing the report on Network Printer.
    "REP-1849: Failed while printing"
    Reports Server is not installed on my machine.
    On shared printer, it has no problems.
    Platform is Win2000. Report Builder 6.0.8.11.3
    Plz help !
    Thanks in advance !

  • Print the report on page has width larger than height and not landscape mode

    Hi,
    I'm trying to print report on page (Width: 18cm, Height: 13cm) which the width larger than the height.
    The problem is windows keeps changing the page oreintation to landscape and when I change it back to portrait its changing the width to 13cm and height to 18cm.
    I'm using dot matrix printer to print the report, if i put Landscape , printer is printing the text in horizontal.
    Already i have tried to setup the custom for on printer, and used custom page size but it is changing to landscape.
    I need to print the report with out preview, direct print top printer, NO PDF....
    Thank you .....

    Hi Anil,
    After testing the issue in my environment, I can reproduce it. When I set (Width: 18cm, Height: 13cm) as the Report Page size, it would automatically convert Orientation from Portrait to Landscape. Because the Orientation displayed is dependent on the page
    width and page height of the report.
    But in my scenario, the Orientation option just change the Width and Height sizes, it couldn’t affect the text rotation. I guess this issue can be caused by the printer and printer driver, please try to update them. Reference:
    http://stackoverflow.com/questions/15244336/printing-in-landscape-or-portrait-automatically-rotates-text-ssrs?lq=1
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Cannot print character mode in windows 2000

    Hi,
    When I try to execute a character mode report using a network printer the report does not run correctly (prt sheet size, escape sequences etc.).
    There are three machines involved in this problem:
    1) A Windows XP Professional running reports developer. This machine was used to develop the report. It will be reffered as WXP in the future. These are version details of this machine:
    Report Builder 6.0.8.24.0
    ORACLE Server Release 8.0.6.0.0
    Oracle Procedure Builder 6.0.8.21.0
    Oracle ORACLE PL/SQL V8.0.6.3.0 - Production
    Oracle CORE Version 4.0.6.0.0 - Production
    Oracle Tools Integration Services 6.0.8.18.0
    Oracle Tools Common Area 6.0.8.18.0
    Oracle Toolkit 2 for Windows 32-bit platforms 6.0.8.24.0
    Resource Object Store 6.0.8.21.0
    Oracle Help 6.0.8.24.0
    Oracle Sqlmgr 6.0.8.18.0
    Oracle Query Builder 6.0.7.1.0 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle ZRC 6.0.8.22.0
    Oracle Express 6.0.8.3.5
    Oracle XML Parser     1.0.2.1.0     Production
    Oracle Virtual Graphics System 6.0.5.38.0
    Oracle Image 6.0.8.20.0
    Oracle Multimedia Widget 6.0.8.20.0
    Oracle Tools GUI Utilities 6.0.8.20.1
    2) A Windows 2000 Server machine running reports runtime and accessed via windows terminal server. It will be reffered as W2000 in the future. These are version details of this machine:
    Report Builder 6.0.8.24.0
    ORACLE Server Release 8.0.6.0.0
    Oracle Procedure Builder 6.0.8.21.0
    Oracle ORACLE PL/SQL V8.0.6.3.0 - Production
    Oracle CORE Version 4.0.6.0.0 - Production
    Oracle Tools Integration Services 6.0.8.18.0
    Oracle Tools Common Area 6.0.8.18.0
    Oracle Toolkit 2 for Windows 32-bit platforms 6.0.8.24.0
    Resource Object Store 6.0.8.21.0
    Oracle Help 6.0.8.24.0
    Oracle Sqlmgr 6.0.8.18.0
    Oracle Query Builder 6.0.7.1.0 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle ZRC 6.0.8.22.0
    Oracle Express 6.0.8.3.5
    Oracle XML Parser     1.0.2.1.0     Production
    Oracle Virtual Graphics System 6.0.5.38.0
    Oracle Image 6.0.8.20.0
    Oracle Multimedia Widget 6.0.8.20.0
    Oracle Tools GUI Utilities 6.0.8.20.1
    As you can see, all versions are exactly the same in both machines.
    3) A windows 98 machine with a epson fx-880+ printer atached on it. It will be referenced as W98.
    When running the report from the WXP machine, directing the output to the W98 Epson FX-880+ it works fine: all escape sequences takes effect, the speed is good and the aligment is ok. But when running the same .rep report from the W2000 machine, directing the output to the same W98 printer, the escape sequences doesn't work and, worst, are printed. As a consequence of this, the aligment is wrong.
    All of this was done to try to fix this problem:
    1) The latest patch available for reports 6i is patch 15 which you can download from metalink -&gt; patches -&gt; Simple search -&gt; patch number = 3171855. You can apply the latest patch and test (Raghavendra from metalink)
    2) Apply the spool raw datatype workaround in Windows 2000, following these steps:
    * Click Start , point to Settings , and then click Printers.
    * Right-click the printer that you want to use and click Properties.
    * On the Advanced tab, click Print Processor.
    * Click Raw in the Default data type box.
    * Click OK to confirm changes.
    * On the Advanced tab, clear the Enable advanced printing features option.
    * Click OK to confirm changes.
    (From metalink Note:178433.1)
    3) Edit the wide.prt file using dos edit instead of notepad, and using CTRL+P + ALT18 to obtain the ESC(18) character (just the same thing that was done in WXP machine) (From OTN Forum)
    Does anyone wave any other idea?
    Thanks,
    Vinicius Pacheco

    I'm replying my own question to inform what happens if anyone is facing same situation.
    Initially thanks to Bob for your sugestion. It works! But not at first time.
    I don't have administrator permission at the remote machine (W2000) to change the printer settings. So I made a request to the people who has. They made the changes, but the report still not working. After some tries we saw the reason: all the changes was for their user only. In my user this changes weren't active. So there are some things to check in this situation:
    1) If you are not administrator, check if the changes made by another people are in effect in your account;
    2) In some way your local printer definitons affects the remote printer (don't ask me why!!!), so check you local printer definition too.
    I hope it helps!

  • Unable to print the report after SP2 (CR 2008 / VS 2008)?

    I'm developing an ASP.NET application using VS 2008 (Framework 3.5). I have installed CR 2008 with SP (0, 1, and 2).
    I created an invoice report and I printed it as test for the report and it works okay. I needed to change the page size of the report to a user defined size and reset all of the margins to zero.
    After I did that I was unable to print the report again and every time I tried to print the report nothing gets printed.
    I checked my environment to find the cause of this problem but I found nothing except that I'm using CR runtime for SP1 and I'm currently using SP2. So I did remove CR runtime for SP1 and install CR runtime for SP2.
    The problem didn't go away and I faced one more problem.
    Usually I'm using a dataset as a data source for my reports. After installing the CR runtime for SP2 I couldn't see any date column in my report data source (Dataset). All other types of columns appear except date fields! Why I have no Idea?
    After I do some more testing regarding my issue I found out the following
    1.     When I add a new report to my web application and I don't change the page setting the report work fine.
    2.     When I change the page setup settings (Page Margins, horizontal width and vertical height) the report show up okay but never gets printed.
    Why I don't know?
    Addition to that the report dataset (Data Source) showing in the field explorer never shows any date type field?
    All of the above issues happened with me after installing SP2.
    OS: WindowsXP Pro SP3
    CR 2008 (SP 0, 1, 2)
    VS 2008 SP1
    Please I need your help.
    Edited by: Sami Aljafer on Oct 12, 2009 8:35 PM
    Edited by: Sami Aljafer on Oct 12, 2009 8:38 PM

    Hi, Sami;
    Are you printing from the Crystal preview window, or in code?
    If you are printing from the preview window, try printing via code, such as:
    An example of print to printer:
    crReportDocument = New ReportDocument
    crReportDocument.Load("h:\labels2.rpt")
    ''Use error handling in case an error occurs
    Try
    ''Set the printer name to print the report to. By default the sample
    ''report does not have a defult printer specified. This will tell the
    ''engine to use the specified printer to print the report. Print out
    ''a test page (from Printer properties) to get the correct value.
    crReportDocument.PrintOptions.PrinterName = "
    dwcb12003\ZDesigner ZM400 200 dpi (ZPL)"
    ''Start the printing process. Provide details of the print job
    ''using the arguments.
    crReportDocument.PrintToPrinter(1, True, 1, 1)
    Please post your question about the dataset as a new post.
    Regards,
    Jonathan
    Edited by: Jonathan Parminter on Oct 12, 2009 2:28 PM

  • My report is printing half of the page when I print the report Hp psc 1315

    My report is printing half of the page when I print the report in this printer
    Hp psc 1315 all in-one and when the operating system is windows xp , but when
    I run the same report in windows me , and the same printer it is running well
    And my report version is :
    Report Builder 6.0.8.23.0
    ORACLE Server Release 8.0.6.0.0
    Oracle Procedure Builder 6.0.8.20.0
    waiting for your valuable answer .
    Best regards
    Jamil alshaibani

    i would like to now if there is any additional software required for the windows xp and oracle report to solve this problem
    please help
    betst regards
    jamil alshaibani

  • CR VS2005 ActiveX Printing Mode print the report larger

    Hi,
    I have a problem with CR VS2005 for ActiveX printing mode. It will print the report larger than usual so when I print it to the printer, some parts will cut off. But the report will print okay if I export it to pdf and print from the acrobat reader.
    Can anybody help me how to fix this?
    I'm using this in my development:
    OS: WIndows XP SP2
    Visual Studio 2005
    CR for VS2005
    and the application is web application.
    Thanks before...

    1) Try this with SP 1 for CR 10.2 applied:
    https://smpdl.sap-ag.de/~sapidp/012002523100006007872008E/crvs05sp1.exe
    2) see if there are any updates for your printer driver
    3) See if you can duplicate this with a different printer driver
    4) I believe CR 10.2 had "No printer" option (Design | Page Setup). Enable that.
    Ludek

  • Need to Print the Report Output

    Hi,
    I want to print the report output. How to install a printer in Oracle Appls. If i give number of copies 1 or morethan 1(from SRS Window)...the report is completed-warning. pls advice
    Thanks in advance.

    Hi,
    I changed the printer to Epson LQ2170 and Epson LQ2180 but since I don't know the initialization and reset parameter (already search for the manual but couldn't find it, downloaded from Epson's website but couldn't find it either) so I register it with LQ1070. I'd tested to print the reports directly from Reports Builder 6i and it printed just as I wanted to but when I tried to print from oracle apps it only printed up to about 3/4 width of the paper. I tried to change the report's height and width, paper size, orientation but no luck. What should I do? Thanks

  • HP Deskjet 1000 Printer - J110a cannot print in color using WIndows 8

    J110a cannot print in color using WIndows 8. The printer will only print in black and white even though it works fine on a PC with Windows 7. I installed the latest drivers from the HP web-site.

    Hey @KC1964,
    Welcome to the HP Support Forums!
    I understand that since installing your HP Deskjet 1000 Printer on your Windows 8 computer you have not been able to print in colour. Because you are able to print fine from a Windows 7 computer we know that this issue is not being caused by your printer. I would like to assist you today with resolving this issue. I'm thinking that your machine is  either experiencing a driver conflict or a setting issue within the Windows 8 computer. Please follow the steps below.
    Step 1: Check Settings:
    Open your Start screen by selecting the Windows button on the bottom left hand corner of your computer screen or by selecting the Windows key on the bottom left of your keyboard, to the right of the Ctrl button
    Once the Start screen opens type Devices and Printers
    Click on Devices and Printers
    In the Devices and Printers folder right click on your HP Deskjet
    Select Printing Preferences
    In the Preferences window select the Advanced button on the bottom right
    Look for the Greyscale or Print Black Only and make sure they are disabled
    If all settings are correct, yet the issue persists, please proceed to the next step.
    Step 2: Try Alternate Driver:
    To confirm if this issue is specific to the Deskjet 1000 driver I am going to have you load an alternate driver on your machine.
    Open your Start screen by selecting the Windows button on the bottom left hand corner of your computer screen or by selecting the Windows key on the bottom left of your keyboard, to the right of the Ctrl button
    Once the Start screen opens type Devices and Printers
    In the Devices and Printers folder right click on your Deskjet 1000 and left click on Printer Properties
    Left click on the Advanced tab
    Left click on New Driver
    When the New Driver window opens just hit 'next' until you see a list of Manufacturers on the left and a list of Printers on the right.
    Select HP as the Manufacturer on the left
    Select Deskjet 9800 as the printer on the right. If Deskjet 9800 doesn't appear than select 'Windows Update' on the bottom left and once the update completes you will be able to select Deskjet 9800.
    After selecting Deskjet 9800 hit next to complete the New Driver Wizard
    Under the Printer Properties window select 'Apply' but don't hit OK
    Select the General tab
    Rename your printer back to HP Deskjet 1000
    Hit OK
    Lastly, right click on your Deskjet 1000 one more time and left click on Printing Preferences
    Left click on the Paper/Quality tab
    Left click on the 'Normal' dropdown for Print Quality on the bottom right and change this to Fast Normal
    Click Apply and OK
    Now that the new driver is added in, please test printing in colour again.
    Please respond to this post with the result of your troubleshooting. Good luck!
    X-23
    I work on behalf of HP
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    Click the "Kudos, Thumbs Up" on the right to say "Thanks" for helping!

  • Print the report title

    Hello All,
    I have a report page with some search item.When I print the page the title does not appear on the output page.
    How I can print the report and its title on the output page.
    any quick help please

    Hi Mohammad
    I allow users to download reports using the Interactive Reports Region.
    If you use that method then you can insert a title at the top of the report by populating the Report Region > Print Attributes (TAB) > Page Header
    Note: This is available when using APEX coupled with Oracle Business Intelligence Publisher. It does not work with "CSV" output.
    Kind regards
    Simon Gadd

  • Print the report by code

    Hi to all,
                 I'm using Asp.Net 2.0-C#, Crystal Report 11 SP1.
    I bind some records to the report, i want to print the report when a checkbox is clicked instead of CR Print button, how to do this, experts please post any code?

    Hello,
    I posted hyperlinks to the [Developer Library|https://www.sdn.sap.com/irj/sdn/businessobjects-sdklibrary], and the [Crystal Reports .NET SDK Guide|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm] for CR XI R2.
    From the main Developer Library page scroll down the page to the [XI|http://devlibrary.businessobjects.com/BusinessObjectsXI/en/devlib.htm] (v11.0) and the [XI R2|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm] (v11.5) versions of the Crystal Reports .NET SDK Guide.
    Click on one of the above links to choose the version of the Dev Library you'd like to explore.  After it loads you'll see Content and Search buttons in the left hand pane.  Click on Search and search for PrintToPrinter.  In the results list you'll see the PrintToPrinter method.  Click on this and you'll see the information you're looking for.
    Please start using the above links to search for your answers - the information is there.
    Sincerely,
    Dan Kelleher

Maybe you are looking for

  • "waiting for printer to become available" on laserjet 4650

    Since 10.6.5, I can't print to my color laserjet 4650. All I get is a "waiting for printer to become available" message. I've repaired permissions, removed and re-added the printer, I've reset the printing system and plugged the printing straight int

  • I bought an iPhone but it seems always carrier locked.

    I bought to a webshop on priceminiser an iph-on nsimlocked. I did the update of the système by a restoration and, since, I'm not able to activate the iPhone dur to haven't a good SIM. I have no idea which was the previous carrier. What I have to do ?

  • How to display Calender Please help

    Hello i am new to Java Programming not much experienced. Actually i wanna display a calender on screen. The basic idea is to find what day of the week the first of the month is and print blank columns for the days of the week before the month begins.

  • Will a 4 pin to 6 pin FW cable work?

    My new MBP is showing up today, but all I have to transfer files from my older MBP is firewire 400 cables. My local radio shack has a 4 pin to 6 pin adaptor. Will that work? Thanks

  • Assign defaulit values while using PNP

    Hi Everybody, I am using Logical Database PNP for the one of my implementation. i have to develop a new report using PNP logical database. Now I have to assign default values for Employee status and Employee Group. while executing the report, in the