J
Jed
I want to get WORD content like this
"1.the test
2.hello
3.good"
I used code like this
"oDoc=new Word.Document();
string strContent = "";
strContent = oDoc.Content.Text;"
But what I get is
"the test
hello
good"
it lost"1.2.3.",how could I do to get
what I want?Thanks.
"1.the test
2.hello
3.good"
I used code like this
"oDoc=new Word.Document();
string strContent = "";
strContent = oDoc.Content.Text;"
But what I get is
"the test
hello
good"
it lost"1.2.3.",how could I do to get
what I want?Thanks.