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!