Guest Posted May 24, 2004 Share Posted May 24, 2004 Hey, sum1 told me about a coding program called VB to code vc does anyone know were i can download a trail or sumin? Link to comment
orappa Posted May 24, 2004 Share Posted May 24, 2004 There aren't any demos for VB. However, there was a SAMS Publishing VB book that had a special version with it, which was fully functional except that you couldn't compile to an EXE. I've forgotten what the book was called though. Anyway, here is the official site: http://msdn.microsoft.com/vbasic/ Oh, and after clicking that link, I noticed that a free version of VB.NET is available, but you have to meet certain criteria in order to qualify. Edit: Oh, btw, it's called "Visual Basic" not "Visual Basics". You wouldn't believe how many people make that mistake. "Basic" doesn't mean simple - it's an acronym for "Beginner's All-Purpose Symbolic Instruction Code". It should be written "BASIC", but for some reason, Microsoft dropped the capital letters. Link to comment
TmM_Ryan Posted May 24, 2004 Share Posted May 24, 2004 Ever tried google or another search engine? Link to comment
<VMP>Sobeit Posted May 24, 2004 Share Posted May 24, 2004 first off, if u cant compile to a .exe it is not a compiler, its a glorified text editor , second if there r free C++ compilers, there HAS to be free VB compilers Link to comment
orappa Posted May 24, 2004 Share Posted May 24, 2004 first off, if u cant compile to a .exe it is not a compiler, its a glorified text editor , second if there r free C++ compilers, there HAS to be free VB compilers He said he wanted a demo of VB. VB's not like C++ - you do not need to (manually) compile the program in order to run it, as VB has built-in functions to do that. Hmm... crap explanation, but I know what I mean. And regarding your second point, that is entirely false. C++ and BASIC are not owned by anyone, so anyone can make compilers for them. Visual Basic and Visual C++ however are trademarks of Microsoft. Link to comment
<VMP>Sobeit Posted May 24, 2004 Share Posted May 24, 2004 nice points, but like i said, i just started, and i think im gonna try VB first, sounds alot easier than C++ and im getting the basics of that already Link to comment
orappa Posted May 24, 2004 Share Posted May 24, 2004 nice points, but like i said, i just started, and i think im gonna try VB first, sounds alot easier than C++ and im getting the basics of that already Yeah, but I found that after a while you get to a point where you're using VB to its limits and trying to do things that are impossible or that VB doesn't do very well. Link to comment
<VMP>Sobeit Posted May 24, 2004 Share Posted May 24, 2004 C++'s features r hard to learn, for example, it took me alot of the school day (extra time inbettween stuff) to learn these /me finds notes he wrote #include <----- header needed for cout command int main () { <---- begin cout<<"this is my notes :P"; return 0; int= # with no decimal float= # with decimal char= stores a single character long time to learn just that, huh? Link to comment
orappa Posted May 24, 2004 Share Posted May 24, 2004 Yeah, the problem with C++ is that you have to add loads of headers in order to get it to do simple things. It's the kind of thing that you need to spend a weekend on, just seeing what kind of stuff is available by default. For example, some people would suggest using instead of - I'm not quite sure why (I am by no means an expert on C++). Link to comment
StAnToN Posted May 25, 2004 Share Posted May 25, 2004 VB is a much more easier programming language then C++ i find that C++ is more complicated Link to comment
orappa Posted May 25, 2004 Share Posted May 25, 2004 VB is a much more easier programming language then C++ i find that C++ is more complicated Yeah, C++ offers you more control over individual aspects. Unfortunately, this means that you have to write multiple code lines in order to do simple things, hence it's harder. Link to comment
<VMP>Sobeit Posted May 25, 2004 Share Posted May 25, 2004 and i found that all the tuts (usually) out there cover command line C++ programs and compiling methods, not win32 applications, which really pissed me off cuz i printed out a 49 page tut on C++ programming...FOR CMD STYLE APPS....GRR! but i am slowly learning win32 apps, no worries Link to comment
orappa Posted May 25, 2004 Share Posted May 25, 2004 and i found that all the tuts (usually) out there cover command line C++ programs and compiling methods, not win32 applications, which really pissed me off cuz i printed out a 49 page tut on C++ programming...FOR CMD STYLE APPS....GRR! but i am slowly learning win32 apps, no worries Yep, that's what I found, so I bought a book off eBay which was pretty good. It's SAMS Teach Yourself Visual C++ 6 in 21 Days by Davis Chapman and Jeff Heaton. It is dedicated to Win32, but it also has a cmd section at the back (strangely command line programs compiled with VC++ only work on Windows systems, which seems a little pointless to me). Link to comment
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