Rem === 你對現在的薪水滿意嗎 ===
Rem === Command1, Command2, Label1
Private Sub Form_Load()
Rem Form1.BorderStyle = 0
Form1.Top = 0
Form1.Left = 0
Form1.Width = Screen.Width
Form1.Height = Screen.Height
Label1.Caption = "老闆問你:你對現在的薪水滿意嗎?"
Command1.Caption = "很滿意"
Command2.Caption = "不滿意"
End Sub
Private Sub Command1_Click()
Label1.Caption = "老闆說:那就不用加薪了喔!"
End Sub
Private Sub Command2_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Randomize
Command2.Left = (Form1.Width - Command2.Width) * Rnd
Command2.Top = (Form1.Height - Command2.Height) * Rnd
End Sub