ANSI codes

  • Thread starter Thread starter Jamie Martin
  • Start date Start date
J

Jamie Martin

I couldn't find a list of ANSI codes through Google; I'm especially
interested in the codes for things like Tab and Return. Where might I find
one?
 
Return?

In a Windows environment, return is a "Carriage Return" and a "Line Feed"
pair (13 and 10 respectively [decimal]).

There are loads of sites out there with all the info on them!

P
 
Insert new form and code below:

Private Sub UserForm_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
MsgBox "Your code ASCII: " & KeyAscii
End Sub

View form and press any key You want!
 
Back
Top