English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

就是把表單背景改成黑色 然後進去改寫程式...
總共有50個彩色點 大小RND*3+3
幫忙我一下咩

2006-06-22 04:56:40 · 1 個解答 · 發問者 彎弟 1 in 電腦與網際網路 程式設計

1 個解答

Private Sub Form_Activate()    Dim I As Integer        AutoRedraw = True    BackColor = 0    Randomize Timer    For I = 1 To 50        DrawWidth = Int(Rnd * 3 + 3)        PSet (Int(Rnd * ScaleWidth + 1), Int(Rnd * ScaleHeight + 1)), _        RGB(Int(Rnd * 256), Int(Rnd * 256), Int(Rnd * 256))    Next    AutoRedraw = FalseEnd Sub

2006-06-22 07:15:01 · answer #1 · answered by W.J.S. 7 · 0 0

fedest.com, questions and answers