More About Ascii
How can I know what is the Ascii value of a specific character?
Use the Asc command.
For example, the following line:
Print Asc("b")
Will print on the form the Ascii value of the character "b".
How can I know which character's Ascii value is 98?
Use the Chr command.
For example, the following line:
Print Chr(98)
Will print on the form the character that its Ascii value is 98.
Popular Posts
-
The SQL SELECT statement is used to select data from a SQL database table. This is usually the very first SQL command every SQL newbie learn...
-
Learning about Parameters (Continue) Look at the first line of the Command Button's KeyDown Event: Private Sub Command1_KeyDown(KeyCode ...
-
A JSP directive affects the overall structure of the servlet class. It usually has the following form: However, you can also combine multipl...
-
Console Applications Console Applications are command-line oriented applications that allow us to read characters from the console, write ch...
-
JSP scripting elements let you insert Java code into the servlet that will be generated from the current JSP page. There are three forms: ...
-
A "service" is an application that can start automatically when the computer starts. There are two start up modes: 1. Automatic - ...
-
Namespaces Namespaces allow to group entities like classes, objects and functions under a name. This way the global scope can be divided in ...
-
SQL is short for Structured Query Language and is a widely used database language, providing means of data manipulation (store, retrieve, up...
-
CONSTANTS,VARIABLES AND KEYWORDS: CONSTANTS: Two types of constants those are: a)primary constants b)secondary constants a)In primary consta...
-
The SQL GROUP BY statement is used along with the SQL aggregate functions like SUM to provide means of grouping the result dataset by certai...
No comments:
Post a Comment