Here is the solution of printing PDF file by giving printer name
Dim pathToExecutable As String = “AcroRd32.exe”
Dim sReport = “C:Test.PDF” ‘Complete name/path of PDF file
Dim SPrinter = “HP Officejet 5600 seriese” ‘Name Of printer
Dim starter [...]
Archive for April, 2007
Print PDF file in VB.Net by giving Printer Name
Posted in .NET on April 25, 2007 | 42 Comments »
ASP.NET 1.1 Interview Questions
Posted in Interview Questions for .Net on April 3, 2007 | 16 Comments »
1.What is the difference between Response.Write() and Response.Output.Write()?
Ans.Response.Output.Write() allows you to write formatted output.
2.What is the difference between Server.Transfer and Response.Redirect?
Ans.Server.Transfer transfers page processing from one page directly to the next page without making a round-trip back to the client’s browser.This provides a faster response with a little less overhead on the server.Server.Transfer does not [...]