finaly got it sorted out. didnt know how to use the nero folder objects etc…
just FYI to any other newbies
to add a folder in visual basic useing the nero COM
Dim CD_Root_Folder as NeroFolder
Set CD_Root_folder = new NeroFolder
Dim xFolder as neroFolder
Set xFolder = new NeroFolder
xFolder.name = “Folder Name”
CD_Root_Folder.folders.add xFolder
to add a file it is the same thing
except its a NeroFile object
to add a subfolder is a little triky
hard coded it is like this
'index = the index number of the folder you want to create a sub folder under
CD_Root_Folder.folders.item(index).folders.add xFolder
if anyone is intrested in an example i have sub. that adds files to the nero folder creating folders and all.
just post here.