|
-
Jun 27th, 2005, 03:20 AM
#1
Thread Starter
Frenzied Member
Want to display all the charaters, symbols, digits
Hi all,
Is there any way to insert all charaters (a-z,A-Z), different type of symbols, digits (0-9) etc?
Some Electronic Typewriters have some functions like that.
Pls let me know.
Thanks,
CS.
-
Jun 27th, 2005, 03:27 AM
#2
Member
Re: Want to display all the charaters, symbols, digits
Hi Raman,
I can't understand what you want to do ?
Please give some details.
Regards,
Alankar
The rest of mind is not in rest, It rests in rest. 
-
Jun 27th, 2005, 03:36 AM
#3
Thread Starter
Frenzied Member
Re: Want to display all the charaters, symbols, digits
Hi, I want to insert all the characters like a to z and A to Z, symbols, digits 0 to 9 in my Word Document? If i run a macro it should list out the above.
For example,
Characters:
abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
Digits:
0123456789
Symbols:
(normal text):
₧₪₫€℅ℓ№™Ω℮⅓⅔⅛⅜⅝⅞ ........ and so on ........
and so on.
Thanks,
CS.
-
Jun 27th, 2005, 03:47 AM
#4
Member
Re: Want to display all the charaters, symbols, digits
Hi,
As I am doing some other work, please try to use ASC, CHR functions of VBA and use them in a loop starting from 0 to 255 (All ASCII) values for all symbols, alabhabets, etc. would be printed this way !
I think so.
Regards,
Alankar
The rest of mind is not in rest, It rests in rest. 
-
Jun 27th, 2005, 03:47 AM
#5
Re: Want to display all the charaters, symbols, digits
try this
VB Code:
For i = 32 To 255
mystr = mystr & Chr(i)
Next
ActiveDocument.Range.InsertAfter mystr
pete
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|