Printing is a process for reproducing text and image, typically with ink on paper using a printer.

learn more… | top users | synonyms (2)

1
vote
1answer
89 views

Printing Mathematical Symbols in Java Gives Wrong Output

I am trying to print using the TextLayout class. When I print some mathematical symbols, I get odd behavior. The image below shows the results from printing the strings "First + 2" and "First \u222A ...
2
votes
1answer
140 views

Programmatically print to a virtual printer (XPS)

I'm going to display a portion of my C# WinForms app using PrintDocument, it's almost done, but there is a problem with my printers. I use following codes to capture an image of my form and then print ...
0
votes
0answers
35 views

How to use e.Hasmorepages?

I am not getting a new page. I want that after 20th item I get a new print page to print but I am not getting it. I am using e.hasmorepages method but I am not getting a desired result. Please help MY ...
0
votes
0answers
29 views

PrintPreviewDialog does not display an embedded font correctly

My Winform program prints some text using PrintDocument, Graphics.DrawString method and an embedded font (a custom true type font). The printer handles the custom font ok. But the PrintPreviewDialog ...
1
vote
0answers
12 views

Running Redmon with a Service

I am trying to use Redmon 1.7 on my windows XP SP2 desktop machine. I process the data provided by Redmon to MyProgram.exe and then write it out to stdout which Redmon sends to printer port. But ...
1
vote
1answer
38 views

how to print odd numbered observations from a dataset SAS

I have i simple question, that I unfortunately cannot seem to solve myself. How to print only observations with an odd observation number from a data set? Kind Regards Maria
3
votes
1answer
34 views

Why does wcwidth return -1 with a sign that I can print on the terminal?

Why does here wcwidth return "-1" (not a printable wide character) width "Ԥ" (0x0524)? #include <stdio.h> #include <wchar.h> #include <locale.h> int wcwidth(wchar_t wc); int ...
0
votes
0answers
29 views

Access Printer Status using Winspool

Hello I've used this example on how to access printer status using winspool. //Code written by Mark Middlemist - @delradie //Made available at http://delradiesdev.blogspot.com //Interop details ...
0
votes
0answers
28 views

PrintQueueStatus returns None, printer is already turned off

I already turned off the printer, and my code still returns None Here is my code try { printServer.Refresh(); PrintQueue printQueue = new PrintQueue(printServer, cmbPrinters.Text.Trim()); ...
0
votes
0answers
19 views

C# .NET Printing Status

Hello I'm trying to check if a printer has problem or not. I'm using windows printing. is there a way to get accurate printer status for serial USB and IP printer?
0
votes
1answer
45 views

MIPS 3000 assembly, load and print 32-bit unsigned integer

My program has to accept an input between between 0 and 2^32 or 4,294,967,295. Which bit-wise 32 bytes should be able to do, but i'm overflowing into the negatives because i'm not sure how to make ...
0
votes
0answers
30 views

CUPS filter (C++) doesn't run until to end

I'm working on a CUPS filter in C++ (g++ as compiler). The code is a authentication process and a only can release the job if the authentication is correct. If it's wrong, I have to cancel the print ...
0
votes
0answers
21 views

Apple Quartz print preview (of Firefox) under OS X without GUI scripting?

I wish: To execute the Preview function of the Print dialogue box in an application running on OS X 10.6.8; and To do so without resorting to GUI scripting. Is this possible? If so, how? ...
0
votes
1answer
210 views

window.print() CSS not loaded in print preview

I need to provide option to print a part of the webpage. This was implemented using the javascript window.print() answered by: Bill Paetzke. The pop up window opens up (this contains CSS style) and ...
0
votes
1answer
37 views

.NET Print Any File To XPS With File Name

I am trying to create method that prints any file to XPS using its default aplication, in my Windows forms app. This works fine, but I am unable to pass destination XPS path to the printer and open ...
0
votes
0answers
48 views

C# 4. Printing a dynamic page

I'm looking for the best solution to print a dynamic page. The page contains an order details, which mean every order includes different products and different customer- a dynamic page. I'm using ...
2
votes
1answer
53 views

Why do these two methods to determine the number of print columns behave differently?

With these Unicode ranges Unicode::GCString'scolumns returns the number of print columns while mbswidth from Text::CharWidth doesn't. To they behave differently because they use different databases? ...
0
votes
1answer
53 views

C# Can't print the right image size

I'm trying to make a program that will print an image file to the printer onto an A4 sized paper. (The image is scaled to A4) This is currently the code I'm using. Function.cs Image tmp; ...
0
votes
3answers
41 views

OPOS and Microsoft .NET, unable to run sample application

How can I fix this error? Source for the test application Am i missing something?
0
votes
1answer
30 views

Print a View without buttons

How can I print a View without showing the buttons on the printed paper? Edit: Currently my button simply does this: <input type="submit" value="Drucken" onclick=" window.print(); " /> ...
0
votes
3answers
39 views

Custom iOS Popover for Print Options

I am trying to create a multi-language Application where I can print a document. When Print button is pressed it shows a standard iOS popover with print options. But its in English and not in the ...
1
vote
1answer
36 views

Printing in a Ruby Thread while waiting for input generates weird output

So I was working in Ruby and the idea was to constantly reprint a set of strings over itself until a key is pressed. This is my code for that frame = "aaaa bbbb cccc dddd" thread = Thread.new do ...
0
votes
1answer
32 views

Print or echo a selected option in php, without a form

This is a shipping module, which allows you to choose store branches for local pickup. The branches are listed in a csv, not in a database. <?php if ( ($n > 1) || ($n2 > 1) ) { ...
0
votes
1answer
66 views

-CSS and Printing Web Pages, page-break-inside: avoid; - not working for me -

I am trying to have the contents of a web page print onto one page of paper. But, it is breaking the content into 2 pages, so I did some research here and see people recommending: <style ...
0
votes
0answers
33 views

Print Function using javax.print

I am using javax.print to print a portion of my page. ServiceUI.printDialog is causing Headless exception in Live but works fine in localhost. Is there any solution for the same?
1
vote
1answer
71 views

Printing a list array which uses threads to a text area in java

I am having problems storing and printing a list array which uses threads. I want to store the list of threads in a list array and print them to a text area where they can be sorted by a user. The ...
0
votes
3answers
49 views

what is the meaning of 1.3.6.1.2.1.43.11.1.1.5.1.1 3 ) in snmp?

I wrote an SNMP application to test the printer status. When I give 1.3.6.1.2.1.43.10.2.1.15 to check printer status I got this (1.3.6.1.2.1.43.11.1.1.5.1.1 3) as output. newVars = ...
0
votes
1answer
22 views

add pdf crop marks using ghostscript

I currently have a ghost script that downsample all the images in the input pdf file. I also want the output file to have crop marks or maybe draw a box around the edge of the document to serve as ...
0
votes
1answer
47 views

IE7 on XP render the media=“print” stylesheets

In my web page, I'm using 2 stylesheets : <link rel="stylesheet" href="css/screen-layout.css" media="screen" type="text/css" /> <link rel="stylesheet" href="css/print-layout.css" ...
1
vote
1answer
91 views

Setting a printer's margins programmatically in Delphi [closed]

I need to draw a graphic that spans multiple pages with no margins top nor bottom using Delphi 7. The manufacturer of the printer, Epson GP-C831, says they have removed the top and bottom margin of ...
4
votes
1answer
103 views
+200

Java printing - Enlarged printouts on a small number of printers

On some printers, for whatever reason, the printouts are automatically enlarged with what seems to be default settings when printing through the Java JVM (Java 7). This seems to be with older ...
0
votes
0answers
50 views

No Printers are installed in asp.net

I have completed my mini-project of printing a text file in asp.net. The project works well while I run it in my computer. But when I upload it, and then press the print button on my website, the ...
0
votes
0answers
38 views

Printing Arabic on receipt printer using jpos

I am trying to print Arabic characters on a receipt using jpos. I send the proper string to the printer but only question marks are being printed. Does anyone have experience with printing Arabic ...
0
votes
0answers
39 views

How to get iframe images to print as part of full document in IE

I have two IFRAMEs. Each IFRAME is loaded dynamically as the result of submitting a FORM. The result of each FORM submit is a dynamically generated jpeg image (Content-type: image/jpeg). The ...
0
votes
1answer
34 views

Win32 C++ PRINTER_INFO_2 attributes

I'm trying to access the friendly name attribute of the PRINTER_INFO_2 structure. But I simply don't know how to do it in C++. So the following code returns the names in Hexadecimals... int ...
-1
votes
2answers
58 views

Printing issue when iterating over lists [closed]

I'm iterating over a couple of lists and I have this printed output: John, 17, 1.79 John, 19, 1.83 John, 21, 1.85 Tom, 16, 1.77 Tom, 20, 1.79 Tom, 21, 1.79 Just for clarification, it's: name, age ...
0
votes
0answers
25 views

Printing files from a text list of file names

If I have a list of drawing numbers contained within excel an file as such, 1-02632-M-07502 0002/03 1-02632-M-07502 0003/02 1-02632-M-07502 0004/08 1-02632-M-07502 0005/02 1-02632-M-07502 0006/02 ...
1
vote
1answer
112 views

How to auto expand and print a TreeView

I created an application that goes out and scans every computer and populates a TreeView with Hardware, Software and updates/hotfixes information: The problem I’m having is with printing, how do ...
0
votes
1answer
22 views

Browser prints empty in all browsers on a specific page containing Google Map

I have a project, where a single page is causing problems. As the title says, when printing this page from the browsers print function, only the information from the top and header show, all the ...
1
vote
1answer
63 views

Java: Printing MS Access database using Desktop.print

I am trying to print my MS Access database using Desktop API. Here is my code public void PrintAll() { JFileChooser chooseFile = new JFileChooser(); int returnVal = ...
0
votes
0answers
53 views

Elements are not floating after a page break in print preview or print in Firefox(latest version)

I am trying to print multiple document formats, but for some reason in Firefox the format is messed up beyond the first page. I have floating elements and they align correctly in the first page but ...
0
votes
0answers
41 views

Android bluetooth printer test without bluetooth printer

I have printer which doesn't have Bluetooth. I want to test my code of Bluetooth printer support if my code support for Bluetooth or not . I have simple printer of HP . Is there anyway or third party ...
0
votes
0answers
22 views

HTML/CSS - How Do I set up 2 divs in a webpage to print on paper LANDSCAPE 11 by 8.5

I see similar posts here about printing - but none that fully explain what I need to do. I want to print a webpage to paper LANDSCAPE 11 by 8.5. I have 2 DIV's and am using trial and error to get the ...
0
votes
1answer
82 views

Handling number of copies print preview - print preview dialog box

I am using UltraPrintPreviewDialog from Infragistics PrintPreviewDialog1.Document.DocumentName = "Report"; PrintPreviewDialog1.Document.PrinterSettings =<<my printer settings>>; ...
1
vote
2answers
16 views

CSS box shadow is so dark when printed

i got a div with a blur shadow on it. i am a using the CSS code below: -webkit-box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, .4); box-shadow: 3px 3px 6px 1px rgba(0, 0, 0, .4); the problem is ...
-3
votes
3answers
64 views

how does len() within list[] work in Python? [closed]

I know how list within len works in python (I believe). I am doing this list exercise and it requires me to type the following code: wordList[len(wordList)-1] here is the code example: ...
0
votes
3answers
64 views

Printing from a list

This is an easier question then most. I'm new to the programming scene and could use some help. I'm trying to print the text below to a list of names specified by the user. The error I'm getting: ...
3
votes
1answer
47 views

Trying to get this display function to work

So I'm trying to get this code to draw a card, and then each time printcards in called it prints the previous card and the new card. Right now it it prints off one card and then another while I want ...
0
votes
1answer
39 views

Trigger Ctrl+P printing for a JQuery Modal Box through keyboard

I have a document which pops up on the site within a JQuery Modal Box. The document has a print button at the end which just prints the document in the Pop-Up Box. I am looking to find a solution ...
0
votes
0answers
37 views

How to print file from web

i have a question about how to print a generated file from a web server to local printer. The script will be based on exec(); php. The printer is not an open_printer, and use an own soft to send the ...

1 3 4 5 6 7 139