Clipboard: Difference between revisions
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 edit summary |
||
Line 2: | Line 2: | ||
To set the windows clipboard use: | To set the windows clipboard use: | ||
SETENV("CLIPBOARD" ,"<replacement-value>") | |||
To read the windows clipboard use: | 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. | These expressions stow and retrieve data to and from the Windows clipboard. The word 'clipboard' is case insensitive. |
Latest revision as of 12:53, 22 May 2014
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.