Or just pressing F9 anytime to create a .BMP screenshot of the DB window in the DB folder!
The command you are talking about is SAVE BITMAP.
The syntax:
SAVE BITMAP fileName$
where fileName$ is the file to save to. The command will save the current bitmap to a file. Set the current bitmap to 0 using SET CURRENT BITMAP to use SAVE BITMAP on the screen. For example:
SET CURRENT BITMAP 0
SAVE BITMAP "C:\Screen.bmp"
will save the screen to C:\Screen.bmp. Here is a real-time example:
disable escapekey
randomize timer()
set current bitmap 0
repeat
text 0,0,"ESC to Quit, ENTER to save screenshot to C:\Screen.bmp, CTRL for a circle."
if controlkey() = 1 then circle rnd(screen width()),rnd(screen height()),rnd(5)
if returnkey() = 1 then save bitmap "C:\Screen.bmp"
until escapekey() = 1
end
Hope that helps one and all!
For the Software You Want, AMPERSAND LABORATORIES is the place! [href=http://www.andlabs.com/]

[/href]