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
how to open another application
Collapse
X
-
You can use below sample:Originally posted by raynehi 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
shell('c:\winnt \notepad.exe") -
I think this question was discussed Earler......Originally posted by raynehi 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. thanksComment
-
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
-
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
Comment