Clipboard: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
(Created page with "The SetEnv command and the Env$ internal function enable programmatic access to the windows '''clipboard'''. To set the windows clipboard use: SetEnv("Clipbo...")
(No difference)

Revision as of 16:45, 13 July 2013

The SetEnv command and the Env$ internal function enable programmatic access to the windows clipboard.

To set the windows clipboard use:

SetEnv("Clipboard" ,"replacement-value")

To read the windows clipboard use:

Env$("Clipboard")

These expressions stow and retrieve data to and from the Windows clipboard. The word 'clipboard' is case insensitive.