hello everybody
i try to do multisession burning in my c# program. For that, I use OnDoneImport2.
I implemented it in following way:
Code:
private void nDrive_OnDoneImport2(bool Ok, NeroFolder Folder, NeroCDStamp CDStamp, NeroImportDataTrackInfo pImportInfo, NERO_IMPORT_DATA_TRACK_RESULT importResult)
{
Console.WriteLine("nDrive_OnDoneImport");
nRootFolder = Folder;
myResetEvent.Set();
} Where nRootFolder is my global NeroFolder. I figured out that OK parameter is holding true but “Folder” parameter holding nothing (that what I think) and if I’m writing Folder.Name on command window, it writing following error:
Quote:
|
"error: 'Folder.Name' does not exist".
|
So when I’m doing
NeroISOTrack.NeroFolder = nRootFolder;
I get an exception :
Quote:
|
"No such interface supported".
|
What can I do about it?
