Hi,
I am working on generating a document for printing. It should use a specific TTF font and everything must be printed with vector graphics (for quality). Some of the text should be replaced automatically (e.g. current time). Also it should include a custom-generated EPS image with a chart.
Ideally I would like to have some kind of do...
Hello All--
I have the following code:
using System;
using System.Diagnostics;
using System.IO;
using PdfSharp.Pdf.Printing;
namespace PrintPdfFile
{
class Program
{
[STAThread]
static void Main(string[] args)
{
// Set Acrobat Reader EXE, e.g.:
PdfFilePrinter.AdobeReaderPath = @"C:\\Documents and Setting...
Is there a way of sending directly an "ESC" coded string to an Epson Matrix Printer connected on a USB using Java. I've tried this one using the LPT1 port successfully. However, majority of our clients are now using USB cables instead of the old parellel cables. The main problem I have is how to open the particulary USB where the printer...
Is there a way to write some code that can 'talk' to printer in order to get some basic info about it's status - what I'm really interested in doing is finding out if it has run out of paper or has a paper jam - things of that nature.
Should I use System.Management library for this type of stuff?
PS - It would also be handy to know how ...
We've got 4 printers with identical trays/paper configured in a pool. Multiple jobs can be submitted and it will kind of round-robin send the jobs to the printers per whichever one is idle. That works good, but.. We're working on a new application that is web-based and produces PDF output files. A "set" of data might involve 3 different ...
Software: Microsoft Access 2007 SP2
Database File Version: Access 2000
I have an access program that I inherited from a previous employee. It uses forms for reports and since I don't have much experience in access I have continued to do this. I have created a copy of the program for another project and modified it to suit.
I am h...
Hi, I need to know what language is the one on this post???
Print a barcode to a Intermec PB20 via the LinePrinter API
I know its a language from Intermec, although not IPL, can somebody tell me what's the name of this language, and possibly, the URL to a nice manual??
thank you!
I'm sorry, but stackoverflow is not letting me post a ...
I am trying to create colored headers and footers when printing a JTable. Specifically, I am looking at getPrintable() in javax.swing.JTable, but MessageFormat does not give me the option to specify the color of the header or footer.
How can I do it?
clarification
I am interested in setting the header/footers while printing. For exam...
Ideally, I would connect an ingenico/verifone terminal to the net via an ethernet cable, the terminal will run exclusively a program that I wrote. This program would poll a webservice, beep when it detects some kind of info, wait for somebodys input, transmit said info back to the webservice and print a ticket.
Is this possible with ter...
When I write to the windows form directly it looks fine, when I print to the printer from the print preview it looks fine. However the print preview itself is not rendering the barcode text with the barcode font.
Public Class frmPrintPreview
Private Const testString1 As String = "*A1C1S1B1*"
Private Const testString2 As String = "*A99C9...
I'm printing a complicated swing application UI to a physical printer via an Airport. I've got Mac & windows machines both printing to the same printer. Printing from the Mac looks great. Printing from windows looks far from great - everything is very pixelated, including fonts and graph lines.
Some digging around reveals that the av...
I have a single window, WinForms app (with multiple text boxes) and I need to print the entire form once a 'Print" button is clicked. I have looked up examples to do this but I cannot find anything that will print the entire form including all text boxes. Is there a simple way to do this?
...
Vista introduced a new type of rendering for printers, Client-Side rendering.link text
From the Printer Interface DLL, is it possible to determine if the printer is set to CSR or SSR?
...
I'm trying to find a basic example, tutorial, or blog post on how to write a printer port monitor. I downloaded the Windows DDK and dug through localmon, but it appears that this sample is much more complex than just the nuts and bolts basics and from my understanding it is a bit different than an OEM port monitor because of how it hand...
What font that can be set in a .Net application for fast printing.
...
I'm writing a plug-in for a piece of software that takes a big collection of items and pops them into HTML in a WebView in Cocoa (which uses WebKit as its renderer, so basically you can assume this HTML file is being opened in Safari).
The DIVs it makes are of dynamic height, but they don't vary too much. They're usually around 200px. A...
Hi all.
I have a very odd problem when printing a test page after installing the printer on the network. That all works very good and when running the code As Administrator... the test page is also printed. But when I run the program "normally" I get an "Access is denied".
So here is the code:
// get the printer
string path = "Win32_Pr...
In Mac OS X: Is there a programmatic way to detect if the selected printer is out of paper?
...
I have following printing code:
void Print(QPrinter *printer)
{
QPainter q(printer);
q.setRenderHint(QPainter::HighQualityAntialiasing, true);
q.setPen(QPen(QColor("red")));
q.drawRect(printer->pageRect());
q.drawLine(printer->pageRect().topRight(), printer->pageRect().bottomLeft());
q.setPen(QPen(QColor("blue"...
We have an ASP.NET application that uses the Infragistics WebSchedule control to display appointments etc in the same manner as Outlook. The problem we have is that the customer wants to be able to print the page as it appears on the screen - which the control itself does not appear to support directly.
We have developed a Crystal Repor...