how run msword 2003 in vb.net
-
hello guys my main problem of my application is that i cannot the load the file which is from ms word 2003..ok to be more understandable first i have a textbox that will get the path of the file like for example "c;\sample.doc" then i have button there that will show the msword.exe the problem is that it doesnt work...can you fix this code... ..Private Sub btnshowfile_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnshowfile.Click Dim fLocation As String = txtfilelocation.Text Dim fType As String Dim iOpen As Integer If txtfilelocation.Text = fLocation Then End If fType = Mid(fLocation, Len(fLocation) - 2, 3) Select Case fType Case "DOC", "doc" iOpen = Shell("C:\Program Files\Microsoft Office\Office10\winword.exe " & Chr(34) & fLocation & Chr(34), AppWinStyle.NormalFocus) end select end sub.. thats my code...it doesnt load anything in 2003 office please help.... thanks in advance
-
hello guys my main problem of my application is that i cannot the load the file which is from ms word 2003..ok to be more understandable first i have a textbox that will get the path of the file like for example "c;\sample.doc" then i have button there that will show the msword.exe the problem is that it doesnt work...can you fix this code... ..Private Sub btnshowfile_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnshowfile.Click Dim fLocation As String = txtfilelocation.Text Dim fType As String Dim iOpen As Integer If txtfilelocation.Text = fLocation Then End If fType = Mid(fLocation, Len(fLocation) - 2, 3) Select Case fType Case "DOC", "doc" iOpen = Shell("C:\Program Files\Microsoft Office\Office10\winword.exe " & Chr(34) & fLocation & Chr(34), AppWinStyle.NormalFocus) end select end sub.. thats my code...it doesnt load anything in 2003 office please help.... thanks in advance
This is one of easy ways:) You can open files with there associated applications like this
System.Diagnostics.Process.Start("C:\YourFile.doc")
Chatura Dilan SC Java Programmer