Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to scroll big bmp's ?

Status
Not open for further replies.

fancom

Programmer
Feb 7, 2001
46
TR
Well,although we are going to make 3d projects i couldn't find a way to scroll a bitmap
on the screen.for example a bitmap like 32000*480*16.
cls
ink rgb(255,255,255),1
sync on
create bitmap 1,32000,480,16
for t= 0 to 1000
x=rnd(32000)
y=rnd (480)
dot x,y
next t
rem everything seems to be ok.But,
copy bitmap 1,0
rem this causes a dimension error.
how to do it?
if possible write me a simple ,large bmp scrolling program please.
Thanks a lot.
 
ok.i find it.how to scroll.when i find how to scroll i just understood how silly was this question.thanks a lot
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top