Resource_addJournal
Add a journal information to a specific resource.
Syntax
Resource_addJournal(ResourceID)
Arguments
ResourceID: is a number. It is the resource id of resource
Return type
Empty.
Examples
string commentType="UndoComplete"; // Type of journal
string content="test Undo complete"; // Content of journal
number QRID=37246024; // phong questionnaire 1
ResourceJournalEntry Rjt = new ResourceJournalEntry(QRID, commentType, content);
Resource_addJournal(Rjt);