[RESOLVED] vb application without installing???
hi i have made a few of my own vb application using visual studio 2008.but after i publish those applications,i have to install it in order to run it.also, .net framework 3.5 is also needed.so,is there a language SIMILAR to visual basic that can make standard exe's without the need to install and no additional files necessary???? is c# something like that? :confused::confused::confused:
p.s. even if .net framework is needed,it's no big problem :afrog:
Re: vb application without installing???
C#.Net, VB.Net you see that .Net thing on the end.. that means you need the .Net framework to run it.
If the framework is already installed you can just copy/paste the files you need to run your application. The publication of an app just makes it easier to ensure the user has .Net to start with, adds the shortcuts and the ability to remove it at will.
Re: vb application without installing???
oh thanks for explaining about the .net thingy.but still,when you said copy/paste,did you mean copy some files after publishing,or copy files from the project directory before publishing?will that remove the necessity to install the application before running,and run it directly?
Re: vb application without installing???
As long as the appropriate version of the .NET Framework is already installed on the target machine, all you have to do is build your project (that's BUILD, not PUBLISH) and then simply copy the EXE to the target machine. This also assumes no other dependencies that aren't already a part of Windows.
Re: vb application without installing???
thnx it worked!!! :) i'll give you both rep+
Re: vb application without installing???
one more question,does it mean that vb 6 doesn't need .net framework and therefore be able to run directly?
Re: vb application without installing???
VB6 uses the VB runtime, which is generally installed just about everywhere already.
Re: vb application without installing???
is it usually installed by default when you install operating systems like xp or 7 ?
Re: vb application without installing???
Yes, but only the basic runtime files. If you use a Listview, Treeview, RichTextBox, CommonDialog (file browser), etc in your application, then that requires the installation of other files, like mscomctl.ocx, comctl32.ocx, richtx32.ocx, comdlg32.ocx, etc, etc.
Re: vb application without installing???