Programmatically Access The Clipboard In Lotusscript

Programmatically Access The Clipboard In Lotusscript

Some customers want to transfer text from an email message to a computed text
field (accessible only via a button) or to an attachment in a rich-text field.

This function accesses the clipboard contents of a Win32 computer prior to the
production of an amended computed text field or a new attachment in a rich-text
field.
'---In the Declarations section
Declare Function GetClipboardData Lib "user32"(Byval wFormat As Long) As String
Declare Function OpenClipboard Lib "user32"(Byval hwnd As Long) As Long
Declare Function EmptyClipboard Lib "user32"() As Long
Declare Function CloseClipboard Lib "user32"() As Long
Public Const CF_TEXT = 1


'---make a funtion called RetrieveClipboard

Function RetrieveClipboard () As String
Dim hClipMemory As Variant
Dim MyString As String
If OpenClipboard(0&) = 0 Then
Msgbox "Cannot open Clipboard. Another app. may have it open"
End If

Call OpenClipboard(0)

hClipMemory = GetClipboardData (CF_TEXT)
If Isnull(hClipMemory) Then
Msgbox "Could not allocate memory"
Exit Function
End If

Call closeclipboard
RetrieveClipboard = hClipMemory
End Function



'---Now you can use the clipboard contents in the click event of a button, for
example.

dim doc as NotesDocument
set doc = ...

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.



dim clip as String

clip = RetrieveClipboard

'---Add the clipboard contents to a text field
doc.ProjectNotes = clip & Chr(10) & Chr(13)doc.ProjectNotes(0)

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.