Home All Groups Group Topic Archive Search About

CD Burning with VB.NET

Author
21 Nov 2007 3:57 PM
drabina
Hi,

I am looking for a way to burn CDs from VB.NET application. I have
found a lot of posts asking about that but the links provided are
mostly dead. There is IMAPI but as far as I know, it is not easy to
use with VB.NET.

So I am looking for a library or any method that will allow me to burn
CDs including burning multiple copies of one CD.

Any help is appreciated.

Thanks,
drabina

Author
21 Nov 2007 4:31 PM
rowe_newsgroups
On Nov 21, 10:57 am, drabina <airm***@gmail.com> wrote:
Show quoteHide quote
> Hi,
>
> I am looking for a way to burn CDs from VB.NET application. I have
> found a lot of posts asking about that but the links provided are
> mostly dead. There is IMAPI but as far as I know, it is not easy to
> use with VB.NET.
>
> So I am looking for a library or any method that will allow me to burn
> CDs including burning multiple copies of one CD.
>
> Any help is appreciated.
>
> Thanks,
> drabina

I don't know of a managed library that can do this. It's possible, but
it would require better knowledge of C / C++ than what I have to
convert the routines.

Anyways, codeproject did have have an article on how to do it with C /
C++ so you might start there:

http://www.codeproject.com/win32/CD_Burner.asp

Thanks,

Seth Rowe
Author
21 Nov 2007 4:34 PM
zacks
On Nov 21, 10:57 am, drabina <airm***@gmail.com> wrote:
> Hi,
>
> I am looking for a way to burn CDs from VB.NET application. I have
> found a lot of posts asking about that but the links provided are
> mostly dead. There is IMAPI but as far as I know, it is not easy to
> use with VB.NET.
>
> So I am looking for a library or any method that will allow me to burn
> CDs including burning multiple copies of one CD.

I use a product called CopyToDVD to do this. It does come with its own
front end application, but all burning operations are also available
via the command line, so it is real wasy to write your own burning app
with it. Just Google CopyToDVD. It's also pretty cheap.
Author
21 Nov 2007 6:23 PM
Luca Pinasco
Hi

you can find an help with xpburn at this link:

http://bex.no-ip.com/xpburn/xpburn.htm


Show quoteHide quote
"drabina" wrote:

> Hi,
>
> I am looking for a way to burn CDs from VB.NET application. I have
> found a lot of posts asking about that but the links provided are
> mostly dead. There is IMAPI but as far as I know, it is not easy to
> use with VB.NET.
>
> So I am looking for a library or any method that will allow me to burn
> CDs including burning multiple copies of one CD.
>
> Any help is appreciated.
>
> Thanks,
> drabina
>
Author
21 Nov 2007 8:25 PM
Johnny Jörgensen
I believe that vbAccelerator.com has some code that might help you on the
way:

http://www.vbaccelerator.com/home/NET/Code/Libraries/Writing_CDs/index.asp

Cheers,
Johnny J.





Show quoteHide quote
"drabina" <airm***@gmail.com> skrev i meddelandet
news:8f2c550f-095a-4101-ae68-7c9d58f56326@d50g2000hsf.googlegroups.com...
> Hi,
>
> I am looking for a way to burn CDs from VB.NET application. I have
> found a lot of posts asking about that but the links provided are
> mostly dead. There is IMAPI but as far as I know, it is not easy to
> use with VB.NET.
>
> So I am looking for a library or any method that will allow me to burn
> CDs including burning multiple copies of one CD.
>
> Any help is appreciated.
>
> Thanks,
> drabina
Author
23 Nov 2007 2:33 PM
drabina
Thanks guys. I will check out all the links you provided.