ThePentiumGuy Posted June 6, 2003 Posted June 6, 2003 How can i add a wizard that extracts the project files to a certain directory. The wizard must check if the user has the laterverson of DIrectX, if not, then install dX9. When i burn the WIzard and all to a CD, i want an AutoStart thing to pop up when you insert the CD, saying, Play, Install, Uninstall, Help or something like that Quote My VB.NET Game Programming Tutorial Site (GDI+, Direct3D, Tetris [coming soon], a full RPG.... you name it!) vbprogramming.8k.com My Project (Need VB.NET Programmers) http://workspaces.gotdotnet.com/ResolutionRPG
ThePentiumGuy Posted June 6, 2003 Author Posted June 6, 2003 sorry this post was in the wrong place.. i wasn't sure where to put it :( Quote My VB.NET Game Programming Tutorial Site (GDI+, Direct3D, Tetris [coming soon], a full RPG.... you name it!) vbprogramming.8k.com My Project (Need VB.NET Programmers) http://workspaces.gotdotnet.com/ResolutionRPG
*Experts* Nerseus Posted June 6, 2003 *Experts* Posted June 6, 2003 You'll have to read Microsoft's site or the readme's that come with DirectX SDK on how to distribute DX9. As for making a CD autoplay, you need a file in the root directory of the cd named autorun.inf. It's a textfile. At the bare minimum, have it show the file to run and, optionally, an icon. Here's a sample: [autorun] open=myexe.exe icon=myexe.exe I can't remember if you can specify the EXE file for the icon or not - I think you can. As for making a setup program in the first place, Visual Studio offers setup templates with a wizard for creating a setup project. You can point it to a project to get started (it will pickup most of the dependencies). You then build this setup project, which creates a setup.exe (bootstrap) and setup.msi and the associated cab files. You can learn more about setup projects in the VS help. -Nerseus Quote "I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.