#1   Report Post  
Posted to microsoft.public.word.docmanagement
chequer chequer is offline
external usenet poster
 
Posts: 15
Default Alt Plus codes

Can someone tell me a site where I could download all the ALT Plus numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Alt Plus codes

Run the following macro

' Macro created 12-08-98 by Doug Robbins to list symbols that can be
inserted via Alt+keypad

'

ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=1,
NumColumns:=3

Selection.TypeText Text:="Alt + Numeric Keypad"

Selection.MoveRight Unit:=wdCell

Selection.TypeText Text:="Normal Font"

Selection.MoveRight Unit:=wdCell

Selection.TypeText Text:="Symbol Font"

Selection.MoveRight Unit:=wdCell

Symbol = 33

While Symbol 256

Selection.TypeText Text:="0" & LTrim$(Str$(Symbol))

Selection.MoveRight Unit:=wdCell

With Selection

.InsertSymbol CharacterNumber:=Symbol, Font:="Normal",
Unicode:=False

End With

Selection.MoveRight Unit:=wdCell

With Selection

.InsertSymbol CharacterNumber:=Symbol, Font:="Symbol",
Unicode:=False

End With

Symbol = Symbol + 1

Selection.MoveRight Unit:=wdCell

Wend


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"chequer" wrote in message
...
Can someone tell me a site where I could download all the ALT Plus numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
chequer chequer is offline
external usenet poster
 
Posts: 15
Default Alt Plus codes

Doug,
Thanks for your reply but I have no idea re macros and would not have a clue
on how to do as you suggest.
I have an idea that I came across the site with these codes but after doing
a Google I couldn't find it again.searc


"Doug Robbins - Word MVP" wrote:

Run the following macro

' Macro created 12-08-98 by Doug Robbins to list symbols that can be
inserted via Alt+keypad

'

ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=1,
NumColumns:=3

Selection.TypeText Text:="Alt + Numeric Keypad"

Selection.MoveRight Unit:=wdCell

Selection.TypeText Text:="Normal Font"

Selection.MoveRight Unit:=wdCell

Selection.TypeText Text:="Symbol Font"

Selection.MoveRight Unit:=wdCell

Symbol = 33

While Symbol 256

Selection.TypeText Text:="0" & LTrim$(Str$(Symbol))

Selection.MoveRight Unit:=wdCell

With Selection

.InsertSymbol CharacterNumber:=Symbol, Font:="Normal",
Unicode:=False

End With

Selection.MoveRight Unit:=wdCell

With Selection

.InsertSymbol CharacterNumber:=Symbol, Font:="Symbol",
Unicode:=False

End With

Symbol = Symbol + 1

Selection.MoveRight Unit:=wdCell

Wend


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"chequer" wrote in message
...
Can someone tell me a site where I could download all the ALT Plus numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........




  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default Alt Plus codes

For assistance, see http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"chequer" wrote in message
news
Doug,
Thanks for your reply but I have no idea re macros and would not have

a clue
on how to do as you suggest.
I have an idea that I came across the site with these codes but after

doing
a Google I couldn't find it again.searc


"Doug Robbins - Word MVP" wrote:

Run the following macro

' Macro created 12-08-98 by Doug Robbins to list symbols that can be
inserted via Alt+keypad

'

ActiveDocument.Tables.Add Range:=Selection.Range, NumRows:=1,
NumColumns:=3

Selection.TypeText Text:="Alt + Numeric Keypad"

Selection.MoveRight Unit:=wdCell

Selection.TypeText Text:="Normal Font"

Selection.MoveRight Unit:=wdCell

Selection.TypeText Text:="Symbol Font"

Selection.MoveRight Unit:=wdCell

Symbol = 33

While Symbol 256

Selection.TypeText Text:="0" & LTrim$(Str$(Symbol))

Selection.MoveRight Unit:=wdCell

With Selection

.InsertSymbol CharacterNumber:=Symbol, Font:="Normal",
Unicode:=False

End With

Selection.MoveRight Unit:=wdCell

With Selection

.InsertSymbol CharacterNumber:=Symbol, Font:="Symbol",
Unicode:=False

End With

Symbol = Symbol + 1

Selection.MoveRight Unit:=wdCell

Wend


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of

my
services on a paid consulting basis.

Doug Robbins - Word MVP

"chequer" wrote in message
...
Can someone tell me a site where I could download all the ALT Plus

numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........









  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Tony Jollans Tony Jollans is offline
external usenet poster
 
Posts: 1,308
Default Alt Plus codes

You can't easily download them all and, depending on your setup, many of
them may not display on your computer - or may not display in all fonts.

You can use Alt + any number which is the decimal equivalent of a unicode
code point. See http://www.unicode.org/charts/ for a complete listing of all
standard ones but note that the charts there give code points in hexadecimal
so you will need to convert them to decimal to use with Alt and the numeric
keypad (if you have a recent version of Word you can type the hex value and
then press Alt+X to convert it to a character as an alternative method of
input). Note that certain code points are reserved for private use and do
not have fixed characters - the various symbols in the Symbol, Wingdings,
etc. fonts fall into this category. Although I suspect it won't concern you,
note also that some (Far East) characters require two code points - so
called surrogate pairs.

--
Enjoy,

Tony Jollans
Microsoft Word MVP

"chequer" wrote in message
...
Can someone tell me a site where I could download all the ALT Plus numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........





  #6   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Alt Plus codes

On Tue, 1 May 2007 21:49:02 -0700, chequer
wrote:

Can someone tell me a site where I could download all the ALT Plus numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........


Besides what Doug and Tony told you, learn to use the Insert Symbol
dialog, which lets you browse through the characters in various fonts
and tells you what the codes and shortcut keys are. Read
http://www.word.mvps.org/FAQs/Genera...tSpecChars.htm for
background and illustrations.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
  #7   Report Post  
Posted to microsoft.public.word.docmanagement
chequer chequer is offline
external usenet poster
 
Posts: 15
Default Alt Plus codes

Tony,
Thanks for your help.
It's all confusing to me.
I definitely came across a list of ALT + 4 numeric key numbers somewhere.
I'm not that worried about them as the most common one I use a
Bake at 145º, Latitude -23º 46"
Instead of trying to remember the ALT numbers I have used the Word ' Auto
correct ' option and type (d) to print º the degree symbol
and (lb) for £ symbol
I visited the site and looked at the PDF file but that too, was confusing to
me.


"Tony Jollans" wrote:

You can't easily download them all and, depending on your setup, many of
them may not display on your computer - or may not display in all fonts.

You can use Alt + any number which is the decimal equivalent of a unicode
code point. See http://www.unicode.org/charts/ for a complete listing of all
standard ones but note that the charts there give code points in hexadecimal
so you will need to convert them to decimal to use with Alt and the numeric
keypad (if you have a recent version of Word you can type the hex value and
then press Alt+X to convert it to a character as an alternative method of
input). Note that certain code points are reserved for private use and do
not have fixed characters - the various symbols in the Symbol, Wingdings,
etc. fonts fall into this category. Although I suspect it won't concern you,
note also that some (Far East) characters require two code points - so
called surrogate pairs.

--
Enjoy,

Tony Jollans
Microsoft Word MVP

"chequer" wrote in message
...
Can someone tell me a site where I could download all the ALT Plus numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........




  #8   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Alt Plus codes

There are built-in keyboard shortcuts for most of the most-used special
characters. See http://word.mvps.org/FAQs/General/InsertSpecChars.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"chequer" wrote in message
news
Tony,
Thanks for your help.
It's all confusing to me.
I definitely came across a list of ALT + 4 numeric key numbers somewhere.
I'm not that worried about them as the most common one I use a
Bake at 145º, Latitude -23º 46"
Instead of trying to remember the ALT numbers I have used the Word ' Auto
correct ' option and type (d) to print º the degree symbol
and (lb) for £ symbol
I visited the site and looked at the PDF file but that too, was confusing

to
me.


"Tony Jollans" wrote:

You can't easily download them all and, depending on your setup, many of
them may not display on your computer - or may not display in all fonts.

You can use Alt + any number which is the decimal equivalent of a

unicode
code point. See http://www.unicode.org/charts/ for a complete listing of

all
standard ones but note that the charts there give code points in

hexadecimal
so you will need to convert them to decimal to use with Alt and the

numeric
keypad (if you have a recent version of Word you can type the hex value

and
then press Alt+X to convert it to a character as an alternative method

of
input). Note that certain code points are reserved for private use and

do
not have fixed characters - the various symbols in the Symbol,

Wingdings,
etc. fonts fall into this category. Although I suspect it won't concern

you,
note also that some (Far East) characters require two code points - so
called surrogate pairs.

--
Enjoy,

Tony Jollans
Microsoft Word MVP

"chequer" wrote in message
...
Can someone tell me a site where I could download all the ALT Plus

numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........





  #9   Report Post  
Posted to microsoft.public.word.docmanagement
chequer chequer is offline
external usenet poster
 
Posts: 15
Default Alt Plus codes


Thanks Suzan'
I'll have a look at the site
"Suzanne S. Barnhill" wrote:

There are built-in keyboard shortcuts for most of the most-used special
characters. See http://word.mvps.org/FAQs/General/InsertSpecChars.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"chequer" wrote in message
news
Tony,
Thanks for your help.
It's all confusing to me.
I definitely came across a list of ALT + 4 numeric key numbers somewhere.
I'm not that worried about them as the most common one I use a
Bake at 145º, Latitude -23º 46"
Instead of trying to remember the ALT numbers I have used the Word ' Auto
correct ' option and type (d) to print º the degree symbol
and (lb) for £ symbol
I visited the site and looked at the PDF file but that too, was confusing

to
me.


"Tony Jollans" wrote:

You can't easily download them all and, depending on your setup, many of
them may not display on your computer - or may not display in all fonts.

You can use Alt + any number which is the decimal equivalent of a

unicode
code point. See http://www.unicode.org/charts/ for a complete listing of

all
standard ones but note that the charts there give code points in

hexadecimal
so you will need to convert them to decimal to use with Alt and the

numeric
keypad (if you have a recent version of Word you can type the hex value

and
then press Alt+X to convert it to a character as an alternative method

of
input). Note that certain code points are reserved for private use and

do
not have fixed characters - the various symbols in the Symbol,

Wingdings,
etc. fonts fall into this category. Although I suspect it won't concern

you,
note also that some (Far East) characters require two code points - so
called surrogate pairs.

--
Enjoy,

Tony Jollans
Microsoft Word MVP

"chequer" wrote in message
...
Can someone tell me a site where I could download all the ALT Plus

numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........





  #10   Report Post  
Posted to microsoft.public.word.docmanagement
chequer chequer is offline
external usenet poster
 
Posts: 15
Default Alt Plus codes

Thanks Jay,
I'll look at the site.
I use Imperial measure that requires fraction of an inch, ie. 14' 7 and 11/64"
The only way I have found out how to print all fractions is to create them
using this method:
1. Type the fraction ie. 5/16
2. Highlight the numerator
3. Press Ctrl+Shift+ =, this superscripts the numerator
4. Highlight the denominator
5. Press Ctrl + =, this subscripts the denominator
6. To return to normal CTRL + Spacebar
I then use Auto correct and type (11/64) for 11 64ths.
This will only work in Word, or at least I think so, In Excel even if I
format the cells as "General " it thinks it is a date'
It won't work in this reply either.

"Jay Freedman" wrote:

On Tue, 1 May 2007 21:49:02 -0700, chequer
wrote:

Can someone tell me a site where I could download all the ALT Plus numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........


Besides what Doug and Tony told you, learn to use the Insert Symbol
dialog, which lets you browse through the characters in various fonts
and tells you what the codes and shortcut keys are. Read
http://www.word.mvps.org/FAQs/Genera...tSpecChars.htm for
background and illustrations.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.



  #11   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Alt Plus codes

See http://word.mvps.org/FAQs/Formatting/CreateFraction.htm for various
options.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"chequer" wrote in message
...
Thanks Jay,
I'll look at the site.
I use Imperial measure that requires fraction of an inch, ie. 14' 7 and

11/64"
The only way I have found out how to print all fractions is to create them
using this method:
1. Type the fraction ie. 5/16
2. Highlight the numerator
3. Press Ctrl+Shift+ =, this superscripts the numerator
4. Highlight the denominator
5. Press Ctrl + =, this subscripts the denominator
6. To return to normal CTRL + Spacebar
I then use Auto correct and type (11/64) for 11 64ths.
This will only work in Word, or at least I think so, In Excel even if I
format the cells as "General " it thinks it is a date'
It won't work in this reply either.

"Jay Freedman" wrote:

On Tue, 1 May 2007 21:49:02 -0700, chequer
wrote:

Can someone tell me a site where I could download all the ALT Plus

numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........


Besides what Doug and Tony told you, learn to use the Insert Symbol
dialog, which lets you browse through the characters in various fonts
and tells you what the codes and shortcut keys are. Read
http://www.word.mvps.org/FAQs/Genera...tSpecChars.htm for
background and illustrations.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.


  #12   Report Post  
Posted to microsoft.public.word.docmanagement
chequer chequer is offline
external usenet poster
 
Posts: 15
Default Alt Plus codes

Suzanne,
I cannot understand " Email cannot be acknowledged; please post all
follow-ups to the newsgroup so all may benefit." as I posted this reply in
Word General newsgroup.


"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/Formatting/CreateFraction.htm for various
options.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"chequer" wrote in message
...
Thanks Jay,
I'll look at the site.
I use Imperial measure that requires fraction of an inch, ie. 14' 7 and

11/64"
The only way I have found out how to print all fractions is to create them
using this method:
1. Type the fraction ie. 5/16
2. Highlight the numerator
3. Press Ctrl+Shift+ =, this superscripts the numerator
4. Highlight the denominator
5. Press Ctrl + =, this subscripts the denominator
6. To return to normal CTRL + Spacebar
I then use Auto correct and type (11/64) for 11 64ths.
This will only work in Word, or at least I think so, In Excel even if I
format the cells as "General " it thinks it is a date'
It won't work in this reply either.

"Jay Freedman" wrote:

On Tue, 1 May 2007 21:49:02 -0700, chequer
wrote:

Can someone tell me a site where I could download all the ALT Plus

numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........

Besides what Doug and Tony told you, learn to use the Insert Symbol
dialog, which lets you browse through the characters in various fonts
and tells you what the codes and shortcut keys are. Read
http://www.word.mvps.org/FAQs/Genera...tSpecChars.htm for
background and illustrations.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.



  #13   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Alt Plus codes

That's part of my standard signature. Did you read my actual reply? I will
repeat it he

See http://word.mvps.org/FAQs/Formatting/CreateFraction.htm for various
options.


--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"chequer" wrote in message
...
Suzanne,
I cannot understand " Email cannot be acknowledged; please post all
follow-ups to the newsgroup so all may benefit." as I posted this reply in
Word General newsgroup.


"Suzanne S. Barnhill" wrote:

See http://word.mvps.org/FAQs/Formatting/CreateFraction.htm for various
options.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the

newsgroup so
all may benefit.

"chequer" wrote in message
...
Thanks Jay,
I'll look at the site.
I use Imperial measure that requires fraction of an inch, ie. 14' 7

and
11/64"
The only way I have found out how to print all fractions is to create

them
using this method:
1. Type the fraction ie. 5/16
2. Highlight the numerator
3. Press Ctrl+Shift+ =, this superscripts the numerator
4. Highlight the denominator
5. Press Ctrl + =, this subscripts the denominator
6. To return to normal CTRL + Spacebar
I then use Auto correct and type (11/64) for 11 64ths.
This will only work in Word, or at least I think so, In Excel even if

I
format the cells as "General " it thinks it is a date'
It won't work in this reply either.

"Jay Freedman" wrote:

On Tue, 1 May 2007 21:49:02 -0700, chequer
wrote:

Can someone tell me a site where I could download all the ALT Plus

numeric
keys codes
ie. ALT +0169 = ©
ALT + 0163 = £
ALT + 0176 = °
etc.........

Besides what Doug and Tony told you, learn to use the Insert

Symbol
dialog, which lets you browse through the characters in various

fonts
and tells you what the codes and shortcut keys are. Read
http://www.word.mvps.org/FAQs/Genera...tSpecChars.htm for
background and illustrations.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.




Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Please give us REVEAL CODES like WORD PERFECT not reveal codes in. Rachel King Microsoft Word Help 38 August 21st 09 09:54 PM
Fields codes amos hchmon Mailmerge 3 March 5th 06 07:20 AM
codes Shirl New Users 2 February 9th 06 11:54 PM
I can't see anything but codes or field codes...help!!!! Snfldlover Microsoft Word Help 3 April 20th 05 03:23 PM
I can't see anything but codes or field codes...help!!!! Snfldlover Microsoft Word Help 3 April 20th 05 02:48 PM


All times are GMT +1. The time now is 07:46 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"