This is probably simple.
I need to print a document when a checkbox is checked. I have all the information out of the grid (file name). I think the problem is that the files are on the server and this code won't work:
Is there a way to print a document that is on the server and print it on the clients machine
I also need to do something similar to this, but I need to start a download for documents that is checkbox.selected = true
Thanks,
Chuck
I need to print a document when a checkbox is checked. I have all the information out of the grid (file name). I think the problem is that the files are on the server and this code won't work:
Dim Print As New System.Diagnostics.ProcessStartInfo()Print.Verb = "print"Print.WindowStyle = ProcessWindowStyle.HiddenPrint.FileName = fullpathPrint.UseShellExecute = TrueSystem.Diagnostics.Process.Start(Print)Is there a way to print a document that is on the server and print it on the clients machine
I also need to do something similar to this, but I need to start a download for documents that is checkbox.selected = true
Thanks,
Chuck