[ Images ]


Images 1.0
(public domain code by Dave O'Brien)

Displays the 40 "standard" image resources that iziBasic provides for the IMAGE and IMAGEBUTTON functions. You can add to or replace these images as needed in your app.

 ' images.ibas
 {CREATORID "x002"} 'not yet registered
 {PARSER ON}
 
 BEGIN
 for r = 1 to 5
    y=r*25
    for c = 1 to 8
       x=((c-1)*20)+5
       inc a
       image a,x,y
       a$=str$(a,0)
       z=y+9
       gprint a$,x,z
    next
 next
 
 repeat
    e=doevents
 until e<0
 end
  pages read