Lesson1:Introduction: 1.1 A Brief Description of Visual Basic
Lesson1:Introduction: 1.1 A Brief Description of Visual Basic
Lesson1 :Introduction
1.1 A brief description of Visual Basic
VISUAL BASIC is a high level programming language evolved from the earlier DOS version called BASIC.
BASIC means Beginners' Allpurpose Symbolic Instruction Code. It is a fairly easy programming language to learn. The codes look a bit like English Language. Different software companies produced different version of BASIC, such as Microsoft QBASIC, QUICKBASIC, GWBASIC ,IBM BASICA and so on. VISUAL BASIC is a VISUAL and events driven Programming Language.These are the main divergence from the old BASIC. In BASIC, programming is done in a text-only environment and the prgram is executed sequentially. In VISUAL BASIC, programming is done in a graphical environment. Because users may click on a certain object randomly, so each object has to be programmed indepently to be able to response to those actions(events).Therefore, a VISUAL BASIC Program is made up of many subprograms, each has its own program codes, and each can be excecuted indepently and at the same time each can be linked together in one way or another.
introduction
The Blank Form window which you can design your application's interface. The Project window displays the files that are created in your application. The Properties window which displays the properties of various controls and objects that are created in your applications.
It also includes a Toolbox that consists of all the controls essential for developing a VB Application. Controls are tools such as boxes, buttons, labels and other objects draw on a form to get input or display output. They also add visual appeal. Figure 1.2: The Visual Basic Enviroment
http://www.vbtutor.net/lesson1.html (2 of 3) [2/23/2003 1:56:16 PM]
introduction
VB lesson2
Example 2.1.1 Private Sub Form_Load For i=1 to 5 print "Hello" next i End Sub
Example 2.1.2 Private Sub Form_Load Form1.show For i=1 to 5 print "Hello" next i End Sub
Example 2.1.3 Private Sub Form_Load Form1.show For i=1 to10 print i next i End Sub
2.2 Steps in Building a Visual Basic Application Step 1 Draw the interface Step 2 Set Properties Step 3 Write the events code Example 2.1 This program is a simple program that calculate the volume of a cylinder. Let design the interface:
VB lesson2
First of all, go to the properties window and change the form caption to Volume Of Cylinder. Then draw three label boxes and change their captions to Base Radius, height andvolume respectively. After that, draw three Text Boxes and clear its text contents so that you get three empty boxes. Named the text boxes asradius ,hght(we cannot use height as it is the built-in control name of VB)and volume respectively. Lastly, insert a command button and change its caption toO.K. and its name to OK. Now save the project as cylinder.vbp and the form as cylinder.vbp as well. We shall leave out the codes at the moment which you shall learn it in lesson3. Example 2.2 Designing an attractive and user friendly interface should be the first step in constructing a VB program. To illustrate, let's look at the calculator program.
VB lesson2
> Now, please follow the following steps to design the calculator interface.
G G
Resize the form until you get the size you are satisfed with. Go to the properties window and change the default caption to the caption you want , such as 32 Calculator-----Designed by Vkliew. Change other properties of the form, such as background color, foreground color , border style.I recommend you set the following properties for Form1 for this calculator program:
These properties will ensure that the users cannot resize or maximize your calculator window, but able to minimize the window.
G
Draw the Display Panel by clicking on the Label button and and place your mouse on the form. Start drawing by pressing down your mouse button and drag it along. Click on the panel and the corresponding properties window will appear. Clear the default label so
VB lesson2
that the caption is blank(because the display panel is supposed to show the number as we click on the number button). It is good to set the background color to a bright color while the foreground color should be something like black..(for easy viewing). Change the name to display as I am going to use it later to write codes for the calculator. Now draw the command buttons that are necessary to operate a calculator. I suggest you follow exactly what is shown in the image above. Test run the project by pressing F5. If you are satisfied with the appearance, go ahead to save the project. At the same time, you should also save the file that contain your form.
Now, I know you are very keen to know how to write the code so that the calculator is working. Please refer to my sample VB programs for the source codes. [Back to contents page]
VB lesson3
Now, doubleclick on the O.K button and enter the codes between Private Sub OK_Click( ) and End Sub Private Sub OK_Click( ) r = Val(radius.Text) h = Val(hght.Text) pi = 22 / 7 v = pi * (r ^ 2) * h volume.Text= Str$(v) End Sub when you run the program , you should be able to see the interface as shown above. if you enter a value each in the radius box and the height box, then click OK, the value of of the Volume will be displayed in the volume box. I shall attempt to explain the above source program to newcomers in Visual Basic( If you are a veteran, you can skip this part) . Let me describe the steps using pseudocodes as follows: Procedure for clicking the OK button to calculate the volume of cylinder get the value of r from the radius text box get the value of h from the height text box assign a constant value 22/7 to pi
VB lesson3
calculate the volume using formula output the results to the Volume text box End of Procedure
The syntax radius.Text consists of two parts, radius is the name of text box while Text is the textual contents of the text box. Generally, the syntax is: Object.Property In our example, the objects are radius, hght and volume, each having text as their property.Object and property is separated by a period(or dot).The contents of a text box can only be displayed in textual form, or in programming term,as string. To convert the contents of a text box to a numeric value so that mathematical operations can be performed , you have to use the function Val. Finally, In order to display the results in a text box, we have to perform the reverse procedure, that is, to convert the numeric value back to the textual form, using the function Str$. I shall also explain the syntax that defines the sub procedure Private Sub OK_click. Private Sub here means that the parameters , values and formulas that are used here belong only to the OK subprocedure(an object by itself).They cannot be used by other sub procedures or modules. OK_Click defines what kind of action the subprocedure OK will response .Here, the action is mouse click. There are other kind of actions like keypress, keyup, keydown and etc that I am going to due with in other lessons. [Back to contents page]
You should set the Caption Property of a control clearly so that a user know what to do with that command. For example, in the calculator program, all the captions of the command buttons such as +, - , MC ,MR are commonly found in an ordinary calculator, a user should have no problem in manipulating the buttons. You should set a meaningful name for the Name Property because it is easier for you to write and read the event procedure and easier to debug your program later. Another property that is important is whether you want your control to be visible or not at start up.This property can only set to be true or false. One more important property is whether the control is enabled or not.
lesson5
Range of Values 0 to 255 -32,768 to 32,767 -2,147,483,648 to 2,147,483,648 -3.402823E+38 to -1.401298E-45 for negative values Single 4 bytes 1.401298E-45 to 3.402823E+38 for positive values. -1.79769313486232e+308 to -4.94065645841247E-324 for negative values Double 8 bytes 4.94065645841247E-324 to 1.79769313486232e+308 for positive values. Currency 8 bytes -922,337,203,685,477.5808 to 922,337,203,685,477.5807 +/- 79,228,162,514,264,337,593,543,950,335 if no decimal is use Decimal 12 bytes +/- 7.9228162514264337593543950335 (28 decimal places).
5.1.2 Non-numeric Data Types the nonnumeric data types are summarised in Table 5.2 Table 5.2: Nonnumeric Data Types
lesson5
Data Type String(fixed length) String(variable length) Date Boolean Object Variant(numeric) Variant(text) 5.1.3 Suffixes for Literals
Storage Length of string Length + 10 bytes 8 bytes 2 bytes 4 bytes 16 bytes Length+22 bytes
Range 1 to 65,400 characters 0 to 2 billion characters January 1, 100 to December 31, 9999 True or False Any embedded object Any value as large as Double Same as variable-length string
Literals are values that you assign to a data. In some cases, we need to add a suffix behind a literal so that VB can handle the calculation more accurately. For example, we can use num=1.3089# for a Double type data. Some of the suffixes are displayed in Table 5.3. Table 5.3
Suffix & ! # @
In additon, we need to enclose string literals within two quotations and date and time literals within two # sign. Strings can contain any characters, including numbers. The following are few examples: memberName="Turban, John." TelNumber="1800-900-888-777" LastDay=#31-Dec-00# ExpTime=#12:00 am# 5.2 Managing Variables Variables are like mail boxes in the post office. The contents of the variables changes every now and then, just like the mail boxes. In term of VB, variables are areas allocated by the computer memory to hold data. Like the mail boxes, each variable must be given a name. To name a variable in Visual Basic,
lesson5
you have to follow a set of rules. 5.2.1 Variable Names The following are the rules when naming the variables in Visual Basic
G G G G
It must be less than 255 characters No spacing is allowed It must not begin with a number Period is not permitted
Examples of valid and invalid variable names are displayed in Table 5.4 Table 5.4 Valid Name My_Car ThisYear Long_Name_Can_beUSE My.Car 1NewBoy He&HisFather Invalid Name
5.2.2 Declaring Variables In Visual Basic, one needs to declare the variables before using them by assigning names and data types. They are normally declared in the genaral section of the codes' windows using the Dim statement. The format is as follows: Dim variableNmae as DataType Example 5.1 Dim password As String Dim yourName As String Dim firstnum As Integer Dim secondnum As Integer Dim total As Integer Dim doDate As Date You may also combine them in one line , separating each variable with a comma, as follows:
lesson5
Dim password As String, yourName As String, firstnum As Integer,............. If data type is not specified, VB will automatically declares the variable as a Variant. For string declaration, there are two possible format, one for the variable-length string and another for the fixed-length string. For the variable-length string, just use the same format as example 5.1 above. However, for the fixed-length string, you have to use the format as shown below: Dim VariableName as String * n, where n definex the number of characters the string can hold. Example 5.2: Dim yourName as String * 10 yourName can holds no more than 10 Characters.
lesson6
6.2 Operators in Visual Basic In order to compute inputs from users and to generate results, we need to use various mathematical operators. In Visual Basic, except for + and -, the symbols for the operators are different from normal mathematical operators,as shown in Table 6.1. Table 6.1
Operator
^ *
/
lesson6
Mod \ + or &
Modulus(return the remainder from an integer division) Integer Division(discards the decimal places) String concatenation
Example 6.1: firstName=Text1.Text secondName=Text2.Text yourName=firstName+secondName number1=val(Text3.Text) number2=val(Text4.Text) number3=num1*(num2^3) number4=number3 Mod 2 number5=number4\number1 Total=number1+number2+number3+number4+number5 Average=Total/5
In lesson, we will see how do we use operators in writing the VB programs codes.
Meaning Equal to More than Less Than More than and equal Less than and equal Not Equal to
* You can also compare strings with the above operators. However, there are certain rules to follows: Upper case letters are less than lowercase letters, "A"<"B"<"C"<"D".......<"Z" and number are less than letters.
7.2 Logical Operators In addition to conditional operators, there are a few logical operators which offer added power to the VB programs. There are shown in Table 7.2. Table 7.2 Operator And or Xor Not Meaning Both sides must be true One side or other must be true One side or other must be true but not both Negates truth
7.3 Using If.....Then.....Else Statements with Opreators To effectively control the VB program flow, we shall use If...Then...Else statement together with the conditonal operators and logical operators. The general format for the if...then...else statement is If conditions Then VB expressions Else VB expressions End If * any If..Then..Else statement must end with End If. Sometime it is not necessary to use Else. Example: Private Sub OK_Click() firstnum = Val(usernum1.Text) secondnum = Val(usernum2.Text) total = Val(sum.Text) If total = firstnum + secondnum And Val(sum.Text) <> 0 Then correct.Visible = True wrong.Visible = False Else correct.Visible = False wrong.Visible = True End If End Sub For more example on If...Then...Else, Click on the [Sample1] and[sample2] program here.
8.2 Examples
Example 8.1 ' Examination Grades Dim grade As String Private Sub Compute_Click( ) grade=txtgrade.Text
http://www.vbtutor.net/lesson8.html (1 of 4) [2/23/2003 1:56:56 PM]
Select Case grade Case "A" result.Caption="High Distinction" Case "A-" result.Caption="Distinction" Case "B" result.Caption="Credit" Case "C" result.Caption="Pass" Case Else result.Caption="Fail" End Select *Please note that grade is a string, so all the case values such as "A" are of String data type.
Example 8.2 Dim mark As Single Private Sub Compute_Click() 'Examination Marks mark = mrk.Text Select Case mark Case Is >= 85 comment.Caption = "Excellence" Case Is >= 70 comment.Caption = "Good" Case Is >= 60 comment.Caption = "Above Average" Case Is >= 50
comment.Caption = "Average" Case Else comment.Caption = "Need to work harder" End Select End Sub * Note we use the keyword Is here to impose the conditions. This is generally used for numeric data.
Example 8.3 Example 8.2 could be rewritten as follows: Dim mark As Single Private Sub Compute_Click() 'Examination Marks mark = mrk.Text Select Case mark Case 0 to 49 comment.Caption = "Need to work harder"
comment.Caption = "Good" Case Else comment.Caption = "Excellence" End Select End Sub
VB lesson7
Lesson 9: Looping
Visual Basic allows a procedure to be repeated as many times as long as the processor could support. This is generally called looping .
9.1 Do Loop
The format are a) Do While condition Block of one or more VB statements Loop b) Do Block of one or more VB statements Loop While condition c) Do Until condition Block of one or more VB statements Loop Do Block of one or more VB statements Loop Until condition Example 9.1 Do while counter <=1000 num.Text=counter counter =counter+1 Loop * The above example will keep on adding until counter >1000.
http://www.vbtutor.net/lesson9.html (1 of 3) [2/23/2003 1:56:59 PM]
d)
VB lesson7
The above example can be rewritten as Do num.Text=counter counter=counter+1 Loop until counter>1000
Example: (a) For counter=1 to 10 display.Text=counter Next (b) For counter=1 to 1000 step 10 counter=counter+1 Next (c) For counter=1000 to 5 step -5 counter=counter-10
VB lesson7
Next
VB lesson7
functionName(arguments) where arguments are values that are passed on to the functions. In this lesson, we are going to learn two very basic but useful internal functions, i.e. the MsgBox( ) and InputBox ( ) functions.
The first argument, Prompt, will display the message in the message box. The Style Value will determine what type of command buttons appear on the message box, please refer Table 10.1 for types of command button displayed. The Title argument will display the title of the message board. Table 10.1: Style Values
Style Value 0 1 2 3 4 5
Named Constant Buttons Displayed vbOkOnly Ok button vbOkCancel Ok and Cancel buttons vbAbortRetryIgnore Abort, Retry and Ignore buttons. vbYesNoCancel Yes, No and Cancel buttons vbYesNo Yes and No buttons vbRetryCancel Retry and Cancel buttons
VB lesson7
We can use named constant in place of integers for the second argument to make the programs more readable. Infact, VB6 will automatically shows up a list of names constant where you can select one of them. example: yourMsg=MsgBox( "Click OK to Proceed", 1, "Startup Menu") and yourMsg=Msg("Click OK to Proceed". vbOkCancel,"Startup Menu") are the same. yourMsg is a variable that holds values that are returned by the MsgBox ( ) function. The values are determined by the type of buttons being clicked by the users. It has to be declared as Integer data type in the procedure or in the general declaration section. Table 10.2 shows the values, the corresponding named constant and buttons. Table 10.2 : Return Values and Command Buttons Value 1 2 3 4 5 6 7 Example 10.1 i. The Interface: You draw three command buttons and a label as shown in Figure 10.1 Figure 10.1 Named Constant Button Clicked vbOk Ok button vbCancel Cancel button vbAbort Abort button vbRetry Retry button vbIgnore Ignore button vbYes Yes button vbNo No button
VB lesson7
Private Sub Test_Click() Dim testmsg As Integer testmsg = MsgBox("Click to test", 1, "Test message") If testmsg = 1 Then Display.Caption = "Testing Successful" Else Display.Caption = "Testing fail" End If End Sub
When a user click on the test button, the image like the one shown in Figure 10.2 will appear. As the user click on the OK button, the message "Testing sucessful" will be diplayed and when he/she clicks on the Cancel button, the message "Testing fail" will be displayed. Figure 10.2
VB lesson7
To make the message box looks more sophisticated, you can add an icon besides the message. The are four types of icons available in VB as shown in Table 10.3
Table 10.3
Value 16 32 48 64
Example 10.2 In this example, the following message box will be displayed: Figure 10.3
VB lesson7
You could draw the same Interface as in example 10.1 but modify the codes as follows:
Private Sub test2_Click() Dim testMsg2 As Integer testMsg2 = MsgBox("Click to Test", vbYesNoCancel + vbExclamation, "Test Message") If testMsg2 = 6 Then display2.Caption = "Testing successful" ElseIf testMsg2 = 7 Then display2.Caption = "Are you sure?" Else display2.Caption = "Testing fail" End If End Sub
myMessage=InputBox(Prompt, Title, default_text, x-position, y-position) myMessage is a variant data type but typically it is declared as string, which accept the message input bu the users.The arguments are explained as follows:
G G G
Prompt - The message displayed normally as a question asked. Title - The title of the Input Box. default-text - The default text that appears in the input field where users can use it as his intended input or he may change to the message he wish to key in. x-position and y-position - the position or the coordinate of the input box.
VB lesson7
ii. The procedure for the OK button Private Sub OK_Click() Dim userMsg As String userMsg = InputBox("What is your message?", "Message Entry Form", "Enter your messge here", 500, 700) If userMsg <> "" Then message.Caption = userMsg Else message.Caption = "No Message" End If End Sub When a user click the OK button, the input box as shown in Figure 10.5 will appear. After user entering the message and click OK, the message will be displayed on the caption, if he click Cancel, "No
http://www.vbtutor.net/lesson10.html (6 of 7) [2/23/2003 1:57:04 PM]
VB lesson7
lesson11
Example 11.1 In this example, a user can calculate future value of a certain amount of money he has today based on the interest rate and the number of years from now(supposing he will invest this amount of money somewhere). The calculation is based on the compound interest rate.
lesson11
'Formula to calculate Future Value(FV) 'PV denotes Present Value FV = PV * (1 + i / 100) ^ n End Function Private Sub compute_Click() 'This procedure will calculate Future Value Dim FutureVal As Variant Dim PresentVal As Variant Dim interest As Variant Dim period As Variant PresentVal = PV.Text interest = rate.Text period = years.Text FutureVal = FV(PresentVal, interest, period) MsgBox ("The Future Value is " & FutureVal) End Sub Example 11.2 The following program will automatically compute examination grades based on the marks that a student obtained.
lesson11
Case Is >= 80 grade = "A" Case Is >= 70 grade = "B" Case Is >= 60 grade = "C" Case Is >= 50 grade = "D" Case Is >= 40 grade = "E" Case Else grade = "F" End Select End Function Private Sub compute_Click() grading.Caption = grade(mark)
End Sub Private Sub End_Click() End End Sub [Back to contents page]
lesson11
In the above table, if a saleman attain a sale volume of $6000, he will be paid $6000x12%=$720.00. A visual basic function to calculate the commissions could be written as follows: Function Comm(Sales_V As Variant) as Variant If Sales_V <500 Then Comm=Sales_V*0.03 Elseif Sales_V>=500 and Sales_V<1000 Then Comm=Sales_V*0.06 Elseif Sales_V>=1000 and Sales_V<2000 Then Comm=Sales_V*0.09 Elseif Sales_V>=200 and Sales_V<5000 Then Comm=Sales_V*0.12 Elseif Sales_V>=5000 Then Comm=Sales_V*0.15 End If End Function 12.2 Using Microsoft Excel Visual Basic Editor To create User Defined functions in MS Excel, you can click on tools, select macro and then click on Visual Basic Editor as shown in Figure 12.1
lesson11
Upon clicking the Visual Basic Editor, the VB Editor windows will appear as shown in figure 12.2. To create a function, type in the function as illustrated in section 12.1 above After typing, save the file and then return to the Excel windows. Figure 12.2 : The VB Editor
lesson11
In the Excel windows, type in the titles Sales Volume and Commissions in any two cells. By refering to figure 12.3, key-in the Comm function at cell C4 and by referencing the value in cell B4, using the format Comm(B4). Any value appear in cell B4 will pass the value to the Comm function in cell C4. For the rest of the rows, just copy the formula by draging the bottom right corner of cell C4 to the required cells, and a nice and neat table that show the commisions will automatically appear. It can also be updated anytime
lesson11
Lesson 13
Lesson 13
The codes Dim studentName(10) As String Dim num As Integer Private Sub addName() For num = 1 To 10 studentName(num) = InputBox("Enter the student name", "Enter Name", "", 1500, 4500) If studentName(num) <> "" Then Form1.Print studentName(num) Else End End If
http://www.vbtutor.net/lesson13.html (2 of 4) [2/23/2003 1:57:53 PM]
Lesson 13
Private Sub Exit_Click() End End Sub Private Sub Start_Click() Form1.Cls addName End Sub The above program accepts data entry through an input box and displays the entries in the form itself. As you can see, this program will only allows a user to enter 10 names each time he click on the start button. (ii) The Interface
Lesson 13
The Codes Dim studentName(10) As String Dim num As Integer Private Sub addName( ) For num = 1 To 10 studentName(num) = InputBox("Enter the student name") List1.AddItem studentName(num) Next End Sub
Private Sub Start_Click() addName End Sub The above program accepts data entries through an InputBox and displays the items in a list box.
lesson14
lesson14
StudentName = InputBox("Enter the student Name") Print #1, StudentName intMsg = MsgBox("Writing a" & StudentName & " to sample.txt ") Close #1 intMsg = MsgBox("File sample.txt closed") End Sub * The above program will create a file sample.txt in the My Documents' folder and ready to receive input from users. Any data input by users will be saved in this text file.
14.3 Reading files To read a file created in section 14.2, you can use the input # statemment. However, we can only read the file according to the format when it was written. You have to open the file according to its file number and the variable that hold the data. We also need to declare the variable using the DIM command. 14.3.1 Sample Program: Reading file Private Sub Reading_Click() Dim variable1 As String Open "c:\My Documents\sample.txt" For Input As #1 Input #1, variable1 Text1.Text = variable1 Close #1 End Sub * This program will open the sample.txt file and display its contents in the Text1 textbox.
Lesson 15
Lesson 15: Creating Multimedia Applications You can create various multimedia applications in VB that could play audio CD, audiofiles, VCD , video files and etc. To be able to play multimedia files or multimedia devices, you have to insert Microsoft Multimedia Control into your VB applications that you are going to create. However, Microsoft Multimedia Control is not normally included in the startup toolbox, therefore you need to add the MM control by pressing Ctrl+T and select it from the components dialog box that is displayed. 15.1 Creating a CD player (a) The Interface.
Lesson 15
First of all, you place a Multimedia control into your form and rename it as any name of your choice. Here I use myCD to replace the default name MMControl1. Next, you can put two labels on your form, change caption of the left label to Track and rename the one on the right to trackNum and make its caption invisible(this lable is to display CD track numbers at runtime.). Finally, put five command buttons in your form and name them as Play, Next, Previous, Stop and Exit. You can also choose to make the MM Control visible or invisible at runtime. If you choose to make it visible,you could play the CD using the buttons available on the control itself or you can click on the buttons at the bottom that are created by you. (b) The Code Private Sub Form_Load() To position the page at the center Left = (Screen.Width C Width) \ 2 Top = (Screen.Height C Height) \ 2 Open the CD myCD.Command = Open End Sub Private Sub myCD_StatusUpdate() Update the track number trackNum.Caption = myCD.Track End Sub Private Sub Next_Click() myCD.Command = Next End Sub
http://www.vbtutor.net/lesson15.htm (2 of 3) [2/23/2003 1:58:06 PM]
Lesson 15
Private Sub Play_Click() myCD.Command = Play End Sub Private Sub Previous_Click() myCD.Command = Prev End Sub Private Sub Stop_Click() myCD.Command = Stop End Sub Private Sub Exit_Click() End End Sub [Back to Content Page]
The Interface
ComboBox- to display and enable selection of different type of files. DriveListBox- to allow selection selection of different drives available on your PC. DirListBox - To display directories TextBox - To display selected files FileListBox- To display files that are available
Relevant codes must be written to coordinate all the above controls so that the application can work properly. The program should flow in the following logical way: Step 1: User choose the type of files he wants to play. Step2:User selects the drive that might contains the relevant audio files. Step 3:User looks into directories and subdirectories for the files specified in step1. The files should be displayed in the FileListBox. Step 4: User selects the files from the FileListBox and click the Play button. Step 5: User click on the Stop to stop playing and Exit button to end the application. The Interface
The Interface
The Code Private Sub Combo1_Change() ' to determine file type If ListIndex = 0 Then File1.Pattern = ("*.wav") ElseIf ListIndex = 1 Then File1.Pattern = ("*.mid") Else Fiel1.Pattern = ("*.*") End If End Sub Private Sub Dir1_Change() 'To change directories and subdirectories(or folders and subfolders)
File1.Path = Dir1.Path
http://www.vbtutor.net/lesson16.htm (2 of 5) [2/23/2003 1:58:13 PM]
The Interface
If Combo1.ListIndex = 0 Then File1.Pattern = ("*.wav") ElseIf Combo1.ListIndex = 1 Then File1.Pattern = ("*.mid") Else File1.Pattern = ("*.*") End If End Sub Private Sub Drive1_Change() 'To change drives Dir1.Path = Drive1.Drive End Sub Private Sub File1_Click() If Combo1.ListIndex = 0 Then File1.Pattern = ("*.wav") ElseIf Combo1.ListIndex = 1 Then File1.Pattern = ("*.mid") Else File1.Pattern = ("*.*") End If If Right(File1.Path, 1) <> "\" Then filenam = File1.Path + "\" + File1.FileName Else filenam = File1.Path + File1.FileName End If Text1.Text = filenam End Sub Private Sub Form_Load() 'To center the Audioplayer startup page
The Interface
Combo1.AddItem "*.wav" Combo1.AddItem "*.mid" Combo1.AddItem "All files" End Sub Private Sub AudioPlayer_Click() End Sub
Command2_Click If Combo1.ListIndex = 0 Then AudioPlayer.DeviceType = "WaveAudio" ElseIf Combo1.ListIndex = 1 Then AudioPlayer.DeviceType = "Sequencer" End If AudioPlayer.FileName = Text1.Text AudioPlayer.Command = "Open" AudioPlayer.Command = "Play" End Sub Private Sub stop_Click() If AudioPlayer.Mode = 524 Then Exit Sub If AudioPlayer.Mode <> 525 Then AudioPlayer.Wait = True AudioPlayer.Command = "Stop" End If AudioPlayer.Wait = True AudioPlayer.Command = "Close" End Sub Private Sub Exit_Click() End End Sub
The Interface
Lesson 16
ComboBox- to display and enable selection of different type of files. DriveListBox- to allow selection selection of different drives available on your PC. DirListBox - To display directories TextBox - To display selected files FileListBox- To display files that are available
Relevant codes must be written to coordinate all the above controls so that the application can work properly. The program should flow in the following logical way: Step 1: User choose the type of files he wants to play. Step2:User selects the drive that might contains the relevant graphic files. Step 3:User looks into directories and subdirectories for the files specified in step1. The files should be displayed in the FileListBox. Step 4: User selects the files from the FileListBox and click the Show button. Step 5: User click on Exit button to end the application. The Interface
Lesson 16
[Test run the program] The Code Private Sub Form_Load() Left = (Screen.Width - Width) \ 2 Top = (Screen.Height - Height) \ 2 Combo1.Text = "All graphic files" Combo1.AddItem "All graphic files" Combo1.AddItem "All files" End Sub Private Sub Combo1_Change() If ListIndex = 0 Then
Lesson 16
File1.Pattern = ("*.bmp;*.wmf;*.jpg;*.gif") Else Fiel1.Pattern = ("*.*") End If End Sub Private Sub Dir1_Change() File1.Path = Dir1.Path File1.Pattern = ("*.bmp;*.wmf;*.jpg;*.gif") End Sub Private Sub Drive1_Change() Dir1.Path = Drive1.Drive End Sub Private Sub Exit_Click() End End Sub Private Sub File1_Click() If Combo1.ListIndex = 0 Then File1.Pattern = ("*.bmp;*.wmf;*.jpg;*.gif") Else File1.Pattern = ("*.*") End If If Right(File1.Path, 1) <> "\" Then filenam = File1.Path + "\" + File1.FileName Else filenam = File1.Path + File1.FileName End If Text1.Text = filenam End Sub Private Sub play_Click() MMPlayer.FileName = Text1.Text End Sub
Private Sub show_Click() If Right(File1.Path, 1) <> "\" Then filenam = File1.Path + "\" + File1.FileName Else filenam = File1.Path + File1.FileName End If
Lesson 16
Lesson 16
ComboBox- to display and enable selection of different type of files. DriveListBox- to allow selection selection of different drives available on your PC. DirListBox - To display directories TextBox - To display selected files FileListBox- To display files that are available
Relevant codes must be written to coordinate all the above controls so that the application can work properly. The program should flow in the following logical way: Step 1: User choose the type of files he wants to play. Step2:User selects the drive that might contains the relevant audio files. Step 3:User looks into directories and subdirectories for the files specified in step1. The files should be displayed in the FileListBox. Step 4: User selects the files from the FileListBox and click the Play button. Step 5: User click on the Stop to stop playing and Exit button to end the application. The Interface
Lesson 16
[Test run the program] The Code Private Sub Form_Load() Left = (Screen.Width - Width) \ 2 Top = (Screen.Height - Height) \ 2 Combo1.Text = "*.wav" Combo1.AddItem "*.wav" Combo1.AddItem "*.mid" Combo1.AddItem "*.avi;*.mpg" Combo1.AddItem "All files"
Lesson 16
End Sub Private Sub Combo1_Change() If ListIndex = 0 Then File1.Pattern = ("*.wav") ElseIf ListIndex = 1 Then File1.Pattern = ("*.mid") ElseIf ListIndex = 2 Then File1.Pattern = ("*.avi;*.mpg") Else Fiel1.Pattern = ("*.*") End If End Sub Private Sub Dir1_Change() File1.Path = Dir1.Path If Combo1.ListIndex = 0 Then File1.Pattern = ("*.wav") ElseIf Combo1.ListIndex = 1 Then File1.Pattern = ("*.mid") ElseIf Combo1.ListIndex = 2 Then File1.Pattern = ("*.avi;*.mpg") Else File1.Pattern = ("*.*") End If End Sub Private Sub Drive1_Change() Dir1.Path = Drive1.Drive End Sub Private Sub Exit_Click() End End Sub Private Sub File1_Click() If Combo1.ListIndex = 0 Then File1.Pattern = ("*.wav") ElseIf Combo1.ListIndex = 1 Then File1.Pattern = ("*.mid") ElseIf Combo1.ListIndex = 2 Then
Lesson 16
File1.Pattern = ("*.avi;*.mpg") Else File1.Pattern = ("*.*") End If If Right(File1.Path, 1) <> "\" Then filenam = File1.Path + "\" + File1.FileName Else filenam = File1.Path + File1.FileName End If Text1.Text = filenam End Sub
Private Sub MMPlayer_Click() End Sub Private Sub Picture1_Click() End Sub Private Sub play_Click() MMPlayer.FileName = Text1.Text MMPlayer.Command = "Open" MMPlayer.Command = "Play" MMPlayer.hWndDisplay = videoscreen.hWnd End Sub Private Sub stop_Click() If MMPlayer.Mode = 524 Then Exit Sub If MMPlayer.Mode <> 525 Then MMPlayer.Wait = True MMPlayer.Command = "Stop" End If MMPlayer.Wait = True MMPlayer.Command = "Close" End Sub [Back to Content Page]
Lesson 16
Search:
Software
Go!
Browse:
All Categories
Go!
List Price: $109.00 Price: $99.99 You Save: $9.01 ( 8%) Special Offers: $20.00 Price After Special $79.99 Offers:
Amazon.com.uk More than just a programming language, Visual Basic .NET is a visual development Add to my Wish List Or buy used: $85.00 tool for Windows. Building an application is a matter of first creating a visual interface using the drag-and-drop form designer, and then writing code to bring the interface to life. Visual Basic is popular with... Read more
You may also be interested in these items...
Show items that are:
Submit Query