邮件已发送
Private Sub Form_Click()
End
End Sub
Private Sub Form_Load()
'Me.ControlBox设置为FALSE
Me.BorderStyle = 0
Timer1.Interval = 100
Me.Caption = ""
Me.BackColor = vbBlack
Line1.BorderWidth = 10 * Rnd
Line1.BorderColor = RGB(255 * Rnd, 255 * Rnd, 255 * Rnd)
Me.Move 0, 0, Screen.Width, Screen.Height
End Sub
Private Sub Timer1_Timer()
Line1.X1 = Me.Width * Rnd
Line1.Y1 = Me.Height * Rnd
Line1.X2 = Me.Width * Rnd
Line1.Y2 = Me.Height * Rnd
End Sub