這裏是我的代碼: -我想知道如何將項目添加到一個ArrayList
If FirstNameText.Text = "" Then
MessageBox.Show("Please enter your first name please")
End If
If SurnameText.Text = "" Then
MessageBox.Show("Please enter your surname please")
End If
If (Not RB_Male.Checked) AndAlso (Not RB_Female.Checked) Then
MessageBox.Show("Please select your gender")
End If
If ComboBox1.SelectedValue = False Then
MessageBox.Show("Please select your year group")
End If
If TextStudentID.Text = "" Then
MessageBox.Show("Please select the generate button to give you a unique student ID")
End If
"in this section I want to add all the submitted items to an arraylist so a user's name pops up in the list box"
Try
Catch ex As Exception
End Try
這是我寫了,我到處尋找答案提交項目到一個ArrayList的代碼的唯一位。該區域是我計劃將這些項目提交給數組列表的地方。任何幫助或鏈接到一個很好的指導我們做。
不要使用ArrayList。它仍然存在與舊代碼的兼容性,但沒有充分的理由在新項目中使用它。 –
代碼應該做什麼?目前還不清楚你在嘗試什麼,爲什麼它不起作用。要回答你的標題:'arraylist.Add(yourObject)' –
堅持我會更新整篇文章並解釋我想要做什麼。 – GiordySays