Getting Started with VB 6.0
Comprehensive tutorial that is aimed at the beginning programmer that will go through all of the basics in learning Visual Basic 6.0.
Original Author: bs0d
Code
Visual Basic is an object-oriented programming language that uses the Microsoft Windows platform. The programs that are created using Visual Basic will look and act like standard Windows programs. Visual Basic provides one the tools to create windows with elements such as menus, text boxes, command buttons, option buttons, list boxes and scroll bars. This tutorial does not completely cover all ‘basis' of Visual Basic. This is just basically an over view to learn a bit about VB. Databases, Crystal Reports and others are not included to keep this tutorial under 500 pages and to keep carpal tunnel from occurring. This tutorial was written assuming that you possibly have some programming knowledge. Like what an IF / THEN / ELSE statement is. So, if you have taken Basic Or QBasic, that's ideal before reading this tutorial. Also, it would not help much reading this tutorial if you do not have VB 6.0 on your computer. I think you can download it from Kazaa Lite (kinda big though) if you do not have it. But get it if you don't have it, open it and read this. Procedural Languages - Programming languages that have a set plan that you follow to execute a program. You have a series of statements that you execute where you start with the first statement. The statements are executed in order from beginning to end. The program terminates after the last statement is executed. Non-Procedural Languages - Object-Oriented programming languages that are Event-driven. Here you don't just have a series of statements that are executed, you have several choices of different things you can do in a program. You select the event that you want to occur. Only the code for that event is executed. Label - A control that is used to display text as a caption. Labels cannot be altered by the used. They are simply used to display headings and results of processing as well as other information on a form. Labels begin with a .lbl extension. Text Box - Control that is used to enter information onto a form. Text boxes can have focus and are the primary means of providing input to a project in Visual Basic. Text boxes begin with the prefix of .txt Command Buttons - Control used to activate a procedure. When a command button is clicked on or activated using an access key, and event will take place (the code behind the command button is executed.) Command buttons begin with the prefix .cmd VAL() - A function that will convert a string to a numeric value. It begins with the left-most character of the string. If that character is a numeric digit, decimal point or a sign, VAL will convert the character to a numeric and move on to the next character. Once a non-numeric character is found, the VAL function will stop. PrintForm - A method that will print the current form on the printer. This is executed during run-time. FORMAT - This is used to format a variable. Variables can be formatted as fixed numbers, currency and percents. FormatCurrency - This function will take a number and format it as currency with two decimal places and a $ sign. There is only one argument, the number you want to format. FormatNumber - This function will format a number as a decimal with a set number of decimal places. The first argument is the number you want to format. The second is the number of decimal places you want the number to have. FormatPercent - This function will take the number and format it as a percent. The function will multiply by 100 and add a percent sign to the end of the number. The number by default will be rounded to zero decimal places unless you specify a 2nd argument. FormatDate and Time - This function will take a string and format it as a Date, Time or both. The first argument is the date or time to be formatted. The 2nd argument is the format of date/time you wish to use. Option Explicit - A statement that will force you to declare all variables used in your program. If you fail to declare a variable, an error will occur when you run your program. When you declare a variable, VB reserves space in the computers memory and assigns it a name. When declaring variables, there are certain rules that must be followed. Constants are always declared using the keyword CONST. You give the constant a name, data type and value. Once a value is declared a constant, it can never be changed again in the program. Trying to change a constant will cause an error. The rules for variables also apply to constants. NAMED CONSTANTS - These are constants that you name yourself with the CONST keyword. Named constants can come in the form as numeric constants and string constants. NUMERIC CONSTANTS - Constants that can contain only the digits 0-9, a decimal pt and sign. STRING CONSTANTS - Constants that can contain letters, digits, and special characters such as @#$%^&*. String constants must be enclosed in double quotes. INSTRINCT CONSTANTS - System-Defined constants that are built into VB. Default Property - Automatically selects a cmd button when the user presses the < ENTER > key. To make a cmd button a default button, you set its DEFAULT property to TRUE. Only one command button per form can have its default property set to true. When the program is run, this cmd button will be highlighted. Cancel Property - The button that is selected when the user presses the < ESC > key. To set a cmd button to the cancel button, you set its CANCEL property to TRUE. Only one cmd button per form can have its cancel button set to true. TabStop Property - Represents all controls on a form that can receive focus. If the TabStop property is TRUE, a control can receive focus. If it is FALSE, then it cannot. TabIndex Property-Getting Started-
Procedural vs. Non-Procedural Languages
Examples of Procedural Languages:
and more...
Examples of Procedural Languages:Labels, Text Boxes and Command Buttons
Examples of labels:
Examples of Text Boxes:Types of Errors
Special Functions and Methods
Syntax :
< var > = FORMAT( < var > ," < type of format > ")
Examples:
lblTotal = Format(lblTotal,"Currency") 'Formats number with a $ and two decimal places.
lblArea = Format(lblTotal,"Fixed") ' Formats number as decimal with two decimal places.
LblPctTotal = Format(lblPctTotal,"Percent") 'Formats number as percent with two decimal places and adds % to end of number.
lblSum = FormatCurrency(NumToFormat)
lblTotalAmount = FormatCurrency(curTotal)
lblTotal = FormatNumber(NumToFormat,NumOfDecimalPlaces)
lblSum = FormatNumber(Sum,2)
lblTotalPct = FormatPercent(NumToFormatAsPercent)
lblSumPct = FormatPercent(NumToFormatAsPercent, NumOfPlaces)
lblCurrInterest = FormatPercent(CurrentInterest)
lblCurrentDate = FormatDateTime(StartingDate, vbShortDate)
lblCurrentDate = FormatDateTime(EndingDate, vbLongDate)
lblCurrentTime = FormatDateTime(StartingTime, vbShortTime)
lblCurrentTime = FormatDateTime(StartingTime, vbLongTime)Variables and Constants
DECLARING A VARIABLE:
RULES (for variable names):
NOTE: Rules ( above ) also apply to naming controls that are placed on a form.
The DIM statement is used to declare all variables in VB.
Syntax:
DIM < variable_name > as < datatype >
Examples:
DIM inNum1 as Integer
DIM strName as String
DIM curTotalAmount as CurrencyDECLARING A CONSTANT:
Syntax:
DIM < constant name > as < datatype > = < value >
Examples:
DIM sngPI as Single = 3.14
DIM curTaxRate as Currency = .07
Examples of Instrinct Constants:SCOPES OF VARIABLES:
Scope - Is a term used to refer to the visibility of a variable.
Lifetime - The period of time that variables exist.3 LEVELS OF SCOPE:
PROPERTIES
Some controls can receive focus, others cant.
Txt Boxes, and cmd buttons can receive focus.
Labels and images cannot receive focus.
Name - Used to assign the name of the control as it is known by the project.
Caption - The label that appears next to, in or on top of the control.
BackColor - The background color of the control.
ForeColor - The color of the text that appears on or next to the control.
Text - The text which appears in a text box.
Alignment - Determines justification of the text within a label or text box.
- 0 - Left Justify
- 1 - Right Justify
- 2 - Center
MultiLine - Allows a string to be spread out among several lines instead of one line.
Font - Allows you to set the font and font size of a control.
TabIndex - Determines the order the focus moves as the < TAB > key is pressed.
Visible- Property used to make a control visible or invisible
lblTotal.Visible = True 'label will be displayed on the form.
lblTotal.Visible = False 'label will not be displayed on the form.
FillStyle - Primarily used with shapes, is used to fill the shape. Different options are available.
- 0 - Solid
- 1 - Transparent
- 2 - Horizontal Line
- 3 - Vertical Line
- 4 - Upward Diagonal
- 5 - Downward Diagonal
- 6 - Cross
- 7 - Diagonal Cross
EXAMPLES :
Square.FillStyle = 0
Square.FillStyle = 8
Option Buttons... Formats
Option Buttons - Group of controls where only one can be selected at a time.
Check Boxes - Group of controls where more than one can be selected at a time.
Frame - Control that often acts as a container for a group of option buttons or check boxes.
Image - Type of control that is used to hold a graphic.
Shape - Type of control used to place rectangles, squares, ovals and circles on a form.
OPTION BUTTONS:
The VALUE property of the option button is set TRUE if you want it to be selected, otherwise, FALSE.
Set the option buttons CAPTION property to the text you want to appear next to the option button.
When assigning an option button, a variable name always starts out with the prefix, opt
If you want an event to occur when you click on an opt button, you can double-click on the opt button to place code behind the opt button.
CHECK BOXES:
More than one check box can be selected at a time.
The VALUE property of the option button is set to CHECKED if you want it to be selected, otherwise, set it to UNCHECKED.
A second option is to set the VALUE property on check boxes to a 0, 1 or 2.
- 0 - UnChecked
- 1 - Checked
- 2 - Grayed
Set the CAPTION property to the text you would like to appear next to the check box
When assigning a variable name, always start out with prefix chk
If you want an event to occur when you click on a chk box, double-click the button to place code behind.
IMAGES:
Click on the images PICTURE property and locate the folder or drive where the picture is located.
Select the pic you want and it will be placed on the form.
Set images STRECH property to TRUE. This will size the pic to the size of the control you have defined on the form.
All controls that are images should begin with img prefix.
SHAPES:
The types of shapes and codes are shown below...
- 0 - Rectangle
- 1 - Square
- 2 - Oval
- 3 - Circle
- 4 - Rounded Rectangle
- 5 - Rounded Square
All controls that are shapes should begin with the shp prefix.
LINES
Use the crosshair pointer to drag a line across the screen. You may rotate the line in any direction and stretch it until releasing the move button.
All line controls should begin with the lin prefix.
Determining Focus
Focus - Refers to the currently selected control on the form. This can be indicated by an | - Beam, selected text, highlighted caption or dotted border. The control with focus is ready to receive input.
SetFocus - A built-in function that when executed will move the cursor to the control and give that control focus. SetFocus can be used with txt boxes, cmd buttons, opt buttons and chk boxes.
Examples of setFocus:
txtNum1.setFocus 'will place cursor in the text box.
cmdCalc.setFocus 'will hilight this command button.
optBlue.setFocus 'will put dotted lines around this opt button.
Working With Strings
Concatenation - Refers to combining two or more smaller strings into a larger string. In VB, you can either use the & or + symbols to do concatenation.
Examples of Concatenation:
StrFirstName + " " + strMiddleInitial + ". " + StrLastName
StrFirstName & " " + strMiddleInitial & ". " + StrLastName
Formats
CENTERING A FORM IN THE MIDDLE OF THE SCREEN:
(This code would go in the FORM LOAD [ by double clicking empty space on the form.])
< Name of form > .Top = (Screen.Height - < Name of form > .Height)/2
< Name of Form > .Left = (Screen.Width - < Name of form > .Width)/2
< Name of Form > - This is the actual name of the form as you have saved it in your program.
If you named your form SQUARE, you would code the statement in the following way:
SQUARE.Top = (Screen.Height - SQUARE.Height)/2
SQUARE.Left = (Screen.Height - SQUARE.Width)/2
Input Boxes, Message and List Boxes
Input Box - A function that will display a message and allow the user to enter information in a text box. In the Input box you can display a message called a prompt, which will help the user decide what information he needs to enter in the text box.
The input box will have a txt box with the prompt above it and two command buttons, OK and CANCEL. The OK will accept whatever input the user enters and place it in the variable on the left hand side of the equals sign. The CANCLEL button will ignore any input entered by the user and return the user back to the form that is currently open.
Input Boxes are often used when one wants to retrieve records from files.
VariableName = InputBox("Prompt","Title")
Examples:
StrName = InputBox("Enter your name", "Sponge Bob")
StrCareer = InputBox("Enter your workplace", "Nickelodeon")
The prompt must be enclosed in quotes. The title must also be in quotes and will appear in the Title Bar of the Input Box. If no title is entered, the title of the project will appear in the Title Bar.
Input Boxes can appear in the following places:
- Form_Load
- Command Buttons
- Option Buttons
- Check Boxes
Form Load
Form_Load - Code executed as the project is loading. The first time a form is displayed in a project, VB generates an event knows as FORM_LOAD. Any code in Form Load is then executed.
Things that are done in the FORM_LOAD section of a VB program include the following:
- Code to center the form in the middle of the screen
- Code to initialize variables
- Code for input boxes so the user can enter info.
- Display info in labels on the form.
To get the FORM_LOAD event to enter code, again; double click on an empty area on the form. The FORM_LOAD event begins and ends with the following procedure headings:
Private Sub Form_Load()
< Place Code Here >
End Sub
Example of code in the FORM_LOAD event:
Private Sub Form_Load()
InputBoxes.Top = Screen.Height - InputBoxes.Height)/2
InputBoxes.Left = Screen.Width - InputBoxes.Width)/2
StrName = InputBox("Enter your name", " Nickelodeon Inc.")
LblName = StrName
End Sub
Message Boxes and List Boxes
Message Box - A special type of VB statement/function that displays a window in which you can display a message to a user. The message box can be a statement or function and has the name, MsgBox.
The following can be displayed to the user with a Message Box:
- Message
- Optional Icon
- Title Bar Caption
- Command Buttons
MESSAGE BOX STATEMENT
The message box statement is designed to be on a line by itself. The syntax of the MsgBox is show here:
MsgBox < "Prompt" > , < Buttons/Icons > , < "Caption" >
MsgBox "Sponge Bob is -Jester's brother!",vbInformation, "Nickelodeon Inc."
Prompt - The message you want to appear in the message box.
Buttons/Icons - This determines what command buttons and/or icons that will appear on the message box. (This portion is optional.)
Caption - This is the caption that will appear on the title bar of the message.
MESSAGE BOX FUNCTION:
The message box function will appear on the right hand side of the equals sign. Also, if your msg box is a function, you must enclose arguments in ( ).
VarName = MsgBox( < "Prompt" > , < Buttons/Icons > , < "Caption" > )
IntRes = MsgBox("Are my fingers tired?", vbYesNo + vbQuestion,"My Question")
Sample code using Message Boxes:
Private Sub cmdCheck_Click()
If val(txtNum1) > val(txtNum2) Then
MsgBox "First Number is greater than second", vbInformation, "Comparing Numbers"
ElseIf val(txtNum2) > val(txtNum1) Then
MsgBox "Second Number is greater than the first", vbInformation, "Comparing Numbers"
Else
MsgBox "The two numbers are equal", vbInformation, "Comparing Numbers"
End If
End Sub
LIST BOXES:
List Box - A type of control used to hold a list of items from which the user can select one item from the list. You should use the lst prefix when naming list boxes.
Items can be added to a list box in two ways.
Using the LIST property for the list control
Using the AddItem method
< object_name > .AddItem < Value >
If your values are strings, they must be enclosed in double quotes. When items are added to the list, they are given an index. The first item added to the list will have an index of zero the 2nd of one, and so forth.
Example of - ADDING ITEMS TO THE LIST:
lstSchools.AddItem "Harvard"
lstSchools.Additem "Yale"
lstSchools.Additem "Princeton"
lstSchools.Additem "Brown"
lstSchools.Additem "Cornell"
lstSchools.ListIndex = 3
This will highlight the item "Brown". Harvard will have an index of 0, Yale of 1 and so forth.
ListIndex PROPERTY :
The listIndex property will highlight an item in the list when the program is run. Only one item can be set with the listIndex property. The format of List Index property is shown here:
< control > .ListIndex = 3 'This will highlight the 4th item in the list.
lstSchools.ListIndex = 3 'This will highlight the 4th school in lstSchools.
Sorted PROPERTY:
This will sort the items in your list alphabetically if the SORTED property is set to TRUE. This will also re-index the items in your list. If the ListIndex property is used, the highlighted item will change.
Clear METHOD:
This will empty out the contents of a list box...
< control > .Clear
lstSchools.Clear
RemoveItem METHOD:
This will remove one item from the list. When using RemoveItem, youmust include the index of the item to remove.
< control > .RemoveItem < index >
LstSchools.RemoveItem 3
This will remove the item in the lstSchools list box with the index of 3, which is the 4th item in the list.
LstCount - The listCount property is used to hold the number of items in the list. ListCount will always be one more than the highest element in the list.
Sub Procedures, Random Numbers
Procedure - A unit of code that performs a specific task and can be called from other locations of the program.
PURPOSES OF PROCEDURES:
- Breaks large sections of code into smaller units of code that perform a specific task.
- Makes it easier to debug and maintain program.
- Cuts down on the amount of code that has to be written and eliminates duplication of code.
TYPES OF PROCEDURES:
Sub Procedure - A procedure that performs a task but DOES NOT return values back to the calling module.
Function Procedure - A procedure that performs a task and RETURNS a value back to the calling module. With function procedures, the value is returned back to the calling module using the function name.
CREATING A NEW SUB PROCEDURE:
- Display the code window for the form
- Select ADD PROCEDURE from the TOOLS menu
- Enter the name of the procedure in the text box next to where it says NAME
- Select PRIVATE for SCOPE
- Click OK
- You will be given the procedure shell. Type in the contents of your procedure
- Click on the code button to exit the procedure
Example of a Sub Procedure:
Private Sub AddNumbers()
Sum = val(txtNum1) + val(txtNum2)
LblSum = Sum
End Sub
Example of a Sub Procedure Call:
Private Sub cmdCalculate_Click()
AddNumbers
End Sub
Example of a Function Procedure:
Private Function AddNumbers()
AddNumbers = val(txtNum1) + val(txtNum2)
End Function
Example of a Function Procedure Call:
Private Sub cmdCalculate_Click()
LblSum = AddNumbers()
End Sub
WITH STATEMENT
The WITH keyword allows you to cut down on coding when dealing with properties of controls.
Syntax of WITH statement:
With < control >
. < property1 > = < value1 >
. < property2 > = < value2 >
. < property3 > = < value3 >
End With
Assigning controls without the WITH KEYWORD:
lblEmployee.Font.Name = dlgCommon.FontName
lblEmployee.Font.Bold = dlgCommon.FontBold
lblEmployee.Font.Italic = dlgCommon.FontItalic
Assigning controls using the WITH KEYWORD:
With lblEmployee.Font
.Name = dlgCommon.FontName
.Bold = dlgCommon.FontBold
.Italic = dlgCommon.FontItalic
End With
COMMON DIALOG CONTROL
Allows your project to use the dialog boxes that are provided as part of the Windows environment to set properties for a control such as font, font size and color.
FEATURES OF THE DIALOG CONTROL:
- You only need common dialog control on your form
- You cannot change the controls size
- The location of the control does NOT matter
- The control will be invisible when the program runs
- Dialog controls are stored with an extension of .ocx
- When naming Dialog controls, begin with a prefix of dlg
- The common dialog box may not appear in your toolbox. It is a custom * control and will need to be added to your project before you can use it.
RETRIEVING THE COMMON DIALOG CONTROL:
- click on Project
- click on Components
- Scroll down and find Microsoft Common Dialog Control 6.0
- Click the check box next to it to select it.
- Click OK and it will be placed in your tool box.
- Click on Dialog Control and place it on your form.
CHANGING FONTS:
Example SYNTAX of SETTING FONTS:
With dlgCommon (assuming that you named it that)
.Flags = cdlCFScreenFonts ‘Loads different fonts into memory
.ShowFont
End With
With txtName.Font
.Bold = dlgCommon.FontBold
.Italic = dlgCommon.FontItalic
.Name = dlgCommon.FontName
.Size = dlgCommon.FontSize
End With
CHANGING COLOR:
Example SYNTAX of CHANGING COLOR:
dlgCommon.ShowColor 'Brings up the color box
txtName.ForeColor = dlgCommon.Color 'Applies it to the font
RANDOM NUMBERS
Rnd - Generates a random number between 0 and 1.
Randomize - Tells VB to randomly generate numbers for the rnd statement. Using randomize will allow the rnd statement to generate an entirely random set of numbers that do not follow any recognizable pattern.
Generating Numbers between 1 and 10:
Num = Int((10 - 1 + 1)* rnd + 1)
Generating Numbers between 1 and 100:
Num = Int((100 - 10 + 1)* rnd + 1)
INT() FUNCTION:
Converts a floating point value to an integer by truncating off any remainder that the number has. ( INT(4.656) will return a value of 4. )
Menus, Combo Boxes and QB Color
Menu - A drop-down list of items displayed below a menu name on the screen from which you selected one item.
In Windows and VB a menu consists of a menu bar with menu names, each of which drops down to display a list of menu commands. You can use menu commands in place of or in addition to the command buttons to activate a procedure.
Menu commands are actually controls and have events and properties. Each menu command has a Name property and a Click event, similar to a command button. To create a menu for your form, you will use the Visual Basic Menu Editor, which accessible by pressing < CTRL > + E or Click on Menu Editor Icon.
PARTS OF THE MENU:
Caption - Holds the words you want to appear on the screen.
Name - Indicates the name of the menu control and what the control is referred to by the program. When naming, start out with the prefix, "mnu" . For example, if you had a menu control for FILE, you would name it, mnuFile
SUBMENU - A list of commands that appear underneath a menu command, a menu within a menu. To create a submenu, press the right arrow key to move to the next level.
Menu List Box - Shows the list of all menu items that have been created and the indication levels. You can move up, down, left and right by clicking on the name of the menu item and then clicking on one of the four arrow buttons.
Separator Bars - A horizontal line that separates one menu from another. To define a separator bar, type a single hyphen ( - ) for the caption and give it a name. Even though you can never reference the separator bar in the code, you still have to give it a name. If you have more than one separator bar, each one has to have a unique name. ( mnuSep1,mnuSep2,...ect. )
Short Cut Keys - You can create a keyboard short cut key for a menu item when its created. Select a short cut key for your menu item by selecting it from the list provided. The purpose of the short cut is to give you an alternative to going through a menu to perform a task.
Checked - If you want a check mark to appear next to an item in your menu, you would put a check here. Check marks are normally for options that you want to be toggled on and off.
Enabled - If you want the user to be able to select a menu item, this will be checked. By default, all are enabled. If unchecked, this menu item will be dimmed out. You can also change this property in the actual code. ( mnuStar.Enabled = False )
Visible - Determines whether a menu item is displayed on the screen or not. If there is a check in this check box, the menu item will be displayed on the screen. If the box is not checked, the menu item will not be displayed. This property can also be changed in the actual code. ( mnuStar.Visible = True )
Insert - Click on this if you want to insert an item into the middle of a menu. The item will be inserted at the location of the current item. All items below that point will be moved down.
Delete - Will delete the highlighted menu, Cancel will close the menu editor without saving changes and OK will save changes to the menu and close the menu editor.
COMBO BOXES
Combo Box - A type of control used to hold a list of items from which the user selects one from a pull down menu.
DIFFERENCES BETWEEN A LIST BOX AND A COMBO BOX:
- With a list box, there is no pull down menu, user scrolls through the list using scroll bars and selects the item of his/her/OtHeR choice. With a combo box, the user click on a down arror, a pull down menu is displayed and the user chooses by clicking one on the list.
- You can type your own entry into the list with a combo box. With a list box, you cannot type in your own entries.
Like list boxes, items can be added to a combo box in two ways...
- Using the List property
- Using the AddItem method
ADDING ITEMS TO THE LIST USING THE LIST PROPERTY:
- Scroll through the properties window to the LIST property
- Click on the down arror to drop down an empty list
- Type your first item and press < CTRL > < ENTER >
- Continue entering items as indicated in 3 until finished
- Press < ENTER > or click outside of list box to complete operation.
ADDING ITEMS TO THE LIST USING THE ADDITEM PROPERTY:
- Double click on the form to open FORM_LOAD
- Enter your items using the below format :
< object_name > .AddItem " < Value > "
ADDING ITEMS INTO THE ItemData ARRAY:
< object_name > .AddItem " < Value > "
< object_name > .ItemData( < object_name > .NewIndex) = < Value >
ADDING ITEMS TO THE LIST:
Puttings items into the list of a Combo Box...
cboSchool.AddItem "Harvard"
cboSchool.AddItem "Yale"
cboSchool.AddItem "Princeton"
cboSchool.AddItem "Brown"
cboSchool.AddItem "Cornell"
Harvard will have the index of 0, Yale of 1 and so on
Entering Items into the ItemData array of a Combo Box...
cboOffice.AddItem "Paper"
cboOffice.ItemData(cboOffice.NewIndex) = 300
cboOffice.AddItem "Cartrige"
cboOffice.ItemData(cboOffice.NewIndex) = 3200
cboOffice.AddItem "Folders"
cboOffice.ItemData(cboOffice.NewIndex) = 250
cboOffice.AddItem "Binder"
cboOffice.ItemData(cboOffice.NewIndex) = 400
TEXT PROPERTY:
The Text property refers to the actual item that is currently selected in the list.
< label > = < control > .Text
lblFood = cboFood.Text
ListIndex works as the same as List Boxes. Same as NewIndex, ItemData, Sorted, Clear, RemoveItem, ListCout...ect.
When naming Combo Boxes, use the prefix, "cbo". For example, if you wanted a combo box named School, you would name it, cboSchool.
QB COLOR
QBCOLOR - is a built-in function in VB that will display 15 different colors. The QBCOLOR function has one argument, which is the index of the color to be displayed. The index can range from values 0 to 15. What the heck, here are the values for you:
-Index- | -Color- |
0 | Black |
1 | Blue |
2 | Green |
3 | Cyan |
4 | Red |
5 | Magenta |
6 | Yellow |
7 | White |
8 | Gray |
9 | Light Blue |
10 | Light Green |
11 | Light Cyan |
12 | Light Red |
13 | Light Magenta |
14 | Light Yellow |
15 | Bright White |
Example:
ShpRectangle.FillColor = QBColor(1) ‘Will be shown in blue
ShpCircle.FillColor = QBColor(6) ‘ Will be shown in yellow
Control Arrays, Scroll Bars and RGB Function
Array - A group of data items that are referred to by the same name.
Control Array - A group of controls sharing the same name and event procedures.
Index - A variable used to refer to each element in the control array.
Control Arrays can be used with the following controls:
- Text Boxes
- Option Buttons
- Check Boxes
- Labels
- Command Buttons
Control Arrays are most commonly used with text boxes and option buttons.
CREATING A CONTROL ARRAY:
- drop a control on the form and assign it a name.
- drop a second control on the form and assign it the SAME name.
- You will be given a message saying that you already have a control named ‘whatever' and asks you if you want to create a control array.
- Press "Yes" and this will create your control array.
- Now, for each subsequent item added, give it the same name also.
- Once you create the control array, each item within the array will have an index. The first will be an index of zero, 2nd of 1, 3rd of 2 and so forth...
Example Control Array using a Select Case:
This example is if you had 6 option buttons with names of colors and a Rounded Square shape that will fill the color of the selected option button.
Private Sub optColors_Click(Index As Integer)
Select Case Index
Case 0: shpRoundSquare.FillColor = vbBlack
Case 1: shpRoundSquare.FillColor = vbBlue
Case 2: shpRoundSquare.FillColor = vbYellow
Case 3: shpRoundSquare.FillColor = vbGreen
Case 4: shpRoundSquare.FillColor = vbRed
Case 5: shpRoundSquare.FillColor = vbMagenta
End Select
End Sub
SUM AND AVERAGE OF TEST SCORES USING CONTROL ARRAYS:
Here is another example of a control array. This will be if you wanted to figure the sum and average of test scores.
'Calculating Sum and Average
Private Sub cmdCalculate_Click()
For X = 0 to 9
Sum = Sum + val(txtTest(X))
Next X
Average = Sum / 10
End Sub
'Clearing text boxes and totals
Private Sub cmdClear_Click()
For Z = 0 to 9
TxtTest(Z) = ""
Next Z
LblSum = ""
LblAvg = ""
Sum = 0
Average = 0
End Sub
Scroll Bars and RGB Function
Scroll Bar - A control that allows you to see hidden information on the screen. This information can be text, icons or controls.
In VB a scroll bar is used to represent a range of values. Scroll bars are also used to control sound level, color, size and other values that can be changed in small amounts or large increments.
Scroll Box - The little square, which appears inside the scroll bar. Pressing down on the scroll box changes the value property of the scroll bar. Another name for the scroll box is the thumb.
PROPERTIES OF THE SCROLL BAR:
- Min - The smallest value the scroll bar can take on
- Max - The largest value the scroll bar can take on
- Small Change - The distance to move when the user clicks on the scroll arrows
- Large Change - The distance to move when the user clicks on the gray area of the scroll bar
- Value - Indicates the current position of the scroll bar and its corresponding value within the scroll bar.
TYPES OF SCROLL BARS:
- Vertical Scroll Bar - Begins with the prefix "vsb"
- Horizontal Scroll Bar - Begins with a prefix "hsb"
EVENTS OF THE SCROLL BAR:
Change Event - Occurs when the user clicks on the gray area of the scroll bar.
Scroll Event - Occurs when the user drags the scroll box.
As soon as the user releases the mouse botton, the scroll event ceases and a change event occurs. When you write code for the scroll bar, you will want to write code for both Change even and the Scroll event.
SAMPLE PROGRAM USING HORIZONTAL SCROLL BAR:
Private Sub cmdExit_Click()
End
End Sub
Private Sub Form_Load()
Hscroll.Top = (Screen.Height - Hscroll.Height)/2
Hscroll.Left = (Screen.Width - Hscroll.Width)/2
End Sub
Private Sub hsbScroll_Change()
LblValue = hsbScroll.Value
End Sub
Private Sub hsbScroll_Scroll()
LblValue = hsbScroll.Value
End Sub
SAMPLE PROGRAM USING VERTICAL SCROLL BAR:
Private Sub cmdExit_Click()
End
End Sub
Private Sub Form_Load()
Vscroll.Top = (Screen.Height - Vscroll.Height)/2
Vscroll.Left = (Screen.Width - Vscroll.Width)/2
End Sub
Private Sub vsbScroll_Change()
LblValue = vsbScroll.Value
End Sub
Private Sub vsbScroll_Scroll()
LblValue = vsbScroll.Value
End Sub
RGB FUNCTION
The RGB function specifies the quantities of red, green and blue for a large variety of colors. The value for each color ranges from 0 to 255 with 0 being the least intense and 255 being the most intense. The color arguments are in the same order as their letters in the function name, red first, then green and then finally blue. You can use the RGB function to assign the color to a property or specify the color in a graphics method.
Chosen_Color = RGB(RedValue, GreenValue,BlueValue)
Examples:
RGB(0,0,0) 'would be BLACK
RGB(255,255,255) 'would be BRIGHT WHITE
RGB(255,0,0) 'would be RED
RGB(0,255,0) 'would be GREEN
RGB(0,0,255) 'would be BLUE
Multiple Forms, ME Keyword and Conclusion
A VB project can consist of several forms. Each form has its own window, form load section, general declarations section and code window. All of the forms in a project are tied together under the project name. When you run the program, you can switch back and forth between different forms.
StartUp Form - The first form a project displays when the project is loaded.
Load - Loads a form into the computers memory (does not display on screen.)
· Load < form_name >
Unload - Unloads the form from the computers memory. Also, if you're running an execss amount of forms, you should unload them to save up on memory.
· Unload < form_name >
Show - Display the loaded form on the screen.
· < form_name > .Show
Hide - Makes the form disappear. The form will still be loaded into memory. It just will not be displayed on the screen.
· *lt; form_name > .Hide
ME KEYWORD:
You can refer to the current form by using the special keyword ME. Me acts like a variable and refers to the form that is currently active. You can use Me in place of the form name when coding statements and methods.
Examples:
Unload Me 'Unloads the current form that is executing code
Me.Hide 'Hides the form currently executing code
Me.Show 'Shows the form currently executing code
Conclusion:
Alright! Wow, I believe that is an acceptionally well start on Visual Basic 6.0. This tutorial does not cover many things, however you can learn a lot just by playing around with the program. I am sure that I left a lot of things out that I should have put in here, and discussed things I could have left out- but this is my first tutorial, so take it easy! Anyways, hope you enjoy and are ready to code and design in Visual Basic!!!
-bs0d | www.allsyntax.com
Loading Comments ...
Comments
No comments have been added for this post.
You must be logged in to make a comment.