Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
get file not found have changed file name numerous times to no avail.
reloaded office 2000 code is good does anyone have an idea as to why it wont find file. this is code I am useing files are in folder opens yearly fine copied code changed file name and no matter wont find file Stumped Private Sub optionbutton35_Click() OptionButton35.Value = False Dim Word As New Word.Application Dim WordDoc As Word.Document Word.Visible = True Set WordDoc = Word.Documents.Open("\parade\yearly.doc") End Sub Private Sub Optionbutton36_Click() OptionButton36.Value = False Dim Word As New Word.Application Dim WordDoc As Word.Document Word.Visible = True Set WordDoc = Word.Documents.Open("\parade\this.doc") End Sub |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
went in and copied file from properties still says is not valid. Have noticed
seems to open word but not the file. after debug word is open with a brown screen this is what I copied from properties. Set doc = wd.Documents.Open _ ("C:\Documents and Settings\Curtiss A. Greer\Desktop\2007\2007\Parade\next.doc") "Don Guillett" wrote: try it this way Dim wd As Word.Application Dim doc As Word.Document Set wd = New Word.Application wd.Visible = True Set doc = wd.Documents.Open("C:\yourfolder\yourdoc.doc") -- Don Guillett Microsoft MVP Excel SalesAid Software "Curt" wrote in message ... get file not found have changed file name numerous times to no avail. reloaded office 2000 code is good does anyone have an idea as to why it wont find file. this is code I am useing files are in folder opens yearly fine copied code changed file name and no matter wont find file Stumped Private Sub optionbutton35_Click() OptionButton35.Value = False Dim Word As New Word.Application Dim WordDoc As Word.Document Word.Visible = True Set WordDoc = Word.Documents.Open("\parade\yearly.doc") End Sub Private Sub Optionbutton36_Click() OptionButton36.Value = False Dim Word As New Word.Application Dim WordDoc As Word.Document Word.Visible = True Set WordDoc = Word.Documents.Open("\parade\this.doc") End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Open File - Need an warning to appear if file cannnot be found | Excel Programming | |||
How to change closed file name - Error: file not found | Excel Programming | |||
File Not Found menu pops up after I open a file | Excel Discussion (Misc queries) | |||
How do I reference external data from a file, file name found in . | Excel Discussion (Misc queries) | |||
'File not found' | Excel Programming |