Results 1 to 5 of 5

Thread: Want to display all the charaters, symbols, digits

  1. #1

    Thread Starter
    Frenzied Member cssriraman's Avatar
    Join Date
    Jun 2005
    Posts
    1,465

    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.

  2. #2
    Member Alankar's Avatar
    Join Date
    Jun 2005
    Location
    Ghaziabad, India
    Posts
    40

    Exclamation 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.

  3. #3

    Thread Starter
    Frenzied Member cssriraman's Avatar
    Join Date
    Jun 2005
    Posts
    1,465

    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.

  4. #4
    Member Alankar's Avatar
    Join Date
    Jun 2005
    Location
    Ghaziabad, India
    Posts
    40

    Talking 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.

  5. #5
    PowerPoster
    Join Date
    Dec 2004
    Posts
    25,618

    Re: Want to display all the charaters, symbols, digits

    try this
    VB Code:
    1. For i = 32 To 255
    2.     mystr = mystr & Chr(i)
    3. Next
    4. 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
  •  



Click Here to Expand Forum to Full Width