Manage the Clipboard in Microsoft Access
The Clipboard control lets
you place and retrieve text from the Windows Clipboard without using
Windows API calls.
Using the Clipboard Control
Simply place the Clipboard
control on your Microsoft Access form. It does not have any design time
properties. You simply call its methods through VBA depending on whether
you're dealing with text or binaries:
-
Clear to clear the
clipboard
-
GetText to get the
value from the clipboard
-
SetText to assign a
value to the clipboard
-
GetPicture to get a
binary image from the clipboard
-
SetPicture to assign a
binary image from the clipboard
|