VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



The Daily Newbie Using the Chr() function

by Matthew Roberts (26 Submissions)
Category: Coding Standards
Compatability: Visual Basic 3.0
Difficulty: Beginner
Date Added: Wed 3rd February 2021
Rating: (2 Votes)

To show the usage of the Chr() function.

Rate The Daily Newbie Using the Chr() function



content="text/html; charset=iso-8859-1">

Daily Newbie - 04/29/2001


 


v:shapes="_x0000_s1027">


The
Daily Newbie


“To Start Things
Off Right”


Fourth
Edition                   
                                     
April 28,
2001                      
                                                  
Free


v:shapes="_x0000_s1027">


 


 


Today's command, Chr() is almost a must-know for a lot of string manipulation and should be one of the fundimental tricks in your VB coding bags. If you have read the previous Newbie articles, you already know about the Asc() function. The Chr() function is a compliment of it. While the Asc() Function returns an ASCII code for a character, the Chr() function returns a character for an ASCII character.



face="Arial">Today’s Keyword:
                             size="4" face="Arial"> Chr()


style="margin-left:135.0pt;text-indent:-135.0pt">face="Arial">Name Derived
From:        

Character -  a symbol (as a letter or number) that represents information; also : a representation of such a character that may be accepted by a computer - Webster's online
  dictionary.


style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:135.0pt;text-indent:-135.0pt">size="2" face="Arial">Used for                                  
Converting an ASCII character to a string character.


style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:135.0pt;text-indent:-135.0pt">size="2" face="Arial">VB Help Description:             Returns a String containing the character associated with the specified character code.


style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:135.0pt;text-indent:-135.0pt">size="2" face="Arial">Plain
English:    
                       Takes a ASCII Character code and converts it to a "normal" text character. 


style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:135.0pt;text-indent:-135.0pt">size="2" face="Arial">Syntax:                                     Chr(ASCII Code)


style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:135.0pt;text-indent:-135.0pt">size="2" face="Arial">Usage:                                      strCharacter =Chr(65)
 


style="margin-left:135.35pt;text-indent:-135.35pt">face="Arial">Copy & Paste Code:






Today's code snippet will print a list of ACII codes and their equivilent character values in the debug window.





Dim intASCII As Integer
 
For intASCII = 49 To 122
Debug.Print Chr(intASCII)
Next intASCII

  style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:135.0pt;text-indent:-135.0pt"> 


style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
margin-left:135.0pt;text-indent:-135.0pt">size="2" face="Arial">Notes: 


The reason that the Chr() function is so important is that a lot of things in Visual Basic as based on 
ASCII values. For example, in the KeyPress() event of an object, the value that is passed in as the pressed
key is an ASCII value. If you are wanting to display each character on the keypress event, you can do it with this code:

Private Sub Form_KeyPress(KeyAscii As Integer)
MsgBox Chr(KeyAscii)
End Sub

 Since the KeyAscii is a VB-defined parameter, the ability to convert it to a character value is pretty important. Chr() Makes this simple. I used Chr() in a simple "word scrambling" project that you can view
 by clicking here.






Tomorrow's Keyword: Command()




Download this snippet    Add to My Saved Code

The Daily Newbie Using the Chr() function Comments

No comments have been posted about The Daily Newbie Using the Chr() function. Why not be the first to post a comment about The Daily Newbie Using the Chr() function.

Post your comment

Subject:
Message:
0/1000 characters