how to link another application exe in vb 6.0

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Vishcool
    New Member
    • May 2007
    • 1

    how to link another application exe in vb 6.0

    hi all,
    can any one please tell me how is the way to link other vb exe application with a radio box
    such as
    if radio box is clicked then other vb or vb.net application should run
  • MMcCarthy
    Recognized Expert MVP
    • Aug 2006
    • 14387

    #2
    You have posted this question in the Articles section. I am moving it to the Visual Basic forum.

    ADMIN

    Comment

    • TRScheel
      Recognized Expert Contributor
      • Apr 2007
      • 638

      #3
      Originally posted by Vishcool
      hi all,
      can any one please tell me how is the way to link other vb exe application with a radio box
      such as
      if radio box is clicked then other vb or vb.net application should run
      I believe you are looking for

      Code:
      System.Diagnostics.Process.Start("ProgramLocation")

      Comment

      Working...