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.
Printable View
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.
Hi Raman,
I can't understand what you want to do ?
Please give some details.
Regards,
Alankar
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.
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
try this
VB Code:
For i = 32 To 255 mystr = mystr & Chr(i) Next ActiveDocument.Range.InsertAfter mystr
pete