strongm has a good point, the app i made was a cd with music videos on, you put the cd in and it auto runs, bringing up a form with a media player screen on it and a button to play each video directly, but i made it for my girlfriend and her computer is very bog standard (a 486 running windows 95) and i found the media player part would not work without the files MCI32.OCX and MSVBVM60.DLL
however, i tried and tested the autorun part on many different computers, including hers and it never needed any other files to run - its the application itself that needs extra files, autorun is the simplest thing possible
i assume you have made an app in vb and have compiled it into a *.exe file, and you want to put this onto a cd and make it run automatically when the cd is inserted? what you do is open a new text document and type in:
[autorun]
open=Fuel.exe
(where Fuel.exe was the name of the file, just change it to the name of yours) save the text document as autorun.ini and put it in the root directory of the cd when you burn it, along with the .exe file, if you put the exe file in a directory type:
[autorun]
open=Folder/Fuel.exe
another neat trick is when you make an icon for your app, download some icon drawing software, draw one and set it as the icon on the form that loads up when your app is run. when you compile the app that icon is made into the .exe files icon (mebbe you already knew that) to give the cd that icon (or even a different one) put this line into your autorun file:
icon=Fuel.ico
i know its not what you asked for, but it makes your apps look that bit more professional