In Visual Basic, the combo box is a control that can store a list of items. Is it possible to count the number of items that is stored in the combo box? The answer is yes. The keyword to use is the ListCount property. However, in order to count the items according to categories, we have to use the For....Next loop to accomplish the task.
I have written a program to count the number of students who score A, B, C and D respectively. In this program, the user click the "Add Item" button to enter the grades from an Input Box. After entering all the grades, the user can get the statistics by pressing the 'Count" button.
The code is as follows:
Private Sub Command1_Click()
Dim item As String
item = InputBox("Enter an item")
Combo1.AddItem item
End Sub
Private Sub Command2_Click()
Dim count, i As Integer
Dim item1, item2, item3, item4 As Variant
count = Combo1.ListCount
For i = 0 To count
Combo1.Text = Combo1.List(i)
If Combo1.Text = "A" Then
item1 = item1 + 1
ElseIf Combo1.Text = "B" Then
item2 = item2 + 1
ElseIf Combo1.Text = "C" Then
item3 = item3 + 1
ElseIf Combo1.Text = "D" Then
item4 = item4 + 1
End If
Next
Lbl_A.Caption = item1
Lbl_B.Caption = item2
Lbl_C.Caption = item3
Lbl_D.Caption = item4
End Sub
The Output Screen:
3 comments:
cool blog
Sir,
I want to create a students' database.Using that I have to assign grades to each student according to their rank.For example,if there are 10 students are there in a class the vb programme should identify top 2 students based on their marks and award 'O'grade to them;next 2 students should be given 'D' grade, and so on.
Please help me .
I would like to know how to add the number of combo boxes. I am using control arrays for them I have 6 combo boxes using arrays. so I want to be able to generate the number of how many combo boxes that have inputted data.
e.g. 5 have inputted data, the program will put the number 5 in a text box.
If anybody know how to do this please post.
Post a Comment