PDA

View Full Version : Copy to Record Field content to Clipboard



ben_hogan
05-19-2010, 12:02 PM
Dear Experts,

I’m not sure if my question is not worded correctly or there’s no solution. I would appreciate your help on the issue posted in the following link: http://www.vbaexpress.com/forum/showthread.php?t=32150 (http://www.vbaexpress.com/forum/showthread.php?t=32150)

Thank you and best wishes,

Marco.-

CreganTur
05-20-2010, 05:50 AM
Take a look at the link I provided in that thread.

OBP
05-21-2010, 09:37 AM
Try this
Private Sub Command43_Click()
Me.Sname.SetFocus
RunCommand acCmdCopy
End Sub

Where Sname is the actual name of your field and the code goes in the Sub for your Button, mine was in Command43