Results 1 to 5 of 5

Thread: Adding To Clipboard???

  1. #1

    Thread Starter
    Member
    Join Date
    Oct 2000
    Posts
    47

    Question

    can you give me an example of adding text to the clipboard?

    thanks...
    DealMan

  2. #2
    Hyperactive Member D12Bit's Avatar
    Join Date
    Oct 2000
    Location
    Guatemala
    Posts
    373

    Talking

    Like this?

    Code:
        Clipboard.SetText "This will be in the Clipboard area"

    Saludos...
    "Who Dares Wins" - "Quien se Arriesga Gana"
    Mail me at:

  3. #3
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    text1 (TextBox)
    Command1 (Command Button)

    Code:
    'This is a poor example though, since
    ' a textbox already has the copy command embedded
    Private Sub Command1_Click()
    Clipboard.SetText Text1.SelText
    End Sub

  4. #4
    Guest
    Remember, you should always clear the clipboard before adding something new to it.

    Code:
    Clipboard.Clear

  5. #5

    Thread Starter
    Member
    Join Date
    Oct 2000
    Posts
    47

    :)

    thanks every 1 !!!
    DealMan

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