embed Excel file in Windows Form

  • Thread starter Thread starter Marc Miller
  • Start date Start date
M

Marc Miller

Does anyone know of a way to display an existing .xls file
in a windows form? Or even references to articles showing how
to do this?

Is it possible?

TIA,
m. miller
 
Does anyone know of a way to display an existing .xls file
in a windows form? Or even references to articles showing how
to do this?

Is it possible?

TIA,
m. miller

You can display it (and most other file types) in a Web Browser Control
added to the form
 
¤ Does anyone know of a way to display an existing .xls file
¤ in a windows form? Or even references to articles showing how
¤ to do this?
¤
¤ Is it possible?

Embedding the document is not supported. You need to read it from a file and display it using either
the DSOFramer control or the aforementioned WebBrowser control.

SAMPLE: Visual C++ ActiveX Control for Hosting Office Documents in Visual Basic or HTML
http://support.microsoft.com/default.aspx?scid=kb;en-us;311765


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
Back
Top