Primarygun Posted June 20, 2006 Posted June 20, 2006 What's the difference between Visual basic and visual studio? how can I export an exe from a form in visual studio?
JesuBungle Posted June 20, 2006 Posted June 20, 2006 If I remember correctly, Visual Studio includes all of the Visual Suite, like C++ and all that good stuff. Visual Basic being only that program. Should be the same to compile an exe as visual basic. That is unless you're talking about .net, then I can't help ya.
Primarygun Posted June 20, 2006 Author Posted June 20, 2006 How do you export as an exe in visual basic? thx
JesuBungle Posted June 20, 2006 Posted June 20, 2006 In visual basic, all you do is go under file. Then there should be a selection saying Make Project1.exe, or whatever the name of your project is. And that's it.
mooeypoo Posted June 20, 2006 Posted June 20, 2006 You can also create an installation program for your project (that is a must if you want to give your program to people who dont have VB on their comp, it installs all the dlls and such that are required for it to run), there's an option inside visual basic itself, and you can also make an installation program through external programs. here's something I found about this. Just google it though, there's lots of refferences online: https://www.tegosoft.com/LearnProgramming/InstallWizard.asp ~moo
Pangloss Posted June 20, 2006 Posted June 20, 2006 Or just look in the bin directory of the project folder. If you didn't use any DLLs or other external files then that EXE should be all you need. Bear in mind that VB EXEs are MSIL, not native code. Meaning they won't run without the .NET framework installed on the target workstation.
mooeypoo Posted June 20, 2006 Posted June 20, 2006 bah I was talking about VB6. I never got the hang of .NET... ~moo
Pangloss Posted June 20, 2006 Posted June 20, 2006 Ah ok, sounds like you're in good shape then. Just the usual MFC DLL problem to deal with, which I'm assuming you know about. You do have to specify these days, since we've already flown past VB7, VB7.1, VB8 and are rapidly approaching VB9. (grin) Good luck with your project!
mooeypoo Posted June 20, 2006 Posted June 20, 2006 Oh, I don't know about Primarygun, he's the one who asked the question. I just said I know VB6.. the entire.NET thing is very inconvinient, and I could never manage to understand what you do with object oriented coding.. ~moo
Primarygun Posted June 21, 2006 Author Posted June 21, 2006 Thanks everyone. I found that once I press the Start Debugging, there's an exe coming out somewhere in the C driver.
encipher Posted June 21, 2006 Posted June 21, 2006 Thanks everyone.I found that once I press the Start Debugging' date=' there's an exe coming out somewhere in the C driver.[/quote'] Umm, thats a debug executable, you dont want to use that as your final PE. To compile the exe and build the project, there is a menu called build. Go under that and select build solution. I would also change the active configuration of the project from Debug to Release.
softdragonz Posted June 28, 2006 Posted June 28, 2006 I know it sounds funny, but the guy who told me this was serious... It seems that in VB.net, whenever he "Started debugging" his project, a copy of the executable was found in the recycle bin . So strange
Chuck Edge Posted July 13, 2006 Posted July 13, 2006 What's the difference between Visual basic and visual studio?how can I export an exe from a form in visual studio? Visual Basic is a language (and, in weak parlance, a standalone development environment) Visual Studio is a suite which among other things supports VB development.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now