Yippiekaiaii
Registered User.
- Local time
- Today, 16:33
- Joined
- Mar 25, 2013
- Messages
- 21
I have a form which contains a datasheet subform.
I want to be able to click a button that will copy the contents one of the fields of the currently selected record into the clipboard.
This is so that i can then paste it into another program.
I have tried the following code but it throws up an error telling me that "The command order action "copy" isnt available.
Private Sub Command82_Click()
[Items].Form![Description].SetFocus
DoCmd.RunCommand acCmdCopy
End Sub
Any ideas were i am going wrong or how to achieve my goal?
I want to be able to click a button that will copy the contents one of the fields of the currently selected record into the clipboard.
This is so that i can then paste it into another program.
I have tried the following code but it throws up an error telling me that "The command order action "copy" isnt available.
Private Sub Command82_Click()
[Items].Form![Description].SetFocus
DoCmd.RunCommand acCmdCopy
End Sub
Any ideas were i am going wrong or how to achieve my goal?