I have problem,
Do you known it. that non-Ascii chars is between: from... to ?
I simple check, that result is 33 to 126 is I known chars.
(Q1) 33 to 126 is Ascii , correct ?
(Q2) < 33 is what used ?
(Q3) > 126 what is it ?
Please!
Code:Private Sub Command1_Click()
Dim a As Integer
For a = 0 To 255
List1.AddItem a & ">" & Chr(a)
Next a
End Sub

