Menu
  • HOME
  • TAGS

Is there a way to know when user click ok button on print dialog initiated by self.print using PHP?

php,printdialog

This isn't something that would likely be able to be accomplished through PHP. PHP is a server language and the browser doesn't typically send anything to the server when it prints. You might be able to accomplish this with javascript or a browser plug-in but it would probably be hard...

Print several BitmapSources with different page orientations

c#,printing,landscape-portrait,printdialog,bitmapsource

I can't leave comments yet since I only have 11 rep, but I'll try to give your the information I have which might help. A couple things: it may depend on how you're creating the FixedDocument and generating FixedPages. If you're first generating a FixedPage and then adding it to...

PrintTicket provider failed to bind to printer. Win32 error: The printer name is invalid

c#,wpf,winapi,printing,printdialog

I created another blank project, with just the code from Microsoft, and it worked fine. I started comparing the two project settings and they were identical. In the end it turned out to be the following setting causing the problem: Debug->Exceptions...-Common Language Runtime Exceptions I forgot I had it on...

Add Custom Button in Print Dialog box

c#,wpf,printdialog

You cant add custom button on Print Dialog Box, but you can try to create your own Print Dialog Box.

Can not Print in WPF

c#,wpf,printdialog

The rough working var printDoc = new PrintDocument() var dlg = new PrintDialog() If(dlg.ShowDialog() == DialogResult.OK) { printDoc.Document = [doc to print] printDoc.Setting = dlg.settings PrintDoc.print() } ...

How do I print a blank page?

c#,.net,wpf,printing,printdialog

Well, your question is a bit broad because if what you mean is "print just a blank page" then that will mean something different than "print one blank page of many pages". Probably the best way is to use a paginator and for whatever page want blank, simply have a...