View Single Post
  #3 (permalink)  
Old 05-28-2007, 02:47 PM
Put Claude Put Claude is offline
Knows the basics
 
Join Date: May 2007
Posts: 87
Default

Cableguy,

The files I loaded in the list stay on place in the list.
If I use drawer.New2(imagelist.item(1),B4PObject(5))
to draw on the image it is OK.
bmp1.image=imagelist.item(1) 'bmp1 let see imagelist.item(1)
drawer.New2(bmp1,B4PObject(5)) 'wil draw on bmp1,
but in fact on imagelist.item(1)
bmp2.image=imagelist.item(1) 'bmp2 let see imagelist.item(1)
drawer.New2(bmp2,B4PObject(5)) 'wil draw on bmp2,
but in fact on imagelist.item(1)
If I look to bmp2, I see 2 designs, all on imagelist.item(1)
Reply With Quote