我被困在关于简单航空公司预订的问题上。
- 10个文本框被添加到表单上
- 1-5 文本框仅适用于吸烟区
- 6-10 文本框仅限非吸烟区。
扭曲是通过使用输入框输入用户输入 1 作为吸烟者和 2 作为非吸烟者。
如果用户键入 1,则座位文本框必须由计算机随机放置,而不是由用户设置(文本框 1-5),非吸烟者也是如此。
我们的老师给出了有关为文本框制作数组的提示,但似乎对它的工作原理一无所知。
基本上座位预留。
不确定在这段代码中我需要添加什么。
Dim reserve() As TextBox = {smokingtxt1, smokingtxt2, smokingtxt3, smokingtxt4, smokingtxt5}
Dim reserve1() As TextBox = {nonsmokingtxt1, nonsmokingtxt2, nonsmokingtxt3, nonsmokingtxt4, nonsmokingtxt5}
Dim notification As Integer
notification = InputBox("Enter 1 or 2")
If notification = 1 Then
For Each i As TextBox In reserve
i.Text = "Reserve"
Next
ElseIf notification = 2 Then
For Each j As TextBox In reserve1
Randomize()
Next
Else
MessageBox.Show("Invalid operation")
End If