ANSI codes

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?
 
P

Phobos

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
 
L

losmac

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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top