G
Guest
I'm writing a VB Winforms app, Dot Net 2.0. I simply want to be able to
click on a link (within a datagridview column) and call up docs in MS Word.
I have added a reference to the Microsoft Office 11 Object library.
In my code I have added the lines:
Dim x As New Microsoft.Office.Interop.Word.Application
x.Open(FileName:=s, ReadOnly:=True)
When it isn't complaining about the file not being found, it's returning the
following error message: Public member 'Open' on type 'ApplicationClass' not
found.
I've tried a number of variations on the above open call but I really don't
have any experience working with this lib up to now. Suggestions?
click on a link (within a datagridview column) and call up docs in MS Word.
I have added a reference to the Microsoft Office 11 Object library.
In my code I have added the lines:
Dim x As New Microsoft.Office.Interop.Word.Application
x.Open(FileName:=s, ReadOnly:=True)
When it isn't complaining about the file not being found, it's returning the
following error message: Public member 'Open' on type 'ApplicationClass' not
found.
I've tried a number of variations on the above open call but I really don't
have any experience working with this lib up to now. Suggestions?