Linking to an executable VS 2008

S

SDS2

Hey,

I was wondering if i could create a program in Visual Studio 2008 with a
link to an executable of an application (like MS WORD) in it.

By pressing a button, the executable of the application should start.

I can't manage to find out the right code to do so.


Can anyone help me out?



Thanks in advance.

Stan
 
F

Family Tree Mike

Hey,

I was wondering if i could create a program in Visual Studio 2008 with a
link to an executable of an application (like MS WORD) in it.

By pressing a button, the executable of the application should start.

I can't manage to find out the right code to do so.


Can anyone help me out?



Thanks in advance.

Stan


Look at System.Diagnostics.Process.Start("some path to an exe");
 
P

Patrick A

Stan,

Do you want to open a file while you're at it?

Here's what I'm doing...not sure it's the best method.

Imports Microsoft.Office.Interop

Private Sub ReportsToolStripMenuItem_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
ReportsToolStripMenuItem.Click
Dim MyAccess As Access.Application
MyAccess = GetObject("P:\Production Resources\Legal55\Reports
\Timekeeper Reports.mdb", "Access.Application")
MyAccess.Visible = True
End Sub

Patrick
 
F

Family Tree Mike

Stan,

Do you want to open a file while you're at it?

Here's what I'm doing...not sure it's the best method.

Imports Microsoft.Office.Interop

Private Sub ReportsToolStripMenuItem_Click(ByVal sender As
System.Object, ByVal e As System.EventArgs) Handles
ReportsToolStripMenuItem.Click
Dim MyAccess As Access.Application
MyAccess = GetObject("P:\Production Resources\Legal55\Reports
\Timekeeper Reports.mdb", "Access.Application")
MyAccess.Visible = True
End Sub

Patrick

If you just want to launch access (or word) with a given file, then you
should use:

dim p as new Process()
p.StartInfo.FileName = "somefilename.mdb" ' or "somefilename.doc"
p.StartInfo.Verb = "Open"
p.Start()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top