VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Check whether or not a given character is an uppercase or lowercase character using a single line A

by Roderick Thompson (12 Submissions)
Category: String Manipulation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 1st March 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Check whether or not a given character is an uppercase or lowercase character using a single line API call.

API Declarations


Declare Function IsCharLower Lib "user32" Alias "IsCharLowerA" (ByVal cChar As Byte) As Boolean


Rate Check whether or not a given character is an uppercase or lowercase character using a single line A



   MyChar = "A"
   Result1 = IsCharUpper(Asc(MyChar))
   Result2 = IsCharLower(Asc(MyChar))
End Sub


Download this snippet    Add to My Saved Code

Check whether or not a given character is an uppercase or lowercase character using a single line A Comments

No comments have been posted about Check whether or not a given character is an uppercase or lowercase character using a single line A. Why not be the first to post a comment about Check whether or not a given character is an uppercase or lowercase character using a single line A.

Post your comment

Subject:
Message:
0/1000 characters