May 07, 2024, 09:38:21 AM

News:

Own IWBasic 2.x ? -----> Get your free upgrade to 3.x now.........


God bless America "American Flag" by Allden

Started by pistol350, September 08, 2007, 07:07:18 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

pistol350



def w:window
def i,l:int
window w,0,0,275,132,@NOCAPTION|@BORDER,0,"GodBlessAmerica",p
frontpen w,rgb(255,255,255)
drawmode w,@transparent
for i=0 to 13
if int(i/2)*2 =i then rect w,0,i*10,400,10,0,255
line w,0,i*10,400,i*10,0
next i
rect w,0,0,125,70,0,rgb(0,0,255)
for i=1 to 5
for l=1 to 6
move w,l*20-10,i*11-5
print w,"*"
next l
next i
for i=1 to 4
for l=1 to 5
move w,l*20,i*11
print w,"*"
next l
next i
waituntil w=0
end
p:
select @class
case @idcreate
centerwindow w
case @IDKEYDOWN
closewindow w
case @idclosewindow
closewindow w
endselect
return
Regards,

Peter B.