How to get startinfo.arguments in the called vb.net program?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bstraess
    New Member
    • Feb 2008
    • 1

    How to get startinfo.arguments in the called vb.net program?

    I wrote a program A and a program B.

    I start in program A the program B

    Code:
    Dim startInfo As New ProcessStartInfo
    
    startInfo.FileName = "\My Programs\A.exe"
    
    startInfo.Arguments = """blah blah"""
    
    Process.Start(startInfo)
    How can I get Argumentstring (hier: "blah blah" in program B?
    Last edited by acoder; May 12 '13, 03:25 PM. Reason: Please use [code][/code] tags when posting code
Working...