473,387 Members | 1,420 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 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 3601

"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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

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.