G
Greg Maxey
This is an ongoing issue in the Document Management group and I wanted
to bring it up here in hopes of getting the right people engaged.
If I insert any one of the ten "arrow" symbols using
Insert>Symbol>Symbols>Font Symbol and run the following code with any
one of theses symbols selected it returns a value of 40 and inserts a
left side paren symbol:
Sub Test()
Dim pAsc As Long
pAsc = Asc(Selection)
Selection.Range.InsertAfter Chr(pAsc)
End Sub
Why does this happen?
The question in the Documanagement group is how do you get the correct
ASCII code for symbols?
Thanks.
to bring it up here in hopes of getting the right people engaged.
If I insert any one of the ten "arrow" symbols using
Insert>Symbol>Symbols>Font Symbol and run the following code with any
one of theses symbols selected it returns a value of 40 and inserts a
left side paren symbol:
Sub Test()
Dim pAsc As Long
pAsc = Asc(Selection)
Selection.Range.InsertAfter Chr(pAsc)
End Sub
Why does this happen?
The question in the Documanagement group is how do you get the correct
ASCII code for symbols?
Thanks.