Attach a control to another control -
08-05-2003
, 03:11 PM
Hi,
I want to add a button next to a text box that will copy the text box
text to the clipboard.
I want to this generically so that I can do this for any text box.
I got it working now using:
Private Sub Command153_Click()
SendKeys "+{TAB}", Wait
SendKeys "^c"
End Sub
But I've been reading that SendKeys isn't good to use.
Any help is appreciated.
Thanks,
--FB |