I need a reference to a list of what all the Chr() refer to.
What do you mean by that? A list of all possible values chr() can return? That's what it sounds like to me, correct me if I'm wrong.
If that's the case, you could do something like:
(Have a text box called tb on your form)
Sub Form_Load()
For i = 1 To 255
tb.Text = tb.Text & vbCrLf & "Character" & i & ": " & Chr(i)
Next
End Sub
Note: I skipped 0 because I believe that Windows will stop writing text with the first NULL (Chr(0)).
That crossed my mind, thanks :-]
Start -> Run -> "charmap"
The info bar at the bottom will tell you what the hexadecimal code is for the character. Note that it starts at 0x21 '!', which is the first "printable" character.
You're welcome.
Quote from: K on August 02, 2005, 08:17 PM
Start -> Run -> "charmap"
The info bar at the bottom will tell you what the hexadecimal code is for the character. Note that it starts at 0x21 '!', which is the first "printable" character.
You're welcome.
I didnt knew that :o, awesome. thnx.
Quote from: MyndFyre on August 02, 2005, 06:45 PM
If that's the case, you could do something like:
(Have a text box called tb on your form)
Sub Form_Load()
For i = 1 To 255
tb.Text = tb.Text & vbCrLf & "Character" & i & ": " & Chr(i)
Next
End Sub
Note: I skipped 0 because I believe that Windows will stop writing text with the first NULL (Chr(0)).
Only does that in the .Net output windows
edit: thought you were (debug.print)ing heh
Quote from: Topaz on August 02, 2005, 06:25 PM
I need a reference to a list of what all the Chr() refer to.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon98/html/vbstartpage.asp look on the left and go additional information->Reference->Charater set