Get Clipboard Text Into Form Text Box
Get Clipboard Text Into Form Text Box
Rate Get Clipboard Text Into Form Text Box
(1(1 Vote))
With objclip
If .GetDataPresent(DataFormats.Text) Then
TextBox1.Text = .GetData(DataFormats.Text)
Else
TextBox1.Text = ""
End If
End With
Get Clipboard Text Into Form Text Box Comments
No comments yet — be the first to post one!
Post a Comment