Insert Symbol into Word Table using VB .Net

T

Taras

I need to insert a symbol (ie. Wingdings 2, -4014) into a word table cell
I can insert the symbol into the document using
With wdDOC
.Range.InsertSymbol(-4104, "Wingdings 2", True)
End with

I know I can insert text in a cell using wdTbl.Cell(nRow,nCol).Range.Text =
....

But when I try the .InsertSymbol with any variation of a reference to the
cell I receive the following error message "This method or property is not
available because the object does not refer to simple range or selection."

How can I do the .InsertSymbol into a word table cell?
Alternatively, how can I set a string constant to = Font = Wingdings 2,
Character = -4014

TIA
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top