printing rdlc files

Hi i made a report, with the Walkthrough that msdn provided

(http://msdn2.microsoft.com/en-us/library/ms252091(VS.80).aspx)

the printer name that provided is a tool that work under office 2003 only,

("Microsoft Office Document Image Writer")

is there a way to change this code so i could print the report without having office 2003 (my pc's on the network got office xp and 2000).

thanks ahead

tomer glick



Answer this question

printing rdlc files

  • Christer Claesson

    10X that's exactly what i needed, and it's working great

    tomer


  • Geo725

    one way maybe to show the printerdialog and choose the printer you want to print to.

    PrintDialog thePrinterDialog = new PrintDialog();

    thePrinterDialog.ShowDialog();

    then maybe set the printer name to the printerdialog printer name property:

    printDoc.PrinterSettings.PrinterName = thePrinterDialog.PrinterSettings.PrinterName;



  • printing rdlc files