Click here to Skip to main content
15,888,286 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to make exe of Windows Form so that I can use in other computers which do not have SQL Server and Visual Studio?
Posted
Updated 7-Feb-15 5:26am
v2

To run .NET applications (written in C#, VB.NET, ...), you never need Visual Studio. You'll only need the .NET Framework[^].

But if your application uses SQL Server for database transactions, you will have to install it anyway (you can install SQL Server Express[^] on the other system), or make sure you have access to a system that has SQL Server installed. If you have, then your application can connect to SQL Server on that system and perform database transactions that way.
 
Share this answer
 
v2
Comments
PIEBALDconsult 7-Feb-15 11:32am    
Or have _access_ to a system that has SQL Server.
Thomas Daniels 7-Feb-15 11:35am    
True, I edited my answer.
Regarding SQL Server, if you can get by without views and stored procs, you may consider SQL Compact.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900