Hey!
I'm starting to work with VB 2005.
I've got the design thing figured out, but I'm making myself a little APP that will boot up ANY applicaation that I desire.
When I press a button, it will launch: Simple.
Anyone Can Help..?
Visual Basic EASY help
Code: Select all
Shell(Application Path)
ok, so, that's perfect.
Where is the file path?
like...C://Program Files/ece/ecsw/ec?
I want all the apps INCLUDED in the application
EDIT: I got this from a tutorial here:
What's the directory:: IF I wanted all the applications included in the program, where would the dir be? where do I put the applications?
Where is the file path?
like...C://Program Files/ece/ecsw/ec?
I want all the apps INCLUDED in the application
EDIT: I got this from a tutorial here:
Code: Select all
Process.Start("directory it will be in.exe")
I'm not sure about VB2005, but in VB6 it was like this:
Dothalo is an example, but App.Path is what you would want, so it would be wherever the Application is, and then Apps directory, then DotHalo.exe
Code: Select all
Shell(App.Path & "\Apps\DotHalo.exe")
Ok, HUGE goodness 
I've got a button setup for DotHalo!
I've got the following code:
I've got the dir's all lined up, NO problems there, but it's not executing dothalo.
I want it to launch from my VB .exe.
Any suggestions :\?
I can't get this working.
Correct my code?

I've got a button setup for DotHalo!

I've got the following code:
Code: Select all
Process.Start("/apps/dothalo/DotHalo.exe")
I want it to launch from my VB .exe.
Any suggestions :\?
I can't get this working.
Correct my code?
w...what?
Here is my delemia:
I have a VB .exe file I just made, which has a button linking to DotHalo.
Here is my code:
so, when the user clicks the button, it starts up the application, DotHalo. However, when Itried this out, it didn't work, giving me an error. I checked my dir, and everything is good.
My .exe Dir:
- = Folder
:::::::::::::::::::::::::::::::::::::
vbproject.exe
-apps
--dothalo
---DotHalo.exe
:::::::::::::::::::::::::::::::::::::
Can someone help me out?
the code again:
Here is my delemia:
I have a VB .exe file I just made, which has a button linking to DotHalo.
Here is my code:
Code: Select all
Process.Start("/apps/dothalo/DotHalo.exe")
My .exe Dir:
- = Folder
:::::::::::::::::::::::::::::::::::::
vbproject.exe
-apps
--dothalo
---DotHalo.exe
:::::::::::::::::::::::::::::::::::::
Can someone help me out?
the code again:
Code: Select all
Process.Start("/apps/dothalo/DotHalo.exe")