| Home | All functions | Categories |
vuScreen2Bmp(*CSTRING), Signed
Captures the current Windows desktop and saves it as a bitmap file.
| Parameter | Data Type | Description |
|---|---|---|
| FileName | CSTRING(256) | Fully qualified filename for the bitmap file (must include .bmp extension). |
A LONG value:
FileName = 'C:\Temp\Screen1.bmp'
IF vuScreen2Bmp(FileName)
MESSAGE('Screen captured to ' & FileName)
ELSE
MESSAGE('Failed to capture screen.')
END
| Home | All functions | Categories |