Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.

Private Sub Command1_Click()
listedekiler.Caption = ("0")
liste.Clear
End Sub
Private Sub ekle_Click()
liste.AddItem isim.Text
listedekiler.Caption = listedekiler.Caption + 1
End Sub
Private Sub kura_Click()
Dim aboo67
If listedekiler.Caption = ("0") Then
MsgBox "Hata Liste Boş", vbCritical, "aboo67"
Else
aboo67 = listedekiler.Caption
liste.ListIndex = Int(Rnd * aboo67)
MsgBox liste, vbDefaultButton1, "aboo67"
End If
End Sub