对于一个学校项目,我被要求使用 Visual Basic 在 Windows 窗体应用程序中创建一个虚拟自动售货机。我已经完成了大约 80%,但我有一些问题我已经研究了多次,但仍然找不到帮助。
首先,当我在自动售货机上购买商品时,如果剩余的信用(零钱)低于产品原价,它会显示一条错误消息,提示您没有足够的信用来购买该产品。如果信用不足以预先购买产品而不是在购买后立即购买,我该如何制作它才显示该消息?
其次,我将如何为购买后剩余的信用建立一个系统,因为目前我只有一个信用返回按钮,用户可以使用它来提取购买后剩余的信用,而不是发放零钱的制度。
最后,我将如何做到这一点,因此不允许用户在文本框中输入文本,因为自动售货机使用两个文本框,一个显示信用,另一个显示其他一般信息,例如澄清您已经购买某种产品或您没有足够的信用来购买某种产品。
到目前为止,这是我的代码:
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
RichTextBox1.Text = "You Have Selected Galaxy Caramel, Please Insert 60p"
If credit >= 60 Then RichTextBox1.Text = "Thank you for purchasing a Galaxy Caramel bar"
credit = credit - 60
TextBox1.Text = credit
If credit < 60 Then RichTextBox1.Text = "You do not have enough credit to purchase a Galaxy Caramel Bar"
End Sub
Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
RichTextBox1.Text = "You Have Selected Cadburys Milk Chocolate, Please Insert 75p"
If credit >= 75 Then RichTextBox1.Text = "Thank you for purchasing a Cadburys Milk Chocolate Bar"
credit = credit - 75
TextBox1.Text = credit
If credit < 75 Then RichTextBox1.Text = "You do not have enough credit to purchase a Cadburys Milk Chocolate Bar"
End Sub
Private Sub Button3_Click(sender As System.Object, e As System.EventArgs) Handles Button3.Click
RichTextBox1.Text = "You Have Selected Bounty, Please Insert 70p"
If credit >= 70 Then RichTextBox1.Text = "Thank you for purchasing a Bounty bar"
credit = credit - 70
TextBox1.Text = credit
If credit < 70 Then RichTextBox1.Text = "You do not have enough credit to purchase a Bounty Bar"
End Sub
Private Sub Button4_Click(sender As System.Object, e As System.EventArgs) Handles Button4.Click
RichTextBox1.Text = "You Have Selected Yorkie, Please Insert 60p"
If credit >= 60 Then RichTextBox1.Text = "Thank you for purchasing a Yorkie bar"
credit = credit - 60
TextBox1.Text = credit
If credit < 60 Then RichTextBox1.Text = "You do not have enough credit to purchase a Yorkie Bar"
End Sub
Private Sub Button8_Click(sender As System.Object, e As System.EventArgs) Handles Button8.Click
RichTextBox1.Text = "You Have Selected Doritos Tangy Cheese, Please Insert 85p"
If credit >= 85 Then RichTextBox1.Text = "Thank you for purchasing Doritos Tangy Cheese Crisps"
credit = credit - 85
TextBox1.Text = credit
If credit < 85 Then RichTextBox1.Text = "You do not have enough credit purchase Doritos Tangy Cheese Crisps"
End Sub
Private Sub Button7_Click(sender As System.Object, e As System.EventArgs) Handles Button7.Click
RichTextBox1.Text = "You Have Selected Doritos Cool Original, Please Insert 75p"
If credit >= 75 Then RichTextBox1.Text = "Thank you for purchasing Doritos Cool Original Crisps"
credit = credit - 75
TextBox1.Text = credit
If credit < 75 Then RichTextBox1.Text = "You do not have enough credit to purchase Doritos Cool Original Crisps"
End Sub
Private Sub Button6_Click(sender As System.Object, e As System.EventArgs) Handles Button6.Click
RichTextBox1.Text = "You Have Selected Walkers Cheese & Onion, Please Insert 70p"
If credit >= 70 Then RichTextBox1.Text = "Thank you for purchasing Walkers Cheese & Onion Crisps"
credit = credit - 70
TextBox1.Text = credit
If credit < 70 Then RichTextBox1.Text = "You do not have enough credit to purchase Walkers Cheese & Onion Crisps"
End Sub
Private Sub Button5_Click(sender As System.Object, e As System.EventArgs) Handles Button5.Click
RichTextBox1.Text = "You Have Selected Mccoy's Cheddar, Please Insert 80p"
If credit >= 80 Then RichTextBox1.Text = "Thank you for purchasing Mccoy's Cheddar Crisps"
credit = credit - 80
TextBox1.Text = credit
If credit < 80 Then RichTextBox1.Text = "You do not have enough credit to purchase Mccoy's Cheddar Crisps"
End Sub
Private Sub Button9_Click(sender As System.Object, e As System.EventArgs) Handles Button9.Click
RichTextBox1.Text = "You Have Selected Pepsi Max, Please Insert £1.10"
If credit >= 110 Then RichTextBox1.Text = "Thank you for purchasing Pepsi Max"
credit = credit - 110
TextBox1.Text = credit
If credit < 110 Then RichTextBox1.Text = "You do not have enough credit to purchase Pepsi Max"
End Sub
Private Sub Button12_Click(sender As System.Object, e As System.EventArgs) Handles Button12.Click
RichTextBox1.Text = "You Have Selected Mountain Dew, Please Insert 99p"
If credit >= 99 Then RichTextBox1.Text = "Thank you for purchasing Mountain Dew"
credit = credit - 99
TextBox1.Text = credit
If credit < 99 Then RichTextBox1.Text = "You do not have enough credit to purchase Mountain Dew"
End Sub
Private Sub Button10_Click(sender As System.Object, e As System.EventArgs) Handles Button10.Click
RichTextBox1.Text = "You Have Selected Fanta, Please Insert £1.05"
If credit >= 105 Then RichTextBox1.Text = "Thank you for purchasing Fanta"
credit = credit - 105
TextBox1.Text = credit
If credit < 105 Then RichTextBox1.Text = "You do not have enough credit to purchase Fanta"
End Sub
Private Sub Button11_Click(sender As System.Object, e As System.EventArgs) Handles Button11.Click
RichTextBox1.Text = "You Have Selected Dr.Pepper, Please Insert £1.20"
If credit >= 120 Then RichTextBox1.Text = "Thank you for purchasing Dr.Pepper"
credit = credit - 120
TextBox1.Text = credit
If credit < 120 Then RichTextBox1.Text = "You do not have enough credit to purchase Dr.Pepper"
End Sub
Private Sub Button13_Click(sender As System.Object, e As System.EventArgs) Handles Button13.Click
RichTextBox1.Text = "You Have Selected Buxton Mineral Water, Please Insert 90p"
If credit >= 90 Then RichTextBox1.Text = "Thank you for purchasing Buxton Mineral Water"
credit = credit - 90
TextBox1.Text = credit
If credit < 90 Then RichTextBox1.Text = "You do not have enough credit to purchase Buxton Mineral Water"
End Sub
Private Sub Button14_Click(sender As System.Object, e As System.EventArgs) Handles Button14.Click
credit = credit + 1
TextBox1.Text = credit
End Sub
Private Sub Button21_Click(sender As System.Object, e As System.EventArgs) Handles Button21.Click
credit = credit + 2
TextBox1.Text = credit
End Sub
Private Sub Button20_Click(sender As System.Object, e As System.EventArgs) Handles Button20.Click
credit = credit + 5
TextBox1.Text = credit
End Sub
Private Sub Button19_Click(sender As System.Object, e As System.EventArgs) Handles Button19.Click
credit = credit + 10
TextBox1.Text = credit
End Sub
Private Sub Button18_Click(sender As System.Object, e As System.EventArgs) Handles Button18.Click
credit = credit + 20
TextBox1.Text = credit
End Sub
Private Sub Button17_Click(sender As System.Object, e As System.EventArgs) Handles Button17.Click
credit = credit + 50
TextBox1.Text = credit
End Sub
Private Sub Button16_Click(sender As System.Object, e As System.EventArgs) Handles Button16.Click
credit = credit + 100
TextBox1.Text = credit
End Sub
Private Sub Button15_Click(sender As System.Object, e As System.EventArgs) Handles Button15.Click
credit = credit + 200
TextBox1.Text = credit
End Sub
Private Sub Button22_Click(sender As System.Object, e As System.EventArgs) Handles Button22.Click
credit = 0
TextBox1.Text = credit
RichTextBox1.Text = "Credit has been returned"
End Sub
Private Sub TextBox1_TextChanged(sender As System.Object, e As System.EventArgs) Handles TextBox1.TextChanged
If credit < 0 Then credit = 0
TextBox1.Text = credit
If credit >= 1000 Then credit = 1000
TextBox1.Text = credit
If credit = 1000 Then RichTextBox1.Text = "Maximum credit of £10"
End Sub
Private Sub Button23_Click(sender As System.Object, e As System.EventArgs) Handles Button23.Click
RichTextBox1.Text = "You Have Selected Monster Munch, Please Insert 90p"
If credit >= 90 Then RichTextBox1.Text = "Thank you for purchasing Monster Munch Crisps"
credit = credit - 90
TextBox1.Text = credit
If credit < 90 Then RichTextBox1.Text = "You do not have enough credit to purchase Monster Munch Crisps"
End Sub
结束类