P
prince via DotNetMonster.com
hi! i used the following code to print files like pdf and .doc:
Dim x As New ProcessStartInfo
x.UseShellExecute = True
x.Verb = "print"
x.WindowStyle = ProcessWindowStyle.Hidden
x.FileName = file_name
Process.Start(x)
is there a way to count the number of pages of the file being printed?
can you share some codes in vb.net or links regaring this? tnx a lot..
Dim x As New ProcessStartInfo
x.UseShellExecute = True
x.Verb = "print"
x.WindowStyle = ProcessWindowStyle.Hidden
x.FileName = file_name
Process.Start(x)
is there a way to count the number of pages of the file being printed?
can you share some codes in vb.net or links regaring this? tnx a lot..