Introduction
Steps in Developing Application
There are three primary steps involved in building a Visual
Basic application:
1. Draw the user interface
2. Assign properties to controls
3. Attach code to controls
Rule for Variable
Visual Basic Data Types
Data
Type Suffix
Boolean None
Integer %
Long (Integer) &
Single (Floating) !
Double
(Floating) #
Currency @
Date None
String $
Variant None
Variable Declaration
There are three ways for a variable to be typed (declared):
1. Default
2. Implicit
3. Explicit
1. Default variable in visual basic is variant, by default the
variant data type is a special type used by Visual Basic that can contain
numeric, string, or date data.
2. Implicit type a variable, use the
corresponding suffix shown above in the data type table.
For example,
TextValue$ = "This is a
string" creates a string variable, while
Amount% = 300 creates an integer
variable.
3. Explicit type a variable determines its scope.
There are four levels of scope:
a. Procedure level
b. Global level
Within a procedure & for Global,
variables are declared using the Dim statement:
Dim x as Integer
Dim y as Double
Dim name as String
Visual Basic Operators
1. arithmetic operator
with order of precedence are:
Operator Operation
^ Exponentiation
* / Multiplication
and Division
Mod Modulus
+ - Addition
and subtraction
2. Comparison operators
in Visual Basic:
Operator Comparison
> Greater
than
< Less
than
>= Greater
than or equal to
<= Less
than or equal to
= Equal
to
<> Not
equal to
3. Logical operators
Operator Operation
Not Logical
not
And Logical
and
Or Logical
or
Message box
The Message box displays a message, optional icon, and selected
set of command buttons.
The statement form of the message box returns
no value (it simply displays the box):
MsgBox Message, Type,
Title
where
Message Text message to be
displayed
Type Type of message box
(discussed in a bit)
Title Text in title bar
of message box
Value Meaning Symbolic
Constant
1 OK
button
selected vbOK
2 Cancel
button selected vbCancel
3 Abort
button selected vbAbort
4 Retry
button selected vbRetry
5 Ignore
button selected vbIgnore
6 Yes
button selected vbYes
7 No
button selected vbNo
|
Computer Science :: 11th/12th, Computer Engineering :: Degree/Diploma, Coding Concept ( C, C++ & JAVA Programming, JDBC Concept, DBMS - SQL Concept, Data Structure, Communication & Network Concept.
Thursday, September 3, 2015
ABOUT VB 6.0
Subscribe to:
Post Comments (Atom)
JAC Board Computer || IIT 2025 || Introductory Information Technology || Class 10 || Practical Examination 2025
Marks Division HOE 30 Marks IT Application Report File 20 Marks Viva - Voce 10 Marks 1) Write an HTML code to generate a web p...
-
1) TCP/IP - Transmission Control Protocol/ Internet Protocol. 2) HTTPs - Hyper Text Transfer Protocol. 3) ICT - Information Comunication Te...
-
1) What is Make Code Arcade? Answer: Make Code Arcade is a coding platform that enables to create block – based program. 2) How ...
-
Programmingway@Eklavya Technosys!: New Year's 2025 | Happiness & Healthier's Life Sty... : भारत कई धर्मों का संगम है, हिंदू, मुस...
No comments:
Post a Comment