vaso Posted December 2, 2003 Posted December 2, 2003 Hi Can some one of you help me how to make an exe in vb.net so that i can package all my libraries and .vb files and make a single .exe with vb.net. I would like to make the exe file and install that exe on the end user's machine who doesn't have .net framework installed. Your help in this is greatly appreciated. Thanks Quote
iebidan Posted December 2, 2003 Posted December 2, 2003 Just compile your solution, you can find the option on the Build Menu -> Build Solution. Everything will be compiled inside a folder named "BIN" I hope this helps Quote Fat kids are harder to kidnap
tate Posted December 2, 2003 Posted December 2, 2003 Don't forget that you have to make sure the .NET framework is already installed in the target pc! Quote
vaso Posted December 2, 2003 Author Posted December 2, 2003 .net application needs to run on target pc without .net framework being installed tate Thanks for your reply. As you said, is it mandatory to have .net framework installed on the target PC. But my situation needs that the target PC doesn't have .net framework installed. So what is other way for me to have my .net exe application run on target PC without .net framework installed on the target PC. I would like my application run just like the regular vb6.0 project. which runs on any pc once i create a vb project package. Thanks in advance Vasu Quote
Moderators Robby Posted December 2, 2003 Moderators Posted December 2, 2003 This may help http://www.microsoft.com/downloads/details.aspx?FamilyId=BF253CFD-1EFC-4FC5-BA7E-6A6F21403495&displaylang=en Quote Visit...Bassic Software
iebidan Posted December 2, 2003 Posted December 2, 2003 Well, actually VB6 apps need the VB runtime installed on the target computer, but sometimes other apps install it so u don't need to reinstall it again, in the case of .NET apps is the same, u need to have the Framework installed, without the framework your app will never run. What u can do is create a setup and redistribute the framework on it, if u still don't want the framework I'll suggest that you use another language for your coding, like C++ or even go back to VB6, where almost 99% of all computers have the runtime already installed Quote Fat kids are harder to kidnap
daves1 Posted December 2, 2003 Posted December 2, 2003 How can I redistribute the framework with the exe I am creating? I want to install the framework right before I run my exe. Thanks. Quote
iebidan Posted December 2, 2003 Posted December 2, 2003 try this link, will be helpful http://www.gotdotnet.com/community/workspaces/workspace.aspx?ID=2F8F0A23-F529-4158-8E0A-D187D16F41F1 Quote Fat kids are harder to kidnap
Moderators Robby Posted December 2, 2003 Moderators Posted December 2, 2003 I guess you all missed my link. :) Quote Visit...Bassic Software
justplainsoccer Posted December 4, 2003 Posted December 4, 2003 what exactly does that "bootstrapper" thing do? Quote
Administrators PlausiblyDamp Posted December 4, 2003 Administrators Posted December 4, 2003 (edited) It shows you how to do a setup routine for your .Exe that will also deploy the framework if its needed - wasn't that what you wanted? Edited June 5, 2007 by PlausiblyDamp Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Tesdall Posted December 7, 2003 Posted December 7, 2003 I was wondering how to "complie" all my work form1.vb blah blah blah .. into just ONE *.exe ? i did that build sulition but it gave me two dll files and a pod file ? but all i want is just one exe... how do i get just one EXE to work on all computers ? Quote
Administrators PlausiblyDamp Posted December 7, 2003 Administrators Posted December 7, 2003 If you have a project that references other Dlls then you will need to deploy those dlls as well as the exe. There is no supported way of building the dll into the exe. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.