473,657 Members | 2,896 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 3640

"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......tho ugh '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!!!!...N ever
seen so much hyeroglyphics to compile a damn program!!!!!! The AIX guy
was typing all sorts of uncomprehensibl e 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
2761
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 with the Borland web site, and it didn't answer my questions, so I hope someone here will be kind enough to reply. I took a few courses on C++ using Microsoft Visual C++, and then taught myself MFC for GUI design -- an exercise akin to using...
11
2122
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 would like to port over to ..NET, but some of the test models we have developed are MUCH, MUCH slower than it's Borland counterpart. Is this due to the .NET Framework and the JIT? Or is it something we should be looking for in the project...
17
4696
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 you yourselves prefer. Thanks in advance. Ziggi
15
3760
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 windows programs (not the DOS style program). I have had a quick look at both of these and Borland seems to have a lot more components (Buttons, Forms etc) than Microsoft Visual C++. Does Visual C++ have these components easily accesable. Chris.
24
3809
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
2313
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
3096
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 ME, ... www.soft30.com/screen-70-11625.htm - 31k - Cached - Similar pages C++ Server Pages 1.6 - Soft.comC++ Server Pages (CSP) allows developers to build Dynamic Web Pages and Web ... Existing C++ projects can be ported to the Web by simply...
2
1810
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
11978
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 want to instantiate and use. It is not COM-compliant. It came with .dll, ..lib, and .h files. I tried using Borland C++Builder 2006, but when I add the .lib file to my project, I get the error: " Error: 'C:\VMI.LIB' contains invalid OMF...
17
7228
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 I am able to include the lib and use the class that i have exported creating an instance with new etc... I would like to export this class in microsoft VC++ using the same .lib file. Obviously it doesn' t work.
0
8384
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8820
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
6162
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5630
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4150
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4300
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1937
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1601
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.