| |||||||
| Commercial message | |
| | |
|
![]() |
| | Thread Tools |
| | #1 (permalink) |
| New on Forum Join Date: Jan 2005
Posts: 2
| Creating an ISO 9660 Image File C# Hello, i want to Create .iso Images with the Image Recorder from Nero Api. ( C# / ASP.Net ). The files for the image are stored on different places on the Hard Disk. I select the Image Recorder with following code: Code: private NEROLib.NeroDrive ndrive; ... .... ndrive = (NEROLib.NeroDrive)ndrives.Item(selRecorderIndex); Code: ndrive.BurnIsoAudioCD("","",false,niso,null,null,NEROLib.NERO_BURN_FLAGS.NERO_BURN_FLAG_WRITE,10, NEROLib.NERO_MEDIA_TYPE.NERO_MEDIA_PACKETW); Or is there an Other way? |
| | |
| | #2 (permalink) |
| New on Forum Join Date: Jan 2005
Posts: 2
| Re: Creating an ISO 9660 Image File C# Found something in the NERO SDK Dokumentation Code: nero_OnFileSelImage If the user decides to use the virtual device and not a real device more information is needed. The data that NeroCOM creates will be written to an image file. To provide the location of that file we need to handle the “OnFileSelImage” event. Select “nero” from the Object ListBox in the code window. Select “OnFileSelImage” from the “Procedure” window and change it like this: Private Sub nero_OnFileSelImage(FileName As String) ImageFileDialog.CancelError = True On Error GoTo ErrHandler ImageFileDialog.Flags = cdlOFNHideReadOnly ImageFileDialog.FilterIndex = 2 ImageFileDialog.ShowOpen FileName = ImageFileDialog.FileName Exit Sub ErrHandler: Exit Sub End Sub |
| | |
| |
| |
![]() |
| 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 |
| recover iso 9660 file burned in dvd | fbenites | Optical Storage Technical Discussions | 3 | 15-08-2006 02:56 |
| Creating iso image | tom0769 | Optical Storage Technical Discussions | 3 | 10-10-2005 16:17 |
| Creating an ISO image. | sam.wheale | Nero & InCD | 4 | 28-07-2004 11:28 |
| Creating ISO image file? | bernie01 | Burning Software | 1 | 04-08-2003 04:29 |
| ISO 9660 file size Help | Signuke | General Software | 5 | 27-03-2003 01:33 |