J
Jed
When I want to get the table in the word ,I used codes like this:
oWordApplic = new Word.ApplicationClass();
oDoc=new Word.Document();
string strContent = "";
Open(strFilePath);
object x="3";
oDoc.ConvertNumbersToText (ref x);
strContent = oDoc.Content .Text ;
return strContent;
But I only can get the content which in the table ,it means "table lost".
How can I get what I want?
Thanks a lot !
oWordApplic = new Word.ApplicationClass();
oDoc=new Word.Document();
string strContent = "";
Open(strFilePath);
object x="3";
oDoc.ConvertNumbersToText (ref x);
strContent = oDoc.Content .Text ;
return strContent;
But I only can get the content which in the table ,it means "table lost".
How can I get what I want?
Thanks a lot !