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,,,
 
Back
Top