Click here to Skip to main content
15,892,059 members
Everything / General Programming / Printing

Printing

printing

Great Reads

by Vahid_N
PdfReport is a code-first reporting engine which is built on top of the iTextSharp and EPPlus libraries.
by OriginalGriff
How to print labels in Word
by EFEaglehouse
Windows CE/Mobile printing client for LPR, LPRng, and Socket API.
by OriginalGriff
OK, OK. I had to set it up - Herself insisted - and I had to actually print to be sure. So I knocked up a quick box to print (just to show I could).

Latest Articles

by OriginalGriff
How to print labels in Word
by OriginalGriff
I'm getting a 3D printer for Christmas! So - I need to learn to use it. That means ... a CAD package. Gulp.
by OriginalGriff
So ... you want to put that LCD display in there, huh? Pity it's not a rectangular frame, isn't it? How are you going to fit a neat frame round that, huh? It's complicated, but ... not that complicated when you get used to it.
by OriginalGriff
OK, OK. I had to set it up - Herself insisted - and I had to actually print to be sure. So I knocked up a quick box to print (just to show I could).

All Articles

Sort by Title

Printing 

29 May 2013 by Vahidrsj
I'm using VS2012 and Crystal reports 13.0.5. When i want to print displayed report with print button on crystal report viewer toolbar, its giving me this error: "A StartDocPrinter call was not issued."This article cant help me: http://support.microsoft.com/kb/121074[^] because my printer...
19 Oct 2013 by thatraja
Here solved threadhttp://scn.sap.com/thread/3299135[^]
21 Mar 2019 by ibrahim karakira
Problem: I am using the printer zebra LP 2844 to print labels that I created in asp.net as microsoft Report. The Report has the size: width:7.5cm and height : 5 cm. when I use the print button in the microsoft report viewer it automatically sets the orientation to landscape mode switching the...
17 Jul 2013 by Marc Gabrie
Try these workaroundshttp://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/ef5f5e71-c4e5-459c-97e8-1483a981d654[^]http://neodynamic.wordpress.com/2013/04/08/workaround-for-landscape-printing-if-report-width-is-bigger-than-height-in-reporting-services/[^]
21 Mar 2019 by Keerthi_Siri
Here is the solution, Simply create the report as you wish and add following code before opening the report in ReportViewer. Dim ps = New System.Drawing.Printing.PageSettings() ps.Landscape = False ReportViewer1.SetPageSettings(ps) Me.ReportViewer1.RefreshReport()
5 Aug 2018 by Mike Hankey
The time is right to purchase that 3D Printer you've been looking at and I'll help you get started!
8 Feb 2012 by Member 7802059
During my sophomore project, we had to seek out a client and write a program that would satisfy their need. My client requested a print monitor. I wrote a nice little program utilizing the code found here:Monitor jobs in a printer queue (.NET)[^]It worked great. A year later, I recieve...
8 Feb 2012 by Christian Graus
I would try doing a 32 bit build. That way, it will run in 32 bit mode, which means that it should work the same on a 64 bit machine. I've had to do that in the past, in order to consume 32 bit dlls.
8 Feb 2012 by Richard MacCutchan
Since you used code based on a CodeProject article, it would be best to post your question in the forum at the end of the article, and discuss with the author.
8 Feb 2012 by Sergey Alexandrovich Kryukov
I would advice you load the page with the article you referenced above and click "New Message" in the "Comments and Discussion" section, below the article text. Ask your questions to the author. He will be notified via e-mail on your post and get a change to reply.—SA
8 Feb 2012 by Member 7802059
Thank you all for assisting me. And next time if I have trouble, I shall go to the author.Thanks again,Bake
4 Nov 2012 by marcel zol
1. I want to access the button Print on printdialog and to hide it, so it will only be buttons Cancel and Apply. 2. After user click`s the button Apply, to hide/close printdialog.additional information moved from comment belowI am using the dialog that contains buttons Print, Cancel and...
3 Nov 2012 by OriginalGriff
That's not going to be easy, and it may be a very, very silly idea.Certainly, on my system (vanilla Win7) the dialog that results from PrintDialog.ShowDialog contains no "Apply" button - just "OK" and "Cancel" so disabling or hiding the "Print" button won't work.If you need a dialog that...
3 Nov 2012 by Abhishek Pant
This may help you to use print dialog and access the printing here[^]And for button apply action you can use runtime events control of button here is a sample here[^]for hiding buttons and showing them you can apply show and hide property of buttons.I hope it helps you a bit
4 Nov 2012 by Akinmade Bond
Print, Cancel, Apply? I don't even have that on my PrintDialog.But maybe this articlel on hacking FontDialog can get you started. But I strongly suggest you create your own PrintDialog[^]
24 Feb 2013 by marcel zol
I have the code:PrintDialog printDialog1 = new PrintDialog(); printDialog1.UseEXDialog = true; printDialog1.AllowSomePages = true; printDialog1.AllowSelection = true; printDialog1.AllowPrintToFile = false; ...
24 Feb 2013 by Tharaka MTR
Check the following articlehttp://www.c-sharpcorner.com/UploadFile/dbeniwal321/printing-multiple-pages-in-C-Sharp/[^]http://www.dreamincode.net/forums/topic/44330-printing-in-c%23/[^]
4 Nov 2012 by marcel zol
How to make printDocument1_PrintPage as .jpg (image) and then print? I printed the pages and instead selecting printer I selected pdf printer, works nicely, but anyone can copy text and images from .pdf and paste it to Word and use it as their own.Or how to remove any pdf printers from the list?
4 Mar 2022 by marcel zol
I want to change pages with mouse wheel in print preview dialog.I have this code but it is not working:in Form1 code is: private void toolStripButton1_Click(object sender, EventArgs e) { Meni m1 = new Meni(); m1.Natisni(); ...
4 Mar 2022 by Member 12412609
I have done and it is working with the following code (in VB.net) - you can change it to C# easily 1- First you should to know the number of pages, so count the page number in printpage event (PrintDocument1.PrintPage) (in my code the Variable...
15 Feb 2016 by Little@Knight
Hi, I've been working on small project which should monitor print queues using c#. The thing that I'm strugling is how to take number of copies and totalpages before printing using c#? I used ManagementObject properties but it did another job which I don't expect.Could you help?Thanks...
15 Feb 2016 by Duncan Edwards Jones
Not really, no.You are reading the properties of the print job as it is added to the spooler. At this point the spooler / print subsystem does not know how many pages it is going to receive because it is receiving them asynchronously...what you need to do is pause the print side until...
30 Sep 2019 by JordanTrajkov
I have instaled asp.net application on a server. I want to display network printers in a dropdown and i use this codes to achive that goal: Protected Overrides Sub LoadPrinters() Dim permison As New PrintingPermission(PrintingPermissionLevel.AllPrinting) If Not...
30 Sep 2019 by #realJSOP
The (service?) account unhder which your web app runs does not have access to the printers. Bigger question - Why would you want a web app to access printers? That seems to be ripe for abuse.
8 May 2013 by kubi081
I want to print to a network printer from active reports but it always prints to default printer without throwing error. Once I try to print with the .net printdocument library it print to specified printer.I dont know why it is printing to default printer when using activereports.Any idea?
18 Jun 2018 by Dilan Shaminda
Hi, I am using Windows API functions to monitor a printjob and able to get the information like document name, job id, machine name etc. Now I paused the current print job by using the jobid successfully. The question is now I want to add a watermark to the document and resume the printer. I...
17 Jun 2018 by #realJSOP
Google is your friend: Google - c# add watermark to printed page[^]
18 Jun 2018 by Maciej Los
I believe you can't add a watermark to a printed document through the WinAPI, because a print queue is not the same as a list of filenames. It's a list of jobs to print with their names, but it doesn't mean you have an access to the list of documents, which are already printed....
18 Jun 2021 by OriginalGriff
I'm getting a 3D printer for Christmas! So - I need to learn to use it. That means ... a CAD package. Gulp.
17 Sep 2019 by OriginalGriff
OK, OK. I had to set it up - Herself insisted - and I had to actually print to be sure. So I knocked up a quick box to print (just to show I could).
25 Nov 2019 by OriginalGriff
So ... you want to put that LCD display in there, huh? Pity it's not a rectangular frame, isn't it? How are you going to fit a neat frame round that, huh? It's complicated, but ... not that complicated when you get used to it.
21 May 2013 by Liju Sankar
Hi,I am using open source MigraDoc print preview control in one of my project. Per the software policy change, we are looking for a support-enabled licensed component.Could you please suggest any components with can be using to replace the MigraDoc http://www.pdfsharp.net/Overview.ashx
21 May 2013 by Sergey Alexandrovich Kryukov
If your smart-* policy makers prohibit using open-source, you should probably also have a policy prohibiting you using the help of such an open community as CodeProject, just for consistency. :-)Besides, I don't think you (or they?) really understand what is open-source and licensing....
27 May 2013 by Liju Sankar
Thank you very much for your suggestions and guidance.I found a couple of way to handle the situation a. Microsoft Print Preview controls b. Third party controls providers like Infragistics and Developer Express have there own extensions of this microsoft print preview controlBut...
20 Nov 2014 by MAGuru
I am making a Web Part for a Point of sale site with .NET (visual studio 2012).How can I print a text file from the site to a printer on the client side,The printer will be a local printer attached to the client machine.
20 Nov 2014 by Afzaal Ahmad Zeeshan
You would have to use the client-side programming to print a web page document. If you want to use the JavaScript, then this would work for you, // show the print dialog boxwindow.print();The document in a web page form is already present on the client's system. Once this code...
25 Jul 2012 by nagen bihari
dear all,I am making a Web Part for a sharepoint site with .NET (visual studio 2010).How can I add a button in my web part, clicking on which will print a .text file stored on my server's c: drive to a printer on the client side without prompting for a 'print' dialogue box?The...
25 Jul 2012 by Christian Graus
You can't change how the browser works. However, you should know that the code that you've copied, will not work all, and if you change the folder it stores the txt file in, in order that your web site would have access to it, it will print your document using whatever printer is attached to...
26 Jul 2012 by bbirajdar
The print dialog prompt is a security feature built into the browsers so that you should not waste the users' printing paper by printing your company's pizza menus whenever the user visits your website ... :). You own the website, not the users' printer and the paper. Let him decide whether to...
27 Jul 2012 by nagen bihari
Dear allFinally, I have solved the problem.Made a .dll filr from the link http://stackoverflow.com/questions/3507187/how-to-print-a-pcl-file-in-c.Added the dll to the GAC.Call it in my code.....and voila.......It prints my text file.Note that I am using a HP Laserjet P2015...
20 Jan 2012 by devausha
I am using Thermal Printer for Printing. It is cutting Automatically via notepad, Msword, etc when the printing job is over. However, it is not cutting automatically when the printing jobs are made from vb.net. So please help how to auto cut paper in thermal printer using...
20 Jan 2012 by Dave Kreskowiak
You're going to have to contact the manufacturer of the printer on this one. There is no single method to call. You print job apparently has to be setup a specific way to allow this to happen, but without the documentation on the printer, its SDK, or anything, it's anyones guess what that...
22 Jan 2012 by devausha
I have Solved This Problem. I am using Raw Printer Helper. So I used Ascii Code for the printThank you
16 Aug 2014 by Member 11016720
I am doing two Projects 1. for a jewellery Shop 2 for a OpticalBoth the Project need Software generated Bar Code. I know how to generate the barcode. But am just asking about sheet or tags where i will take the print. because in case rings, glasses, bangles have special designs tags. Can any...
16 Aug 2014 by OriginalGriff
There are a number of problems here: barcode printing is not just a case of "stick it through the machine and print". Particularly if you are using an inkjet printer, it can be difficult to get a barcode that reads at all, and that remains readable for a good period of time - ink is absorbed...
23 Oct 2013 by mohan5k
We have an (asp.net web) application that prints barcode labels. I have basically two approaches. The environment is load balancer environment (completely secure and completely internal environment -Web garden). Let’s say we have around 200 label printers(configured for static ip machines) and...
25 Oct 2013 by mohan5k
After doing a lot of research I am finalizing the approach-I is good and suggestible for especially bar code label printers. Because Lable Printers related application should printer labels automatically on the printers and should not ask/interrupt users. so Approach1 seems to be feasible....
26 Oct 2013 by Marc Gabrie
You wrote..."we have around 200 label printers(configured for static ip machines) and those has to print around 100k labels every day"How is the printing performance with such a high printing volume and based on the fact that you are using Windows graphic printing API (approach-I i.e....
30 Jan 2015 by Member 10705961
I am developing a web application using c#. here, i want to generate barcode and print on sticker. I have generated barcode using c# code and the barcode saved as image. now what i want is, print barcode image on client side. the barcode printed successfully on server side. but i do not know how...
20 Jul 2011 by Jordy "Kaiwa" Ruiter
Hey CodeProject Members,I have a problem that I need help with. For my current project I need to make a Batch Plot application. This application will have around ~2000 AutoCAD drawings that it will need to print.The application needs 5 printers, 1 for each format, going from A4 to A0. No...
20 Jul 2011 by Jordy "Kaiwa" Ruiter
Found it. When calling GetPrintQueues you have to pass in an array of EnumeratedPrintQueueTypes. It now returns both my local and network printers (all installed printers).PrintServer m_PrintServer = new PrintServer(@"\\vps01w2k8");PrintQueueCollection m_PrintQueueCollection =...
27 Jul 2012 by old_snake
I am new to C# and I want to complete C# project, I have a thermal printer (Beiyang - POS/KIOSK printer ) connected by USB. and now I want to begin programming receipt print in c# using this printer.So, please help me in this issue:1- where do I start ? 2- how to connect device 3-...
27 Jul 2012 by OriginalGriff
You should talk to the people who created it - they should provide technical support and will know more about their product than we will. If they don't, then find another supplier and demand your money back!
31 Mar 2016 by Vipin Mampully
Hi Guys,Am developing a supermarket billing system and All the purchase and sales part are done.But On the sales part i have got a problem for printing the bill to customer.What I have tried:Tried using crystal report but i cant fix a height dynamically and the height of the bill...
31 Mar 2016 by Patrice T
What about direct printer control by sending escape codes to the printer directly ?You use printer internal fonts and you do all the formatting by yourself. This way the ticket length is not a problem.
17 Feb 2013 by Member 9742322
Hi,i created a small VB.NET Windows app to print labels . when i print the label printer responds but it prints blank labels. i have set the configuration to use default printer settings but it still prints blank. any help will be greatly appreciated please see my code below.Static...
28 Feb 2013 by Member 9742322
Just an update i managed to sort the problem out by using their SDK kit . what i can pick up was that because the printer was not on my machine it picked up normal A4 paperafter installing printer on my pc it picked correct setting and printed correctly
7 Jan 2018 by RohanBhosale21
I have a WPF application that has user controls being loaded on button clicks. As a report each page is a user control and I load multiple user controls as multiple pages. When I try to print using FixedDocument if I call PrintDialog.ShowDialog for each user control I am able to print the...
7 Jan 2018 by Maciej Los
Yes, there's a way! You have to call PrintDialog on the beginning of the process, then you have to loop through the "WPF pages". For example: // select printer and get printer settings PrintDialog pd = new PrintDialog(); //catch when user cancel process //if (!pd.ShowDialog()) return; //...
12 Jul 2012 by Steven Borges
I'm using the following code:ASCIIEncoding ascii = new ASCIIEncoding(); byte[] c = new byte[] { 0x1B, 0x47 }; //activates boldString bold = ascii.GetString(c); Yet there is something missing...it's the "n" value that let's me specify if it's indeed on or not, since the default is...
13 Jul 2012 by Steven Borges
To activate it I just have to add another hexadecimal value in front of it, to indicate that the "n" value is 1.byte[] c = new byte[] { 0x1B, 0x47, 0x1 }; //activates bold
11 Jan 2023 by Steven Borges
I just installed my EPSON TM-T90 Receipt and I wanna test it using C#.I tried googling it, but haven't learned much about it...What I want to do is simply print a line of code, for example "Hello World".I tried using the following: char esc = (char)27; char ff...
11 Jul 2012 by Richard MacCutchan
The driver will have exclusive rights to that serial port in order to drive the printer, and so protect itself from malicious code. Why not just use normal print processing via the standard printing utilities and classes?
9 Apr 2013 by kubi081
Hi,We have a c# document designer project. We can print documents with this program for most of the customers.But we faced a problem for the customers which has Windows Server 2003 R2 OS. I connect to customer pc via remote desktop connection,Once I try to print from program it doesn't...
31 Mar 2014 by Member 10707030
I have a custom C# application that has a print option to print an image. It uses the WPF and printdialog to show the print dialog and print the image. This works fine from a local machine. If I deploy this application in citrix, it does not show the users local printers. Other standard...
28 Mar 2014 by Dave Kreskowiak
There is no different code as far as I've ever heard of.I have run into a problem in Citrix environments where the client had to have a goofy printer setup in order for them to show up in the Citrix environment. That was about 8 years ago and I can't remember what it was I had to do to get...
19 Feb 2013 by kubi081
Hi,We have label designer project which creates scripts and sends to label printers.Up to now it was working ok. But now I have to print labels in cryllic fonts.I want to print with Zebra ZM400 printer.Whatever I have tried, I couldn't make it to print in cyrillic.I know I have to...
15 Jan 2014 by Bond487
I am using following code in my program to generate a bill to customer.This code is working fine. But the problem is"Printer not get stop until finishing that page". I want to stop the printer once it completes printing the data.Please help me regarding this.#region OnPrintPage...
2 Nov 2010 by john8954
C# print codeHow can I code for print in c# that is customize according to user need.?
2 Nov 2010 by Nish Nishant
See http://msdn.microsoft.com/en-us/library/aa287563(VS.71).aspx[^]It was part of VS 2003 documentation, but the concepts remain the same. You will see separate articles there showing how to print a text file, a data grid, a form, and one for print preview.
26 Nov 2019 by Prachi92
I want to print database value on multiple pages (30 values on one page). By using while(dr.Read()) loops goes infinitely and the same data is displaying on each page, How to solve it? What I have tried: private void test2_Load(object sender, EventArgs e) { itemperpage =...
26 Nov 2019 by OriginalGriff
Well ... you read the same data from the DB each time that method is executed - so as long as the DB contains 30 or more items, you will print the first page, tell the system there are more pages to print, and exit. The system will then call you again to print the next page, you will read the...
5 Jan 2018 by sunil.shirke
Hi, I made application for hospital. My all input are done. Payment receive window also done. For receipt I have two tables 1. from where we can get test details. 2. from where we can get all other details. Table 1 (from this I want to get only test details & test price) CREATE TABLE...
26 Dec 2017 by Ravi Lodhiya
I think you need to do following query to get ReportData correctly. SELECT tblReportData.TestName, tblReportData.TestPrice, tblReportData.ReferenceDr, tblReportData.Remarks, tblReportData.EnterBy, tblReceiptDetails.TestDone, tblReceiptDetails.PatientName, tblReceiptDetails.Remark FROM ...
11 Dec 2012 by Dustin Prevatt
I have a application that currently a user has to run and once the app is running it sends a reset command to the printer. Here is my current code:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Linq;using System.Text;using...
19 Feb 2018 by Joe Doe234
hi guys, I have a question and i really wish to find help with. I need to create a window form application that need to print on a ready made document, There are any techniques of how can i get the text of each input and put it in this form and they can print the form ? The other problem is...
19 Feb 2018 by RickZeeland
There are lots of ways, if you have Word then you can use Word automation, see article here: Word Automation using C#: Create a Word Table Programatically[^] You can also use the Report Viewer control, but sadly this is not installed standard anymore in newer Visual Studio version, it's still...
28 Jul 2018 by Member 11396175
Hello Please help me i am amateur programmer. I have made an app that i can browse txt files with Greek characters inside and i can send it to thermal printer directly with ip. My problem is the Greek characters printing something like symbols What I have tried: namespace SendFiles { ...
28 Jul 2018 by Patrice T
Quote: My problem is the Greek characters printing something like symbols The problem look like a mismatch between the printer settings and what you send to the printer. I would particularly pay attention to characters encoding on both sides. If your file include printer commands, the...
5 Aug 2013 by Zaif04
hi all,i am beginner developer in c#.neti develop a software which will run on medical store.so i want to print the customer sale invoice, can someone please provide code to attach printer in my C# code so i can print the bill from my client PC and printer.please provide dummy invoice so i...
5 Aug 2013 by Zafar A khan
place the connectionstring in App.config file , you can change it after installationuse this code to retrieve the connection stringSqlConnection con=new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["EmisConn"].ConnectionString);
28 Mar 2014 by Member 10700515
I'm not able find any post related to my problem.I have an application in which i have many labels and text-boxes and a menu strip which contents new,open,save,print options.After compiling my application , when i click on print it'll show me preview and then i can make a print but in...
28 Mar 2014 by OriginalGriff
Seriously? Don't use PrintForm at all: use the PrintDocument class[^] instead. It's a bit more work, but it gives a much better result, and you have total control over exactly what is printed and where. And it's pretty simple when you get the hang of it.The link includes a simple...
28 Jun 2014 by AlwaysLearningNewStuff
I have printing code that draws grid on the paper.Grid has 4 columns, and they have equal horizontal length. Height of the cell is tenth of the paper size. Total number of rows is unknown but I know for a fact that there will be at least one row.Each cell has same physical size-> width...
29 Jun 2014 by CPallini
Quote:The only thing that crossed my mind was to create "dummy font", see if the example text can fit into cell, and then adjust it's size if the test failsThat's a feasible approach indeed. But what do you mean with 'dummy' font? You need to know in advance the exact font you are going to use,...
22 Jan 2017 by Member 12961327
I have a wireless printer & I was wondering if connecting Bluetooth/WiFi adapter to printer’s USB-A Female port will directly print through my android mobile.TP-Link TL-WN823N 300Mbps Mini Wireless N USB Adapter (Black)...
22 Jan 2017 by Kornfeld Eliyahu Peter
Quote:If your printer is connected to your Android device with a USB OTG (USB On-the-Go) cable, you can print from your Android device. Printing from an Android device with a USB OTG connection requires an Android device that supports USB OTG and a USB OTG cable.HP Printers - Printing From...
20 Nov 2016 by Member 12393970
I am using LPR command for printing PDF file, which is created by using iTextSharp.For printing, I am passing PDF file path, saved on my machine.Process objP = new Process();objP.StartInfo.FileName = "lpr";objP.StartInfo.Arguments = " -P " + printerName + " " + fileName;Now what I want...
20 Nov 2016 by Afzaal Ahmad Zeeshan
Good question, :-)The fact is that this program allows you to strip out the file name from the command, then what it reads is the input that you pass to it, man page for lpr[^], reads as, Quote:If no names appear, the standard input is assumed.Input can be the bytes that you want to...
23 May 2016 by pjaar89
HiI develop an ASP.NET solution that prints some reports, for testing purpose I wish to automatically save these reports as PDF files instead of prompting the user to select the printer I create my reports with Crystal Reports. For economic purpose I have the habit to test my reports...
5 Nov 2020 by Kabin Kc
I am developing hotel billing system that prints the bill receipt using thermal printer but i am stuck at [Errno None] Other errors python3.9 library: escposprinter & libusb-1.0, plateform:windows 10 Thermal printer: xlab xp-58III from...
8 Feb 2010 by Richard MacCutchan
Are you sure that your PrintPage() method is correctly writing the data to the output device?
9 Feb 2010 by Grunge Boy
Hi Richard, thanks for the hint. Actually I solved the problem using interop functions. Your hint helped me to realize that I'm on the wrong way . :)
8 Feb 2010 by Grunge Boy
I'm trying to create automatically PDF documents from WORD documents, using a PDF creator as a default printer. However, I don't want to use the PrintDialog everytime, I need to make it automatic by the source code ( I have thousands of WORD documents). The problem is that it seems I cannot...
6 Sep 2014 by Aitizaz Khan
I have googled alot for the past few days to find an answer but i am unable to find anything.Problem Statement:I want to save a .prn file for each print job without prompting the user. but my problem is not restricted to a particular printer. I want to capture the .prn file for each file...
6 Sep 2014 by George Jonsson
You most likely need to hook into the spool server in order to do what you want.This CodeProject article describes how to do it.API hooking revealed[^]More specifically you need to look into methods inside spoolsv.exe, spoolss.dll and gdi32.dllHere is a list of printer...
7 Sep 2014 by Marc Gabrie
What if you attach a FileSystemWatcher to %SystemRoot%\SYSTEM32\SPOOL\PRINTERS
18 Dec 2013 by Member 10474952
Hello All - I am looking to capture ascii data from a parallel port output from a machine - this device is not a pc - but it is collecting datat & printing a table of numbers to an epson lx300+ printer - Can anyone help me devise a solution to this problem ? Thanks in advance Marty
22 May 2011 by Mother of 8
I would like to change my print orientation from portrait to landscape. I am using the printing powerpack component...is there a way to change it from printing portrait to landscape? .[Edit] I assume the author is referring to the Microsoft Visual Basic PowerPack, which includes a PrintForm...