|
-
Mar 25th, 2000, 01:00 AM
#1
Thread Starter
Hyperactive Member
Hi,
Is there any way I can open an App into a form of my VB.exe? At present I open the App by clicking a command button. The App is in a fixed location.
I use this code:
Private Sub CmdAnimations_Click()
Dim shellProgram As String
Dim res
shellProgram = App.Path & "\Part 1\cycling.exe"
res = Shell(shellProgram, vbNormalFocus)
End Sub
I was hoping that, instead of opening the App and having it running outside my VB program, I could have it running somewhere in my form. Is this possible?
Any help would be greatly appreciated!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|