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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top