Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Printing From Server ASP.NET

Reply
Thread Tools

Printing From Server ASP.NET

 
 
ryanp@ungerboeck.com
Guest
Posts: n/a
 
      01-26-2005
Printing From Server ASP.NET

Anyone have a good solution for easily printing files of different
types programmically... for example word documents, photoshop psd
files, jpeg's, xls documents, etc...


Is it possible to do this easily?

 
Reply With Quote
 
 
 
 
MWells
Guest
Posts: n/a
 
      01-27-2005
It's not... sexy... but many application support instant printing via a /p
command line param or via OLE automation. I'd generally avoid this on a
server but if it's an internal app with very low yield, it could do the
trick.


<> wrote in message
news: oups.com...
> Printing From Server ASP.NET
>
> Anyone have a good solution for easily printing files of different
> types programmically... for example word documents, photoshop psd
> files, jpeg's, xls documents, etc...
>
>
> Is it possible to do this easily?
>



 
Reply With Quote
 
 
 
 
ryanp@ungerboeck.com
Guest
Posts: n/a
 
      01-27-2005
Thanks for the reply. I think I should go a little more in detail about
my problem. I have a .html file and I would like to print it without
using the print dialog box.(i.e. double click on filepath and print
straight to printer) Here is my code thus farin vb.net)

Dim p As New Process
Dim FilePath as string

p.StartInfo.FileName = FilePath
p.StartInfo.Verb = "print"
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
p.StartInfo.UseShellExecute = True
p.Start()

This Almost does the trick. The problem is that it keeps prompting me
with the print dialog box. Is there a way around this? Maybe I don't
have a property on my machine set correctly? It is probably a simple
solution, any suggestions or insight will be very much appreciated.
Thanks.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 2 11-27-2010 12:12 PM
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 0 08-21-2007 05:52 AM
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 0 08-21-2007 05:50 AM
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 0 08-21-2007 05:28 AM
brochure printing,online yearbook,printing,books printing,publishing elie Computer Support 0 08-18-2007 10:11 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57