Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 325
Default Relationship between CHR alt Alt-XXX on the numeric keypad

I was wondering if anybody could clear up a little problem for me?

I've been trying to produce some tables of all the extended characters
avaulable in any given typeface.

I've created a table with two columns, the left column formatted in
WindDings (although it could be any font), the right in Arial. I uses this
code to populate it:

Sub ControlChars()

Dim ControlCount As Integer

Range("J1").Select
For ControlCount = 1 To 255
Selection.Value = Chr(ControlCount)
Selection.Offset(0, 1).Value = "CHR(" & ControlCount & ")"
Selection.Offset(1, 0).Select
Next

End Sub

This works fine, but, when I also know that I can use ALT+XXX (with the
numeric keypad on) to enter extended characters, too.

Using 24 as an example, my generated table f shows, for CHR(24) an upward
pointing arrow. If I type in Alt-024. i get an upward pointing arrow. If,
however, I type Alt-24 (without the zero), I get a black circle with a "6" in
it!

Can anyone explain the relationship (if there is one) between CHR,
ALT+numbers preceded by a zero and ALT+numbers without a zero?

I realise this is more of a Windows thing, than an Excel thing, but if
anyone can help, I'd be very grateful.

Regards

Pete


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Numeric Keypad [email protected] Excel Discussion (Misc queries) 4 September 20th 07 03:48 AM
numeric keypad not working Millie Excel Discussion (Misc queries) 1 September 14th 06 02:51 PM
numeric keypad tikchye_oldLearner57 Excel Discussion (Misc queries) 2 August 1st 06 10:47 PM
'-' on external numeric keypad DZG New Users to Excel 1 March 30th 05 03:58 PM
Numeric Keypad Spencer Hutton[_4_] Excel Programming 0 January 15th 05 02:39 PM


All times are GMT +1. The time now is 03:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"