how to open another application

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rayne
    New Member
    • Feb 2007
    • 9

    #1

    how to open another application

    hi pls help me on how to open another application by clicking a button. What I want to do is when I click a button, another application will open. thanks
  • mukesh2706
    New Member
    • Feb 2007
    • 2

    #2
    Originally posted by rayne
    hi pls help me on how to open another application by clicking a button. What I want to do is when I click a button, another application will open. thanks
    You can use below sample:


    shell('c:\winnt \notepad.exe")

    Comment

    • hariharanmca
      Top Contributor
      • Dec 2006
      • 1977

      #3
      Originally posted by rayne
      hi pls help me on how to open another application by clicking a button. What I want to do is when I click a button, another application will open. thanks
      I think this question was discussed Earler......

      Comment

      • Musicguy208
        New Member
        • Jan 2007
        • 4

        #4
        For me, it would not work due to network and computer restrictions for my school. Just check on that if it that is your situation.

        Comment

        • knychtell
          New Member
          • Jan 2007
          • 66

          #5
          may be you might just need to declare each variable,

          if you already have a form running then,

          in button_click event add this code:

          dim x as new form2
          x.show

          if you would like to hide your current form and get focus only to the called one,

          x.show
          me.hide

          hope this would help ya...

          Comment

          Working...