From a post by Douglas Steele, ACCESS MVP:
-------------------
Take a look at http://support.microsoft.com/?id=138909
Once you've saved all that code into a new module (make sure you don't name
the module ClipBoard_SetData!), you'd simply need to put
ClipBoard_SetData(strNumbers) in your code somewhere.
http://support.microsoft.com/?id=138910 shows similar code for reading from
the clipboard.
-------------------
You then could run code via button click event that would use the
ClipBoard_SetData procedure to read the .Value of the textbox and write it
to the clipboard.

Signature
Ken Snell
<MS ACCESS MVP>
>I know this can be done by tabbing into a field or double-clicking
>(carefully)
[quoted text clipped - 5 lines]
> was
> a way I could also do CTRL+C programmatically in VBA
Steven R - 09 Nov 2005 17:14 GMT
Ken,
Thanks !
>From a post by Douglas Steele, ACCESS MVP:
>-------------------
[quoted text clipped - 18 lines]
>> was
>> a way I could also do CTRL+C programmatically in VBA