K
Kathy Burke
Hi, I'm trying to open an executable file from intranet asp.net page in
..Net 1.1. The following code fires but hangs after processing for about
45 seconds (no error message, just hangs).
Dim p As System.Diagnostics.Process = New Process()
p.StartInfo.RedirectStandardOutput = False
p.StartInfo.FileName = "C:\Program Files\Citrix\ICA Client\wfica32.exe"
p.StartInfo.Arguments = "vbciq.ica"
p.StartInfo.UseShellExecute = False 'also tried True
p.Start()
p.WaitForExit()
p.Dispose()
New to the Process class, not even sure if this is how I should go about
this. The .ica (Citrix) file should open a DOS command window...don't
know where to go from here.
Any help appreciated.
Kathy
..Net 1.1. The following code fires but hangs after processing for about
45 seconds (no error message, just hangs).
Dim p As System.Diagnostics.Process = New Process()
p.StartInfo.RedirectStandardOutput = False
p.StartInfo.FileName = "C:\Program Files\Citrix\ICA Client\wfica32.exe"
p.StartInfo.Arguments = "vbciq.ica"
p.StartInfo.UseShellExecute = False 'also tried True
p.Start()
p.WaitForExit()
p.Dispose()
New to the Process class, not even sure if this is how I should go about
this. The .ica (Citrix) file should open a DOS command window...don't
know where to go from here.
Any help appreciated.
Kathy