Pic.ScreenLoad
Author |
Message |
Kelsey
|
Posted: Wed Dec 15, 2004 4:42 pm Post subject: Pic.ScreenLoad |
|
|
code: |
for count:100..600 by 5
cls
Pic.ScreenLoad("picture.bmp",count,0,picCopy)
delay(100)
end for
|
Nothing shows up . Any help as to why? |
|
|
|
|
 |
Sponsor Sponsor

|
|
 |
Cervantes

|
Posted: Wed Dec 15, 2004 4:54 pm Post subject: (No subject) |
|
|
Do you have "picture.bmp" in the same folder as your program? If not, this might help to illustrate the problem:
code: |
for count : 100 .. 600 by 5
cls
Pic.ScreenLoad ("picture.bmp", count, 0, picCopy)
put Error.LastMsg
delay (100)
end for
|
|
|
|
|
|
 |
Kelsey
|
Posted: Wed Dec 15, 2004 5:46 pm Post subject: (No subject) |
|
|
Thanks so much! |
|
|
|
|
 |
|
|