LotusScript to C API Programming Guide

rtLib Domino Rich Text Management template
Home
Show details for ContentContent
Purchase
Ready-to-use samples
Hide details for Online resourcesOnline resources
Technotes and goodies
Reference
Header files
Forum
Links
Happy readers

Anonymous

login


 

Hosted by Prominic.NET, Inc.
Main topic:

NSFNoteGetInfo (by Chris Catalano, 01/25/2006 04:31:14 PM)

How do I use NSFNoteGetInfo to get a noteid? I'm trying this approach:

NSFNoteCreate()

NSFItemAppend()

NSFNoteUpdate()

NSFNoteGetInfo()

NSFNoteClose()

I'm successfully creating and saving the note, but NSFNoteGetInfo() doesn't return anything for the noteid.

My declaration for NSFNoteGetInfo:

Declare Sub W32_NSFNoteGetInfo Lib LIB_W32 Alias "NSFNoteGetInfo" (_

Byval note_handle As Long, _

Byval note_member As Integer, _

Byval value_ptr As String )

I'm passing a String for the third parameter, value_ptr, but it's always an empty string after I call NSFNoteGetInfo:

Call W32_NSFNoteGetInfo( hNote, ID_NOTE_ID, noteID )