Hello Dima Sir,
1) I am using StarBurnX and developing my sample program in VB.NET.
2) I am getting this crash on aborting data burning process.
3) I am calling abort function when user clicks on abort button, in which I am calling dataBurner.Locktray = False and then dataBurner.Cancel in separate thread (As advised in StarBurnX help).
5) After this I am immediately calling eject drive (To refresh information of the drive).
6) And after that I am calling DataBurner.Files.Clear() (To clear previously added data) and to avoid the problem IMAGE_TREE_ALREADY_BUILT while adding data again.
7) I think I am getting crash because aborting is done in thread and until this process is complete I am calling DataBurner.Files.Clear().
But as I am not able to know when the abort process is finished. This problem is coming.
9) Is it possible to include an event callback which will notify us that abort process is complete because abort process may takes a bit time. As this is an IO process, so it is hardware dependent and obviously may take time.
10) It would be better if any event will notify us aborting is complete.
11) Is the problem clear to you?