Run External Programs

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mats edvinsson
    New Member
    • Sep 2007
    • 5

    Run External Programs

    i have been up to creating an shortcut application but i dont know how to run external programs on a double click of an image.

    i have put the image out and added a double click action so all i need now is a piece of code that run an external program
  • kadghar
    Recognized Expert Top Contributor
    • Apr 2007
    • 1302

    #2
    Originally posted by mats edvinsson
    i have been up to creating an shortcut application but i dont know how to run external programs on a double click of an image.

    i have put the image out and added a double click action so all i need now is a piece of code that run an external program
    have you tried with Shell? something like:

    dim a
    a = shell("c:\myapp lication.exe",3 )

    Comment

    • mats edvinsson
      New Member
      • Sep 2007
      • 5

      #3
      Originally posted by kadghar
      have you tried with Shell? something like:

      dim a
      a = shell("c:\myapp lication.exe",3 )
      yeah it worked thanx a lot.
      it was exactly what i needed

      Comment

      Working...