1
您好我正在做一個屏幕保護程序,我需要知道什麼是錯我的代碼..如何在小基本中製作無限循環屏幕保護程序?
GraphicsWindow.title="Screen Saver"
GraphicsWindow.Width=500
GraphicsWindow.Height=500
For i=1 To
Colour = GraphicsWindow.GetRandomColor()
GraphicsWindow.BrushColor=Colour
XCoord = Math.GetRandomNumber(1200)
YCoord = Math.GetRandomNumber(1200)
width=math.GetRandomNumber (300)
GraphicsWindow.Fillellipse(XCoord,YCoord,width,width)
Program.Delay(200)
EndFor
ContinueForEver = "Yes"
While ContinueForEver = "Yes"
EndWhile
我應該使用[對於i =? ?]做出一個無限循環,我應該使用while while end for the continue thing。所以基本上即時通訊應該讓這永久產生界的屏幕保護程序.. 感謝
*謝謝你對我的幫助