Saves a screenshot of the edit table to bitmap file.

Syntax

rv = Send_Message(Ctrl, "OLE.SaveScreenShot", FileName)

Parameters

ParameterDescription
FileNameThe full path of the bitmap file to which the screenshot is to be saved

Remarks

The SaveScreenShot method can be used to take a quick screenshot of an edit table and it's current data. The FileName parameter must be a valid windows path, but the file does not have to exist. If no file of the given path and file name exists, then this method creates the file. If the file does exist, this method will overwrite the files contents.

Example

// Take a screen shot 
rv = Send_Message(Ctrl, "OLE.SaveScreenShot", "c:\screenshot.bmp")
  • No labels