訪客只能看到部份內容,免費 加入會員 或由臉書 Google 可以看到全部內容
下面是引用小漢於2005-12-17 15:57發表的 : 可以用二個Command去寫呀!不然就是利用MsgBox的回傳值來決定是要提款還是要存錢^^
Dim MONEY As Integer Private Sub Command1_Click() If Val(Text2) < 0 Then If Val(Text2) < MONEY Then MONEY = MONEY + Val(Text2) MsgBox ("提款金額=" + Text2 + Chr(13) + "你餘款剩" & MONEY) Else MsgBox "想搶劫嗎?" End If Else MONEY = MONEY + Val(Text2) MsgBox ("存款金額=" + Text2 + Chr(13) + "你的存款有" & MONEY) End If a = MsgBox("繼續交易", 52, "123銀行") If a = 6 Then Text2 = "" Else End End If End Sub Private Sub Form_Load() MONEY = 1000 End Sub