Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
76 views

How do I generate a preview in the printdialog box in vb.net. In the frame where the preview would appear, the message "This app doesn't support print preview' appears. (Pictured below) I use ...
E Bell's user avatar
  • 21
0 votes
0 answers
76 views

I have the following datatable: rowNR L1 L2 L3 L4 row1 Listing1 Listing2 Listing3 Listing4 row2 Listing1 Listing2 Listing3 Listing4 row3 Listing1 Listing2 Listing3 Listing4 row4 Listing1 Listing2 ...
MyAccount's user avatar
1 vote
1 answer
391 views

In the Edge browser, I am opening the file specified in the src of an iframe as shown below. However, when trying to save it as a PDF, the file name appears correctly in the Chrome browser, but in the ...
Resul Bekir Şahin's user avatar
2 votes
0 answers
959 views

We are struggling with the new print preview with windows 11. Before the print we are changing some settings based on some configuration of our program. This settings are applied to the old print ...
Alessandro's user avatar
0 votes
1 answer
306 views

I'm programming for a friend to help them print all files in a folder (after filtering them). I've gotten to the point where I am able to select a folder, filter the files according to extension, and ...
AppleIT's user avatar
0 votes
1 answer
175 views

my app has a DataGridView where all selected files get listed and added to a class which is the datasource of the DGV. public partial class Form1 : Form { BindingList<Datei> dateienList =...
LFLJM's user avatar
  • 85
0 votes
0 answers
545 views

There are 3 printers in the printer list, but is there a way to hide or disable one of them when I call the printdialog? For example, how to disable or hide the printers which names start with "...
SuperBerry's user avatar
  • 1,353
0 votes
0 answers
295 views

This code works well printing to default printer, but how I can do to display the Print Dialog to allow the user to select any printer? var report = new ReportDocument(); report.Load(System.Windows....
user3154288's user avatar
-2 votes
1 answer
1k views

I use this code to print pdf to default printer. public static void PrintPDFByProcess() { try { using (Process p = new Process()) { p....
bigtheo's user avatar
  • 670
0 votes
1 answer
229 views

Is it possible to set focus to the OK button in the TPrintDialog when it opens?
Bob Penoyer's user avatar
0 votes
1 answer
1k views

I'm trying to print a external pdf file with printdialog options but the file is printed with predeterminated printer config Dim result As DialogResult = PrintDialog1.ShowDialog() If (result = ...
David bbb's user avatar
0 votes
0 answers
76 views

on a Citrix server we have a Java SE application that brings a v6 JRE, and a few other applications such as MS Office. Now we experience that the Java application takes a significant time to show the ...
Andy's user avatar
  • 1
0 votes
1 answer
368 views

I am trying to print content using print dialog box in electron and angular.Here is code for print the content this.webview.nativeElement.getWebContents().print({}, (success, errorType) => { ...
user avatar
2 votes
0 answers
340 views

I have this error that I can't fix and I reformatted this question after I got some testing done. I have a code that works in my application if I am running the program with the same user I am logged ...
Muhannad's user avatar
  • 455
2 votes
0 answers
434 views

Introduction I have an application with a MainWindow (MVVM) consisting of a TabViewer with 5 Tabs. Each Tab contains a ScrollViewer, a Grid and several UserControls (MVC) within the Grid. Xaml of my ...
Azzarrel's user avatar
  • 593
0 votes
0 answers
218 views

I have an app that runs continuously. Users can open things like 'Options' or 'Print' etc but often walk away leaving them unused and open. Hence I now have timeouts on everything but the PrintDialog ...
Malcom's user avatar
  • 61
4 votes
0 answers
486 views

I've written code for print the datagridview. But when I set the range of using "AllowSomePages = true" it still prints all the pages. Here is the code I've written for printing. Already referred ...
root's user avatar
  • 41
0 votes
0 answers
79 views

that drives me nuts. I try to silent print a ribbon (1000 mm height, 150 mm width). The content is a Canvas containing a formatted Text. If I use "Microsoft Print To PDF" it works and looks OK. When ...
user1857519's user avatar
0 votes
3 answers
190 views

I have to print all pictures stored in a directory. Users' request is that the print preview dialog should be displayed so that they can choose the page arrangement (see picture). I tried to use the ...
mr anto's user avatar
  • 23
0 votes
1 answer
259 views

I have a printer that needs to have different paper size than the default size of the driver. This is configured correctly in Windows. When I call the PrintDialog and select this printer and is not ...
Xaphann's user avatar
  • 3,757
0 votes
1 answer
302 views

I'm trying to print an image in the center of the page but I can't come up with any idea. System.Windows.Point printLocation = new System.Windows.Point(50,50); printLocation.X = pageWidth - 50 / 2; ...
Juan Carlos Rodriguez's user avatar
-2 votes
2 answers
7k views

I am currently using the below code for printing a pdf file from database. I am using pdfium for viewing the pdf file and for printing I use PrintDialog box. I can print the pdf file in a single copy ...
Aopgatimam's user avatar
0 votes
1 answer
3k views

I have a simple PrintDialog (code below). My application is a tray application, meaning it has no windows in it and only contains a few simple right click options from the tray icon. Given a file ...
theostorm's user avatar
2 votes
0 answers
1k views

I use c# I need to print DOCX, I send the docx to server , convert it to XPS and return XPS as memory stream. convert docx by aspose. At client I use next code: System.IO.Stream docStream = ...any ...
Leonid's user avatar
  • 81
1 vote
0 answers
2k views

Using .NET 3.5 and 4.5 I'm able to print a simple canvas with a red rectangle in the centre with no problems using PrintDialog.PrintVisual(). These print jobs are sent to CutePDF and a standard ...
Murphybro2's user avatar
  • 2,861