0
我工作的一個快速的項目我的VB類和我碰到的一個問題。我是新來的語言,所以我有我在做什麼知之甚少......目前,我有一個非常非常簡單的程序設置爲一個RSVP列表。我有它設置了一個TXT框插入一個名稱列表框和男/女單選按鈕有超過21複選框和一個提交按鈕發送該信息的列表框。我想要做的就是以某種方式結合一個循環計數器增加一個標籤,當每添加一個名字不言而喻,直到它到達15,它就會顯示一個消息框。這可能沒有任何用途的循環,但我只是想擠在某處,因爲這是一個任務的要求。包含一個簡單的for循環在VB
我的代碼(是的,我知道這是不好)
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub SubmitBtn1_Click(sender As Object, e As EventArgs) Handles SubmitBtn1.Click
Dim NamesInput As String
NamesInput = NamesTxt1.Text
If GenderRdBtn1.Checked = False And GenderRdBtn2.Checked = False Then
MessageBox.Show("Please Select a Gender")
ElseIf GenderRdBtn1.Checked = True Then
MessageBox.Show("Congratulations! You Have RSVP'd as " & NamesInput)
Else
MessageBox.Show("Congratulations! You Have RSVP'd as " & NamesInput)
End If
If AgeChk1.Checked = True Then
NamesLstBox1.Items.Add(NamesInput & "/Over 21")
Else
NamesLstBox1.Items.Add(NamesInput)
End If
If GenderRdBtn1.Checked = False And GenderRdBtn2.Checked = False Then
NamesLstBox1.Items.RemoveAt(0)
End If
End Sub
感謝您的幫助!
某處的是,這是非常不必要的,哈哈,但是這正是我一直在尋找這樣非常感謝你! – user2934526