Results 1 to 2 of 2

Thread: clipboard

  1. #1

    Thread Starter
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    how do i check to see if the clipboard contains data?

  2. #2
    Guest
    Try this:

    Code:
    Private Sub Command1_Click()
    x = Clipboard.GetText()
    If x <> "" Then
    MsgBox "Data on clipboard!"
    Else
    MsgBox "No data on clipboard!"
    End If
    End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width