Android Question Is the ClipBoard library updated?

Beja

Expert
Licensed User
Longtime User
Hello all,
Is the ClipBoard library updated? I am talking about this thread , and asking because I couldn't have it working.
the copy part:
private Sub btnClipBard_Click
    Dim MyClipboard As BClipboard
    Dim Clips As String
    MyClipboard.clrText
    Clips = txResult.text
    MyClipboard.SetText(Clips)
    
End Sub

Best, -B
 

LucaMs

Expert
Licensed User
Longtime User
Hello all,
Is the ClipBoard library updated? I am talking about this thread , and asking because I couldn't have it working.
the copy part:
private Sub btnClipBard_Click
    Dim MyClipboard As BClipboard
    Dim Clips As String
    MyClipboard.clrText
    Clips = txResult.text
    MyClipboard.SetText(Clips)
 
End Sub

Best, -B
And then, what happens?

However, searching the site I found two things, the second of which is a nice curiosity:
  1. https://www.b4x.com/android/forum/threads/clipboard-class.95263/#content
  2. https://www.b4x.com/android/forum/threads/designer-copy-views-to-clipboard.35316/#content
    (December 5, 2013 šŸ˜Š. I signed up a month before this. Good times, I was "young" šŸ˜„)
 
Upvote 0
Top