Copy form field data to clipboard

D

Delta

I have set the field I want to have focus and then wish to copy the data to
the clipboard. Can someone help me with the code for this.

Forms!frmExhibitorInfoVerification!Email.SetFocus
 
D

Dennis

Don't know if this is the best way but it works

DoCmd.DoMenuItem acFormBar, acEditMenu, acCopy
 
Top