472,358 Members | 1,960 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,358 software developers and data experts.

Borland Builder C++ v.6 or Microsoft Visual C++ ?


Which to purchase is the question.

My Borland 4.5 C/C++ compiler is old. The personal or student version of
either BBC++ or MVC++ is being investigated for home use. My personal
preference happens to be Borland, which I am not able to purchase wisely due to
a lack of product knowledge. You can bombard me with good suggestions,
including a solid reference book on your compiler of choice.

Thank you.

Mark.
Jul 22 '05 #1
5 3546

"Mark - KF8RV" <kf*******@aol.com> wrote in message

Which to purchase is the question.

My Borland 4.5 C/C++ compiler is old. The personal or student version of
either BBC++ or MVC++ is being investigated for home use. My personal
preference happens to be Borland, which I am not able to purchase wisely due to a lack of product knowledge. You can bombard me with good suggestions,
including a solid reference book on your compiler of choice.


It's a good idea to purchase compilers but if it's just for sheer academic
purposes then why not download a free compiler ? VC ++ 2003 Toolkit is free
for download and pretty good. Else you could also get g++ (3.3.3??) on
Cygwin.

Sharad
Jul 22 '05 #2
I like VC++ 2003 Standard (~$100), in combination with the free VC++ Toolkit
2003, which includes an optimizing version of the Standard compiler
(identical to the Pro edition's). If you don't want to pay for an IDE, just
the Toolkit is excellent on its own with a good text editor.

I can't stand Borland stuff.

- Pete

"Mark - KF8RV" <kf*******@aol.com> wrote in message
news:20***************************@mb-m01.aol.com...

Which to purchase is the question.

My Borland 4.5 C/C++ compiler is old. The personal or student version of
either BBC++ or MVC++ is being investigated for home use. My personal
preference happens to be Borland, which I am not able to purchase wisely
due to
a lack of product knowledge. You can bombard me with good suggestions,
including a solid reference book on your compiler of choice.

Thank you.

Mark.

Jul 22 '05 #3
Hi Mark,
I'm not sure if anyone has told you that VC++.NET is VERY different to
what you would call C++.

You can write C++ inside VC++.NET by not taking advantage of any .net
features which is what I do......but it still takes some concentration
and attention to not accidentally use a vc++.net only feature because
(surprise, surprise) the vs.net on-line help can be a bit vague about
what exactly is ansi standard C++ and what is not...;-)...My software
runs on win32, AIX, Solaris with only one image of the source code.
MSFT say .net code will run on any platform at some point in the
future. (We shall see.)

I decided to use VC++ 6.0 for my development and went from 6.0 to .net
when .net became available. Why? I think Bill will win the compiler
arguement on win. Already Oracle does not support Borland for C++
access to Oracle for C++/Pro or whatever it is that accesses Oracle for
the pre-compiler. I stopped using that about 2 years ago.

I really, really like the IDE in VS.NET. Though I have nothing else to
compare it to as I never did any other C++ development on any other
IDE....(When I first did C in 1985 there was no such thing as an
IDE...)

The book I used to teach myself C++ was by Kris Jamsa:
http://www.amazon.com/exec/obidos/AS...914984-9672955
I really liked it as I had to learn C++ as well...I only had C
previously (and many other languages but not C++).

Other people bag the book but it has the best description I found of
what C++ actually is for someone who is only C. I found I 'got it' in
about 30 minutes as opposed to reading VC++ 6.0 Unleashed for weeks on
end and being none the wiser.....that 30 minutes was worth 10x the
price of the book. It has an example for everything I have ever wanted
to do...the only thing I did not find was how to perform memory mapped
IO on windows, and that's because it is a winAPI that must be
called.....If I only had USD50 and could only buy one book, this would
be it.

If you want to learn C++ and learn about cross platform code I suggest
you take a wander over to http://www.cs.wustl.edu/~schmidt/ACE.html and
download ACE. There is about a zillion lines of code that does some
pretty useful stuff. There is even a book as a programmers guide. I
only heard about it recently and I am only scratching ther surface of
what it does...I plan to incorporate ACE functions into my software.

Also, take a wander through sourceforge.net and codeproject.com as you
will find lots and lots of code there that does useful stuff to sharpen
your skills on. Being something of an 'old timer' I think it's just
fantatstic that there are so many pieces of code out there to go and
check out when I am trying to do something I have never done before...
Best Regards

Peter Nolan
www.peternolan.com

Jul 22 '05 #4
RCS
Mark - KF8RV wrote:
Which to purchase is the question.

My Borland 4.5 C/C++ compiler is old. The personal or student version of
either BBC++ or MVC++ is being investigated for home use. My personal
preference happens to be Borland, which I am not able to purchase wisely due to
a lack of product knowledge. You can bombard me with good suggestions,
including a solid reference book on your compiler of choice.

Thank you.

Mark.


If it's the IDE you are concerned about, in my opinion both suck big time!

Two years ago I ditched the Visual C++ (7.0) IDE in the garbage, only
kept the compiler, and am using GNU make for all my C++ stuff.

Sounds primitive?

Once you grasp the powerful, flexible approach of make files instead of
hunting down places to set compiler directives and linker directives for
every freaking project in that horrible Visual C++ IDE, it's like having
a shower after a sweaty, stinking day at work.

Just my pennies worth of advice!

RCS
Jul 22 '05 #5
Hi RCS,
actually, I agree that there are just too many places to set things in
the IDE compile options and I wish it were easier......though 'make'
has become much more complex than it used to be when I used it (20
years ago)...it's like a programming language unto itself now....I was
trying to get my software to compile on AIX recently and it took 4
HOURS to get a make file to work and compile one program!!!!...Never
seen so much hyeroglyphics to compile a damn program!!!!!! The AIX guy
was typing all sorts of uncomprehensible stuff....and he never did get
it to work such that one make file compiled everything so I have a make
file for each program (not what I would call progress...) (Clearly I am
'make challenged'..;-) )

So with VS.NET I just to it the 'simple way' and put all my options on
for each sub project and issue rebuilds.....I don't think it's so
bad......it certainly get's me by....what I don't like about that is it
makes it difficult to manage multiple versions of the same software
because things like header libraries need to be defined in the projcts
etc....hhhmmmm....

Peter

Jul 22 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Steven O. | last post by:
First, sorry if by some chance I am not posting to the correct newsgroups, these seemed to be the most applicable to my question (see disclaimer at end of post for further comments....). Started...
11
by: TGF | last post by:
I am wondering if it is feasible to use .NET for applications that have to be very fast. We have a few applications that are blazingly fast, written in Borland C++ using Borland C++ Builder. We...
17
by: Ziggi | last post by:
Hi. I want to get a C++ IDE, but I dont know whether to go for Bill Gate's solution or Borland's. Could any kind folks detail the relative strength and weaknesses of both, and also tell me which...
15
by: Chris | last post by:
I am just beginning programming again and need a bit of advice. I have both Visual C++ 6.0 Standard Edition and Borland C++ Builder 6. Of these two which do you consider the best for programming...
24
by: serdar | last post by:
Hi. Does anybody say that what is better borland c++ or visual c++? Which compiler does have more help?
20
by: Markus Sandheide | last post by:
Hello! Execute these lines: int x = 1; x = x > 2345678901; You will get: x == 1 with Borland C++ Builder
0
by: Xproblem | last post by:
FTP Client Engine for C/C++ 2.4 Screenshot - Soft.comFTP Client Engine for C/C++ 2.4. ... System Requirements: Windows C/C++ compiler - Microsoft operating system: Windows 95, Windows 98, Windows...
2
by: Sven Fischer | last post by:
What is the best CSharp IDE: - MS Visual CSharp Express (!) Edition - SharpDevelop - Borland C'Builder for either beginners resp. for advanced (but not huge multi person) projects? Sven
1
by: Terry | last post by:
Is there any hope of using Borland Developer Studio 2006 to link in a DLL compiled by MS Visual C++ version 6? I have a Win32 DLL from a company named Vocera. The DLL defines C++ classes that I...
17
by: Fabry | last post by:
Hi All, I'm new of this group and I do not know if this is the correct group for my question. I have a DLL with its export library (.lib) wrote in Borland C++ 6. In borland everything is OK and...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
1
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. header("Location:".$urlback); Is this the right layout the...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.