I am working with word I wanted to display particular range of word document to a Dialog that contains textbox but it is not displaying the images and shapes .how can i display tables,images and shapes in a textbox...
Thans & Regards
Srinath
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hemant SrivastavaPosted Jul 9, 2013, 1:59 PM
Then paste them into RichTextBox control as following way:
if (Clipboard.ContainsText())
{
string s = Clipboard.GetText();
richTextBox1.Paste();
}
if (Clipboard.ContainsImage())
{
Image s = Clipboard.GetImage();
richTextBox1.Paste();
}