hi
i need some help with my programming
the problem is that dbpro loads 1 bitmap but refuses to load any others right after
example1:
cls
load bitmap "white.bmp", 0
load bitmap "coat1.bmp", 1
get image 1,0,0,140,128
sprite 1,100,100,1
show sprite 1
wait key
when i do this it says it can't load bitmap in line 3
example2:
cls
load bitmap "white.bmp", 0
load bitmap "coat1.jpg", 1
get image 1,0,0,140,128
sprite 1,100,100,1
show sprite 1
wait key
when i do this it only processes the 'white.bmp' and nothing more
example3:
cls
load bitmap "white.bmp", 0
load image "coat1.jpg", 1
get image 1,0,0,140,128
sprite 1,100,100,1
show sprite 1
wait key
when i do this i get a white square (where the picture is supposed too be) but with blue background
(and i have both jpg and bmp versions of the same pic)
i can't seem to figure out what the problem is please help