| |||||||
| Commercial message | |
| | |
|
![]() |
| | Thread Tools |
| | #1 (permalink) |
| New on Forum Join Date: Apr 2005
Posts: 14
| Burning to ISO image only works the first time Hello I have an issue buring to ISO-images. It works fine for the first image that is created after an VB-IDE (re)start. When I to create another ISO-image in the same VB-IDE-Session, it doesn't work anymore. Please mind that the IDE musst be restartet. Only restarting the program in the same IDE-session doesn't work! Do I maybe need to reset something before creating the next ISO-Track? VB-IDE = Development Envoirment of Visual Basic Code: 'enuMediaType = NERO_MEDIA_CDR Call m_objCurrentDrive.InitImageRecorder(g_objFO.BuildPath(frmFolder.SelectedDirectory, txtName.Text & "_" & objMedia.MediaNumber & ".iso"), enuMediaType) m_objCurrentDrive.BurnIsoAudioCD "", "", 0, objISOTrack, Nothing, Nothing, NERO_BURN_FLAG_WRITE, 4, enuMediaType Raffael Walther |
| | |
| | #2 (permalink) |
| New on Forum Join Date: Sep 2006
Posts: 15
| Re: Burning to ISO image only works the first time I had this problem. I'm guessing that on the second image burn attempt it automatically aborts the job saying that it was aborted by user. The way to resolve it is not to use the InitImageRecorder function to provide an image file name, but rather to use the OnFileSelImage event of the Nero COM object. This event will be thrown when you select the image writer as your burning drive. When the event is thrown, assign the image path and name to the string reference that is part of the event parameter of the OnFileSelImage event: private void neroCOMObj_OnFileSelImage(ref string Filename) { Filename = isoImagePath; } once you have handled the event, you should be able to burn your disk image as many times as you like! |
| | |
| |
| |
![]() |
| If you can't find where you are looking for, then become a member and get an answer fast! We have thousands of people online every moment of the day to help you! Click here |
| Bookmarks |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Best ISO Image Burning Software? | Shadowz O Death | Burning Software | 6 | 16-04-2007 06:24 |
| Help burning ISO image | gardion30 | Copy Protection | 2 | 11-10-2006 05:31 |
| Burning w2k3 ISO Image | zx_diesel | VSO Software | 3 | 10-07-2003 00:28 |
| Image (bin/cue) mounts and works fine in alcohol, but after burning cd is unreadable | bigSexy | Alcohol | 1 | 07-07-2003 03:11 |
| burning an iso image HELP!!!!! | veto441 | General Software | 10 | 18-02-2002 07:12 |