Paste from clipboard

  • Thread starter Thread starter RitchieJHicks
  • Start date Start date
R

RitchieJHicks

What would the command be to paste the clipboards contents to a field on
click on a command button please?
 
Try this in the Click event procedure:

Me.[NameOfYourTextBoxHere].SetFocus
RunCommand acCmdPaste
 
That's excellent. Thanks (once again) Allen.

--
-----------------------


Allen Browne said:
Try this in the Click event procedure:

Me.[NameOfYourTextBoxHere].SetFocus
RunCommand acCmdPaste

--
Allen Browne - Microsoft MVP. Perth, Western Australia

Reply to group, rather than allenbrowne at mvps dot org.

RitchieJHicks said:
What would the command be to paste the clipboards contents to a field on
click on a command button please?
 
Back
Top