Advertisement
jsbsan

Portapapeles

Apr 18th, 2014
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GAMBAS 0.40 KB | None | 0 0
  1. ' Gambas class file
  2.  
  3. Public Sub _new()
  4.  
  5. End
  6.  
  7. Public Sub Form_Open()
  8.  
  9. End
  10.  
  11. Public Sub ButtonPegar_Click()
  12.   'Añado el contendido del portapapeles al textArea
  13.  
  14.   TextAreaContenido.text &= Clipboard.Paste("text/plain")
  15.  
  16. End
  17.  
  18. Public Sub ButtonCopiar_Click()
  19.   'copio el texto que haya en el textArea al porpatapeles
  20.  
  21.   Clipboard.Copy(TextAreaContenido.text, "text/plain")
  22.  
  23. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement