export vb.net

  • Thread starter Thread starter sympatico
  • Start date Start date
S

sympatico

hello! does anyone know whether .net application can be exported... so that
the application is viewable for people without visual studio?
 
sympatico said:
hello! does anyone know whether .net application can be exported... so that
the application is viewable for people without visual studio?
Yes, it can, The normal procedure is to add a Setup and Deployment Project
to your solution, then use it to build a deployment package.
Of course, prospective users will have to have the .NET Framework installed
on the target PC's.
Check Setup and Deployment Project in the Visual Studio help.
 
Hi,

Are you talking about people running the program? Or viewing the code? If
it is the code then there is really no export because all the code is stored
in regular text files so they can be opened even with Notepad. Working with
forms is obviously a pain without the form editor but there are freeware
IDEs out there that can load those files. Here is a link to one:
http://www.icsharpcode.net/OpenSource/SD/
I've never used it so I don't know how easy or practical it is to move
VB.Net solutions between that and VS.Net. Good luck! Ken.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top