Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Division Symbol in VB

Status
Not open for further replies.

UncleT

Programmer
Sep 26, 2001
133
US
Hello,

This is probably a stupid question. I want to display the TRUE division symbol in a label on a form. I don't want to display the "/". How do I do this.

Thanks,

Unclet
 
Depending on the character set your computer uses it will be probably CHR(246) or CHR(247).
You can look up the popular ones here:

or type this into the immediate window:
for a = 128 to 255:?a,chr(a):next

________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first
'If we're supposed to work in Hex, why have we only got A fingers?'
Essex Steam UK for steam enthusiasts
 
Thanks to all. It was Chr(247). I was looking at the character set but I just missed it. Thanks again.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top