Question : How do i Append a Item ("Body") to Notes Document ?

Hi All
i am facing a problem when trying to append a Body item into Note..
I have whole Body Data(Tables, Para, Sections etc) into a Buffer and trying to call the NSFItemAppend methd But when i try to update the Note ,it gives the error,
"Document has Invalid Structure"..
Where am i wrong?

The Code and Buffer data is Attached

Thanks
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
//*****SOME STEPS ARE HERE*******************
BYTE      *rt_field;  /* allocated rich-text field */
	DWORD rt_size;
 
	//--------------SOME STEPS ARE HERE---------------------------
 
        error = NSFItemAppend( hMemo,ITEM_SIGN | ITEM_SEAL,
			    "Body", strlen("Body"),TYPE_COMPOSITE,
				(BYTE *)rt_field; rt_size);
 
		char errorBuf[LNERROR_MESSAGE_LENGTH];
				LNGetErrorMessage(error, errorBuf);
			
				error = NSFNoteUpdate(hMemo, 0);
				
				LNGetErrorMessage(error, errorBuf);
				free( rt_field );

Answer : How do i Append a Item ("Body") to Notes Document ?

The layout of the buffer should exactly match what  NSFItemAppend is expecting. Check this out first especially the data types....

You may want to check

http://www-12.lotus.com/ldd/doc/tools/c/4.6.2/Api462re.nsf/a559a53ff788a683852561bf00736791/404f657fffc0719a85255fc800648521?OpenDocument
Random Solutions  
 
programming4us programming4us