J
Jed
Now,I create a button to get the word and display it in my program.But when
there is a table in the word ,after I click the button ,I will see the
content in my program without the table.
How can I get the content with table?
My code is :
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;
who can help me ?Thanks!!!
there is a table in the word ,after I click the button ,I will see the
content in my program without the table.
How can I get the content with table?
My code is :
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;
who can help me ?Thanks!!!