Demo Combo Box:
1. Open a new project 2. double click the command button on the toolbox 3. Form_Load code is as below:
the results as below:
1. Open a new project 2. double click the command button on the toolbox 3. Form_Load code is as below:
Private Sub Form_Load()
Combo1.Clear
Combo1.AddItem "senin"
Combo1.AddItem "selasa"
Combo1.AddItem "rabu"
Combo1.AddItem "kamis"
Combo1.AddItem "jum'at"
Combo1.AddItem "sabtu"
Combo1.AddItem "minggu"
End Sub
the results as below: