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
-
Please do this exercise at the command line instead of using NetBeans. This is to learn the concept of classpath without the help of NetBean...
-
Working With Integers The process of creating variable called "Declaring" To Declare (=create) Integer variable simply write: Dim ...
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>Using JavaServer Pages...
-
In previous chapters, you learned to how to connect to SQL Server 2005 using management studio. In this chapter, you will learn how to creat...
-
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...
-
4.5 Using FCL Documentation for Types Using the SDK documentation for a given type will likely be a daily or even hourly event when ...
-
Microsoft SQL Server SQL Server is one of the most popular and advanced database systems currently available. SQL Server is provided by Micr...
-
SQL Server 2005 Enterprise Edition Enterprise Edition scales to very high performance levels required to support the largest enterprise onli...
-
Interfaces Interfaces allow us to create definitions for component interaction. They also provide another way of implementing polymorphism. ...
-
Declaration of variables In order to use a variable in C++, we must first declare it specifying which data type we want it to be. The syntax...
No comments:
Post a Comment