Android Question Clipboard Lib

Douglas Farias

Expert
Licensed User
Longtime User
Hi how can i use a copy and paste function in my EditText1?

i have a EditText1 in my app and i need paste a text on this
how i make this?

can anyone post a simple exemple ? only onde EditText1 with this function?

remember i m not programmer.
 

Douglas Farias

Expert
Licensed User
Longtime User
to make a button paste?

Sub Button3_Click

Dim c as BClipboardIf
c.HasText Then EditText1.Text = c.GetText
End Sub

this?
 
Upvote 0
Top