Exporting Parameters to C# EXE

Hello,

I need to pass a small number of parameters (fields) from my Lotus Notes app to another program (a C# EXE). My app currently launches the EXE with:

Dim result As Integer

result = Shell(“C:\AWDmini.exe”, 1)

Using LotusScript, can anyone recommend the best method or approach? All suggestions welcomed!

Thanks.

Subject: Exporting Parameters to C# EXE

Did you try this ?

result = Shell(“C:\AWDmini.exe param1”, 1)

where param1 is your parameter.

Cannot test it right now but it should work.

Renaud

Subject: RE: Exporting Parameters to C# EXE

That works, many thanks for the quick response.