>>Hi Everyone:
>>
[quoted text clipped - 10 lines]
> away... Do you need any other characters other than infinity in the
> text box?
Huh? Chr$(236) is this: ì
The description from CharMap is "Latin Small Letter I with Grave". This is
also the character I found in all ANSI charts that I looked at.
The infinity symbol is a sideways 8. Norm got the character right, but that
solution is less than perfect if Bob needs to display "normal" characters as
well. I did find the infinity symbol in CharMap, but it's a unicode
character so unless a 3rd-party textbox that supports unicode is used,
Norm's idea might be the only one available. FYI, when I copied this
character from CharMap and pasted it into a TextBox, it just displayed a
question mark.
Bob, to expand on Norm's idea, you might have to use a RichTextBox so that
you can use 2 different fonts.
With RichTextBox1
.SelFontName = "Arial"
.SelText = "This is the infinity symbol: "
.SelFontName = "Symbol"
.SelText = Chr$(165)
End With

Signature
Mike
Microsoft MVP Visual Basic
Timo Kunze - 06 Sep 2008 18:26 GMT
MikeD schrieb:
> Bob, to expand on Norm's idea, you might have to use a RichTextBox so that
> you can use 2 different fonts.
Another option would be to use a unicode textbox and a unicode font.
However, this would work on Windows NT based systems only.
Timo

Signature
www.TimoSoft-Software.de - Unicode controls for VB6
"Those who sacrifice freedom for safety deserve neither."
"Demokratie ist per Definition unsicher. Ihr Schutz entsteht aus der
Überzeugung, dass die demokratischen Kräfte überwiegen und sich – auf
demokratischem Wege – durchsetzen."
Bob - 06 Sep 2008 19:00 GMT
Thanks Mike.
Bob
>>>Hi Everyone:
>>>
[quoted text clipped - 33 lines]
> .SelText = Chr$(165)
> End With
PeterD - 06 Sep 2008 21:31 GMT
>Huh? Chr$(236) is this: ì
Yes, but 'originally' it was defined as the infinity symbol. Then
someone came along and changed it! <g>
It is possible.
Bob
>>Hi Everyone:
>>
[quoted text clipped - 10 lines]
> away... Do you need any other characters other than infinity in the
> text box?