Button to copy (1 Viewer)

Mahall906

New member
Local time
Today, 15:11
Joined
Apr 11, 2014
Messages
29
I am still learning VBA so please bare with me on what seem a simple question ;-)

I have a button called "copy". When this button is pressed I would like it to copy (just to clipboard) the text in a field called "address".
Its as simple as that.

I have tried various methods in the On Click command but I'm struggling.

Any help would be appreciated.

Thanks
 

bob fitz

AWF VIP
Local time
Today, 15:11
Joined
May 23, 2011
Messages
4,717
Try:
Me.address.SetFocus
DoCmd.RunCommand acCmdCopy
 

Users who are viewing this thread

Top Bottom