integrating MS Word into my application!

  • Thread starter Thread starter Kam
  • Start date Start date
K

Kam

Hi everyone,

I'm trying to find out how to integrate an office application such as MS
Excel 2002, MS Word into my application ( i.e. Add-In link in the tool bar
of my application )

so when i load my application, i would have an instance of MS Word for
example in one of the panels!

Im developing in VS.NET2002 using C#. Any idea of how to go about doing it?

Any help would be very much appreciated.

Regards,
Kam
 
You need to use automation to automate MS office. Check MSDN for office
automation

Fitim Skenderi
 
Hello Kam!

I'm trying to find out how to integrate an office application such as MS
Excel 2002, MS Word into my application ( i.e. Add-In link in the tool bar
of my application )

There are a number of office controls (COM controls) out there. Here are a
couple of suggestions

An article written by Mr. Matthias Hänel and it's called "Word Control
for .NET" You will find it here:
http://www.codeproject.com/cs/miscctrl/winwordcontrol.asp#xx412961xx

Q311765 - SAMPLE: VC ActiveX Control for Hosting Office Documents in VB/IE
http://support.microsoft.com/support/kb/articles/q311/7/65.asp

Q243058 - HOWTO: Use the WebBrowser Control to Open an Office Document
http://support.microsoft.com/support/kb/articles/q243/0/58.asp

// Anders
 
Back
Top