VS 2008 hangs when using axFramerControl1.Open() -
03-30-2010
, 12:06 AM
from a form i open other which hosts a AxFramerControl. my code looks like:
formExc=new Form();
formExc.axFramerControl1.BeforeDocumentClosed += new
AxDSOFramer._DFramerCtlEvents_BeforeDocumentClosed EventHandler(ax.....);
string file="myExcel.xls";
object missingValue=Missing.Value;
formExc.axFramerControl1.Open(file, false,"Excel.Sheet",
missingValue,missingValue); //here it hangs
some one can help? |