DSOFramer and excel

  • Thread starter Thread starter anonc01
  • Start date Start date
A

anonc01

Hi group.
I am using the DSOFramer control (AxDSOFramer.AxFramerControl) to
display an excel document in my own Form, and it displays just fine.
Now how would i do anything useful in excel from my form, like read
cells, write to cells...and things like that ?
thanks
 
Call
m_Framer.ActiveDocument and cast to Excel workbook

Workbook wbk = (Workbook)m_Framer.ActiveDocument;
from the workbook you can get the application object, the cells etc.
quite straightforward from there,,,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top