Hi all
I need help. I have written 3 different exe files. What I would like to know is how do I link them to run from one package .
Thank you very much.
Nicky

Recommended Answers

All 4 Replies

Usually this is done by building yet another exe program. That one basically is a menu of some kind, and when you click the selected option, it launches the exe that user wants to choose.

Use this Code below :-

Private Sub Command1_Click()
Dim RetVal
RetVal = Shell("D:\Project\Project1.exe", 1)
End Sub

You should post your code in code tags, like so:
[code=vb] your example code here

[/code] ;)

Use this Code below :-

Private Sub Command1_Click()
Dim RetVal
RetVal = Shell("D:\Project\Project1.exe", 1)
End Sub

Hi

thank you. i will try it. have a wonderful day.

nicky

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.