Hi, All

How do can i start and application which takes in two put parameter via command line. I have an application which requires two input paramenters at start up and i would like to use process.start() to initiate this process whilst passing in to the process the two input parameters.

the process i want to start is eg.

public Report(string ReportPath, string SummaryPath)

and i would like to start Report.exe from my form class using process.start(c:\Report.exe plus the two input parameters). All my attemps have failed I will appreciate any help. Thanks in advance.