Help me To Make Package With Vb6 & SQL
I Want To Make Set up File For My Program That I Developed Using Vb6 And SQL Server 2000 , I Want To Put My Database Files On That Set up And when User Start Set up The Program Will Be Installed And Sql Server with User Name = 'sAdmin' And password = 'sPass' and How Can i make my program to attach my Database when user run the program after he install it .
Re: Help me To Make Package With Vb6 & SQL
Re: Help me To Make Package With Vb6 & SQL
I don't think VB6 had a packaging tool built in so you'll need to get one. We used to us InnoSetup and I found it to be quite good.
Re: Help me To Make Package With Vb6 & SQL
I installed InnoSetup But How Can I Add sql server to the installation file with my user name and password
Re: Help me To Make Package With Vb6 & SQL
I very much doubt you'll be able to add SQL Server itself. You will have to make sure SQL Server is already installed and then you can add commands to the installation scipt that will set up the necessary logins etc.
Re: Help me To Make Package With Vb6 & SQL
Can I use Setup Factory to do installation for sql with my program
Re: Help me To Make Package With Vb6 & SQL
I've never used Setup Factory so I don't know but I'd be very surprised if you were able. Installing SQL Server is a long and involved process in itself, with alot of configurable options. It's highly unlikely that any kind of script you could write in advance would be able to automate this in a way that was suitable to all customers.
Re: Help me To Make Package With Vb6 & SQL
i will try with Setup Factory and if it is done i will tell you and give you the script file
Re: Help me To Make Package With Vb6 & SQL