Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
They're in the VBA help.
Jesse Hamilton "Jamie Martin" wrote in message ... 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? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 "Jamie Martin" wrote in message ... 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? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Jamie
With values 0 through 127 ANSI codes and ASCII codes are alike. Try e.g. http://www.neurophys.wisc.edu/www/comp/docs/ascii.html -- Best Regards Leo Heuser MVP Excel Followup to newsgroup only please. "Jamie Martin" skrev i en meddelelse ... 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? |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try looking for the ASCII code by ANSI
Ken "Jamie Martin" wrote in message ... 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? |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
http://www.deaneng.com/csi_wan/chart.html
I got to that page from he http://qcpages.qc.edu/~nixon/links/asciiUnicode.html -- Regards, Tom Ogilvy "Jamie Martin" wrote in message ... 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? |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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! 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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
convert xls file to ANSI format | Excel Discussion (Misc queries) | |||
Need Help with Alpha into Numeric expressions (not ASCII/ANSI/Etc. | Excel Discussion (Misc queries) | |||
Column Widths, Importing ANSI txt files | Excel Discussion (Misc queries) | |||
Unicode to ANSI | Excel Discussion (Misc queries) |