How to copy textbox contents into the clipboard?

  • Thread starter Thread starter keithb
  • Start date Start date
K

keithb

What is the VB command that copies a textbox value into the windows
clipboard? What is the command that copies windows clipboard content into a
textbox?

Thanks,

Keith
 
Keith,
don't use the clipboard. use declared variables instead. using the clipboard
while running code can cause memory probems if you over do it. avoid it if
you can. instead use something like this.
Sub copytextbox
dim text1 as string
text 1 = me.textbox1
me.textbox2 = text1
end sub
 
Back
Top