der stand weiter oben schonmal, aber hier isser nochmals:
void CDongleDBView::OnButtonreplication()
{
LNSetThrowAllErrors(TRUE);
try
{
LNReplicationOptions options;
LNReplicationStatistics statistics;
LNText fileList;
fileList.Append("verz1/verz2/Datenbank.nsf");
options.SetDirection(LNREPLICATIONDIRECTION_BOTH);
options.SetCloseSession(TRUE);
options.SetFileList(fileList);
options.SetFileType(LNREPLICATIONFILETYPE_SPECIFIC);
m_NotesSession.Replicate("Serverpfad", options, &statistics);
}
catch(LNSTATUS error)
{
char errorBuf[LNERROR_MESSAGE_LENGTH];
LNGetErrorMessage(error, errorBuf);
SetDlgItemText(IDC_ERRORMESSAGE, errorBuf);
}
}
Die Variable m_NotesSession wird beim Initialisieren des Dialogfensters angelegt und gefüllt..