tags:

views:

111

answers:

2

Is there any way to get lotus notes UNID using NOTEHANLE? I am working with Lotus Notes C API (8.5).
Thanks.

A: 

I think you need to get the LNNOTE from the NOTEHANDLE first, and this has the attribute you require:

LNNote::GetUniversalID
Ben Poole
A: 

The NSFNoteGetInfo method will get you the UNID. Pass in a NOTEHANDLE and the second argument as the flag _NOTE_ID.

See here: http://www-12.lotus.com/ldd/doc/tools/c/6.0.2/api60ref.nsf/0/00D600DA00A7005185255E2D00792E02?OpenDocument

Ed Schembor