Douglas Farias Expert Licensed User Longtime User Jan 26, 2014 #1 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.
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.
Erel B4X founder Staff member Licensed User Longtime User Jan 27, 2014 #2 Something like: B4X: Dim c as BClipboard If c.HasText Then EditText1.Text = c.GetText Upvote 0
Douglas Farias Expert Licensed User Longtime User Jan 27, 2014 #3 to make a button paste? Sub Button3_Click Dim c as BClipboardIf c.HasText Then EditText1.Text = c.GetText End Sub this? Upvote 0
to make a button paste? Sub Button3_Click Dim c as BClipboardIf c.HasText Then EditText1.Text = c.GetText End Sub this?