i want to copy text from edit box into clipboard with press command button, not with press Ctrl+C...
and i want to paste from clipboard into edit box with press command button not with press Ctrl+V
To copy text to the clip board use _ClipText. For example to put the string "Hello into the clip board use the following:
_ClipText = "Hello"
To extract information form the clipboard use the following
ClipboardContents = _ClipText
Just put the appropiate code behind your buttons and you shouldn't have a problem.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.