my exe almost done with database 2005 but
what is the requirements file must include during setup to run my exe on other pc that has no installed vb studio 2008 and sql server 2005?
Printable View
my exe almost done with database 2005 but
what is the requirements file must include during setup to run my exe on other pc that has no installed vb studio 2008 and sql server 2005?
To run any .NET app you must have installed the appropriate version of the .NET Framework.
The app must also have access to a SQL Server instance. It doesn't necessarily have to be on the same machine as the app though, assuming you're connecting to an already attached database. If you're deploying an MDF data file with your app though, you will need SQL Server Express installed on the same machine as the app.
Moved To Application Deployment