Please when i run this code it copy the text to clipboard but when sharing it comes empty no text how do i fix this thank you for helping
Copying text to clipboard and share via different platforms:
Private Sub copyLbl_Click
Dim textCopy As BClipboard
textCopy.clrText
textCopy.setText(descLabel.Text)
ToastMessageShow("Text copied to clipboard", True)
descLabel.Text = textCopy.getText
Dim Intent As Intent
Intent.Initialize(Intent.ACTION_SEND, "" )
Intent.SetType("text/plain")
Intent.PutExtra("android.intent.extra.TEXT", (textCopy))
Intent.WrapAsIntentChooser("Share Via")
StartActivity(Intent)
End Sub