S
Slava
WebForm button's action code (Works fine as Windows App):
Dim p As New System.Diagnostics.Process
p.StartInfo.Verb = "print"
p.StartInfo.FileName = "msPaint.exe" // any other software
p.StartInfo.UseShellExecute = True
p.StartInfo.CreateNoWindow = True
p.Start()
Raised Abnormal program termination error.
Nothing helps calc.exe, regedit.exe, notepad.exe,
msWord - starts fine. msPaint, AdobeReader,
WordPad.exe, .. crashed with the Subject message. What is
the reason???? Many developers are using this code and
nobody seems to be have problem like that - google found
nothing...
Thank you,
Slava Ilyin,
Arcadia
...
..
Dim p As New System.Diagnostics.Process
p.StartInfo.Verb = "print"
p.StartInfo.FileName = "msPaint.exe" // any other software
p.StartInfo.UseShellExecute = True
p.StartInfo.CreateNoWindow = True
p.Start()
Raised Abnormal program termination error.
Nothing helps calc.exe, regedit.exe, notepad.exe,
msWord - starts fine. msPaint, AdobeReader,
WordPad.exe, .. crashed with the Subject message. What is
the reason???? Many developers are using this code and
nobody seems to be have problem like that - google found
nothing...
Thank you,
Slava Ilyin,
Arcadia
...
..