Click here to Skip to main content
15,885,874 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Gridview with template controls Pin
_mubashir8-May-07 1:29
_mubashir8-May-07 1:29 
GeneralRe: Gridview with template controls Pin
Colin Angus Mackay8-May-07 2:30
Colin Angus Mackay8-May-07 2:30 
AnswerRe: Gridview with template controls Pin
Chetan Ranpariya8-May-07 1:32
Chetan Ranpariya8-May-07 1:32 
QuestionIssues in loading images in Word Automation Pin
Sankara Narayana8-May-07 0:34
Sankara Narayana8-May-07 0:34 
QuestionExecute exe Pin
Rickey_Me7-May-07 23:57
Rickey_Me7-May-07 23:57 
AnswerRe: Execute exe Pin
Colin Angus Mackay8-May-07 0:15
Colin Angus Mackay8-May-07 0:15 
AnswerRe: Execute exe Pin
Rickey_Me8-May-07 1:36
Rickey_Me8-May-07 1:36 
GeneralRe: Execute exe Pin
_mubashir8-May-07 2:00
_mubashir8-May-07 2:00 
OK...
you can set input parameters using 'Arguments' property located in ProcessInfo.
e.g,
<br />
Dim pinfo As New System.Diagnostics.ProcessStartInfo<br />
pinfo.Arguments = "myagr1 myarg2 myarg3"<br />
pinfo.FileName = "C:\MyExe.exe"<br />


Now to read the output from the exe, you need to set

pinfo.RedirectStandardOutput = True

And read the output as follow,


<br />
Dim p As System.Diagnostics.Process<br />
p = p.Start(pinfo)<br />
p.WaitForWxit()<br />
Dim str as string = p.StandardOutput.ReadToEnd<br />


Hope it helps



Mubashir
Software Architect
Storan Technologies Inc, USA
Every job is a self portrait of the person who did it.

GeneralRe: Execute exe Pin
Sandeep Akhare8-May-07 2:16
Sandeep Akhare8-May-07 2:16 
GeneralRe: Execute exe Pin
Rickey_Me8-May-07 3:16
Rickey_Me8-May-07 3:16 
QuestionHow to Add Node in DataSet Pin
VenkataRamana.Gali7-May-07 23:43
VenkataRamana.Gali7-May-07 23:43 
GeneralRe: How to Add Node in DataSet Pin
VenkataRamana.Gali8-May-07 1:44
VenkataRamana.Gali8-May-07 1:44 
GeneralRe: How to Add Node in DataSet Pin
Colin Angus Mackay8-May-07 2:29
Colin Angus Mackay8-May-07 2:29 
Questionregarding compression Pin
reynardza7-May-07 23:38
reynardza7-May-07 23:38 
GeneralRe: regarding compression Pin
Chetan Ranpariya8-May-07 1:34
Chetan Ranpariya8-May-07 1:34 
GeneralRe: regarding compression Pin
Colin Angus Mackay8-May-07 2:28
Colin Angus Mackay8-May-07 2:28 
QuestionGridview column width Pin
Christer Claesson7-May-07 22:49
Christer Claesson7-May-07 22:49 
AnswerRe: Gridview column width Pin
enjoycrack7-May-07 22:54
enjoycrack7-May-07 22:54 
AnswerRe: Gridview column width Pin
mareers7-May-07 22:54
mareers7-May-07 22:54 
AnswerRe: Gridview column width Pin
Spunky Coder7-May-07 22:56
Spunky Coder7-May-07 22:56 
Questionjavascript function to call a class function... Pin
anujose7-May-07 22:20
anujose7-May-07 22:20 
AnswerRe: javascript function to call a class function... Pin
Christian Graus7-May-07 22:23
protectorChristian Graus7-May-07 22:23 
AnswerRe: javascript function to call a class function... Pin
Spunky Coder7-May-07 22:26
Spunky Coder7-May-07 22:26 
GeneralRe: javascript function to call a class function... Pin
anujose7-May-07 22:52
anujose7-May-07 22:52 
GeneralRe: javascript function to call a class function... Pin
Spunky Coder7-May-07 22:59
Spunky Coder7-May-07 22:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.