Copy Text Field To ClipBoard

  • Thread starter Thread starter Steve Lowe
  • Start date Start date
S

Steve Lowe

Hi,

Please can someone offer me some help with the following.

I have a field on a form called Feedback.Description

I have a button on this form called BtnFBCopy

I would like the contents of the Feedback.Description field to be
copied to Windows clipboard when the button is clicked.

What code do I need to write in Code Builder to accomplish this.


Thanks in advance,

Regards

splowe.


- Steve Lowe
- E-Mail : (e-mail address removed)
- Before Replying Remove .NO.SPAM
- UK Resident although my e-mail address is usa.net
 
Hi,

Please can someone offer me some help with the following.

I have a field on a form called Feedback.Description

I have a button on this form called BtnFBCopy

I would like the contents of the Feedback.Description field to be
copied to Windows clipboard when the button is clicked.

What code do I need to write in Code Builder to accomplish this.

Thanks in advance,

Regards

splowe.

- Steve Lowe
- E-Mail : (e-mail address removed)
- Before Replying Remove .NO.SPAM
- UK Resident although my e-mail address is usa.net

Me![ControlName].SetFocus
DoCmd.RunCommand acCmdCopy
 
Hi,

Please can someone offer me some help with the following.

I have a field on a form called Feedback.Description

I have a button on this form called BtnFBCopy

I would like the contents of the Feedback.Description field to be
copied to Windows clipboard when the button is clicked.

What code do I need to write in Code Builder to accomplish this.

Thanks in advance,

Regards

splowe.

- Steve Lowe
- E-Mail : (e-mail address removed)
- Before Replying Remove .NO.SPAM
- UK Resident although my e-mail address is usa.net

Me![ControlName].SetFocus
DoCmd.RunCommand acCmdCopy


Hi - Thanks very much - just the job.

Regards

splowe.

- Steve Lowe
- E-Mail : (e-mail address removed)
- Before Replying Remove .NO.SPAM
- UK Resident although my e-mail address is usa.net
 
Back
Top