Hello, has anyone come across a problem with clientclipboard extension, it’s giving an error message showing in the attached screenshot image and below is the code I’ve used to read text from clipboard.
Async Sub Get_ClipboardString()
Try
Me.Focus()
Dim data = Await ClientClipboard.ReadTextAsync()
Catch ex As Exception
AlertBox.Show(“Error on Copying String”)
End Try
End Sub
