indexbase 0
Include "window.h"
SetWindow("Window",640,480,ws_overlappedwindow)
SetFont 18,48,0,"times"
While WinExit =0
cls Rgb(10,200,200)
For y=0 To 480 step 20
For x=0 To 640 step 20
color1=Rgb(10,Rand(180,200),Rand(180,255))
SetColors bHDc,color1,color1
ellipse bHdc,x,y,x+40,y+40
Next : Next
SetText "This is a water 3D effect",100,8,0xF8F880
DoEvents
SwapBuffers
WaitTime 40
Wend
WinEnd