ͬÒâ. µ«ÊÇÐźÅÊÇËæ»úµÄ£¬ÎÒ²»ÖªµÀËûµÄÕñ·ù °ÑÄ㻲¨ÐεĴúÂëÌùÉÏÀ´¿´¿´ VB code: Option Explicit Dim x As Long Dim y As Long Private Sub Form_Load() Picture1.AutoRedraw = True Timer1.Interval = 100 Picture1.BackColor = vbBlack Picture1.Scale (0, 50)-(1000, -50) ' É趨×Ô¶¨Òå×ù±êϵͳ¡£ Picture1.Line (0, 0)-(1000, 0), vbWhite Picture1.DrawWidth = 2 End Sub
Private Sub Timer1_Timer() x = x + 1 Randomize y = Int((100 * Rnd) + 1) - 50 Text1 = y If y > 10 Then Picture1.PSet (x, y), vbYellow ElseIf y >= -10 And y <= 10 Then Picture1.PSet (x, y), vbRed ElseIf y < -10 Then Picture1.PSet (x, y), vbBlue End If End Sub