Load Data Ke ListBox
.
Untuk VB.6 Codingnya Adalah :
With djie_List1
.Clear
For i = 0 To 100
.AddItem "Item Ke " & i
Next
.ListIndex = 0
End With
Untuk VB.NET Codingnya Adalah :
With djie_ListBox1
.Items.Clear()
For i As Double = 0 To 10
.Items.Add("Item Ke " & i.ToString)
Next
.SelectedIndex = 0
End With
Atau Memakai Array, Codingnay Adalah :
With djie_ListBox1
.Items.Clear()
.Items.AddRange(New String() {"Item Ke " & 0, "Item Ke " & 1, "Item Ke " & 2, "Item Ke " & 3})
.SelectedIndex = 0
End With
Untuk VB.6 Codingnya Adalah :
With djie_List1
.Clear
For i = 0 To 100
.AddItem "Item Ke " & i
Next
.ListIndex = 0
End With
Untuk VB.NET Codingnya Adalah :
With djie_ListBox1
.Items.Clear()
For i As Double = 0 To 10
.Items.Add("Item Ke " & i.ToString)
Next
.SelectedIndex = 0
End With
Atau Memakai Array, Codingnay Adalah :
With djie_ListBox1
.Items.Clear()
.Items.AddRange(New String() {"Item Ke " & 0, "Item Ke " & 1, "Item Ke " & 2, "Item Ke " & 3})
.SelectedIndex = 0
End With
Posting Komentar untuk "Load Data Ke ListBox"