![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
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 |
#3
| |||
| |||
|
#4
| |||
| |||
|
|
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 |
#5
| |||
| |||
|
|
On 5/10/2010 6:24 PM, Patrick A wrote: 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() -- Mike |
#6
| |||
| |||
|
|
Isn't there a method that is able to open any path? (an application?) "Family Tree Mike" <FamilyTreeMike (AT) ThisOldHouse (DOT) com> schreef in bericht news:uBgZ3KJ8KHA.3880 (AT) TK2MSFTNGP04 (DOT) phx.gbl... On 5/10/2010 6:24 PM, Patrick A wrote: 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() -- Mike |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |