473,699 Members | 2,278 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Borland 5.5 compiler

do they have 5.5 with an IDE?
I've used 3.1 and 4.52, so why should i go back to command line with 5.5?
are there any other C++ compilers with an IDE?

--------------------------------------------------
remove *batSPAM* to e-mail me
--------------------------------------------------
Jul 19 '05 #1
7 5149
On 07 Aug 2003 02:26:23 GMT, de************* @aol.combatSPAM
(Developwebsite s) wrote:
do they have 5.5 with an IDE?
I've used 3.1 and 4.52, so why should i go back to command line with 5.5?
are there any other C++ compilers with an IDE?


Borland's 5.5 compiler is used by products like Borland C++ Builder,
which includes a full IDE.

See also (on Windows), Microsoft Visual C++.NET 2003 and Metroworks
Codewarrior.

Tom
Jul 19 '05 #2
On Thu, 07 Aug 2003 09:37:57 +0000
zonemen <me*********@db forums.com> wrote:

I just downloaded Borland 5.5 Compiler and in the bin folder when I
open bcc32.exe and it just straight away goes off once i click on
it. It happens with the others as well, except for fconvert.exe. How
do I compile??

I have Windows XP


Find a borland newsgroup but prior to doing that learn how to use the
command line (bcc32.exe is after all a command line app) and read the
docs that came with your compiler.
Jul 19 '05 #3
"zonemen" <me*********@db forums.com> wrote in message
news:32******** ********@dbforu ms.com...

I just downloaded Borland 5.5 Compiler and in the bin folder when I
open bcc32.exe and it just straight away goes off once i click on
it. It happens with the others as well, except for fconvert.exe. How
do I compile??


Read this:

"Using the Borland 5.5 Compiler and command-line tools"
http://community.borland.com/article...,20997,00.html

And then read this:

"Welcome to comp.lang.c++!"
http://www.slack.net/~shiva/welcome.txt

--
Russell Hanneken
rh*******@pobox .com
Jul 19 '05 #4
sb******@cs.uic .edu (Shane Beasley) wrote in message news:<2f******* *************** ****@posting.go ogle.com>...
are there any other C++ compilers with an IDE?


On Intel x86-based machines and similar, you've basically got Borland
C++ Builder and Microsoft Visual C++. DJGPP includes an MS-DOS port of
GCC and other GNU tools as well as an IDE called RHIDE. Smaller
compilers (so as to be unknown to me, anyway) may come with IDEs as
well.


Oops; Metrowerks CodeWarrior also comes with an IDE. I mistakenly
thought (after very cursory searching on metrowerks.com) that they had
dropped the IBM PC platform to concentrate on the Mac, but I guess I
was wrong.

And doubly sorry to sometime poster Howard Hinnant for discounting his
product. :)

- Shane
Jul 19 '05 #5
Developwebsites wrote:
do they have 5.5 with an IDE?
I've used 3.1 and 4.52, so why should i go back to command line with 5.5?
are there any other C++ compilers with an IDE?


Dev-C++, http://www.bloodshed.net/devcpp.html. It uses the Mingw port of
gcc.

--
"Codito ergo sum"
Roel Schroeven
Jul 19 '05 #6
zonemen <me*********@db forums.com> wrote in message news:<32******* *********@dbfor ums.com>...
I just downloaded Borland 5.5 Compiler and in the bin folder when I
open bcc32.exe and it just straight away goes off once i click on
it. It happens with the others as well, except for fconvert.exe. How
do I compile??

I have Windows XP


Before considering a serious use of Borland's C++ compilers please
note the following.

Borland C++ compilers aren't %100 conformant with the ISO C++
standard.
For example, the following obvious code won't compile on BCC32 5.5 nor
BCC32 5.6, though it's %100 compliant with the standard.

#include<iostre am>
#include<string >

using namespace std ;

struct employee {
string name ;
string surname ;
} ;

int main ()
{
employee e = { "Razmig", "K" } ;
cout << e.name << " " << e.surname << '\n' ;
}

Regards,
//rk
Jul 19 '05 #7
Razmig K wrote:

Before considering a serious use of Borland's C++ compilers please
note the following.

Borland C++ compilers aren't %100 conformant with the ISO C++
standard.
For example, the following obvious code won't compile on BCC32 5.5 nor
BCC32 5.6, though it's %100 compliant with the standard.

#include<iostre am>
#include<string >

using namespace std ;

struct employee {
string name ;
string surname ;
} ;

int main ()
{
employee e = { "Razmig", "K" } ;
cout << e.name << " " << e.surname << '\n' ;
}


Presently none compiler can claim 100% C++ standard compliance. Every
one has its own strengths and weaknesses.

As it concerns Borland C++ those incompatibiliti es are not numerous and
most of them I ever fell into actually enforce better programming style
and it may even apply to the posted example. The struct 'employee'
containing non-POD members is not trivial. It is unlikely that all
employees of an organization will be known at compile time and
constructing dynamically such an object without relevant constructor in
C++ is ugly. So defining a constructor for 'employee' will help compile
and ensure better functionality of the entire program.

Regards,
Janusz

Jul 19 '05 #8

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

Similar topics

5
2765
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...
6
1826
by: John | last post by:
MSVC6 (SP5) gives this error when I try to use a non-pointer type to a class that is forward-referenced: reo.cpp(8) : error C2027: use of undefined type 'B' However Borland's free 5.5 compiler successfully compiles the same code snippet. /* ----------------------------- */ class B; // forward reference
17
4697
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
24
3810
by: serdar | last post by:
Hi. Does anybody say that what is better borland c++ or visual c++? Which compiler does have more help?
2
2342
by: Kenneth Gomez | last post by:
Hello, I have tried many avenues (web search, borland website, libxml website) before deciding to post here. I'm trying to install libxml2 on windows ME to work with my Borland C++ 5 Compiler (command line). Read through the installation guides from xmlsoft.org.
2
2190
by: kikotores | last post by:
I am going back home for the summer but I have this big project to submit for one of my classes. It is written in Visual C++ 7.0 . Hoever the only C++ compiler I have at home is the free Borland Command line compiler (bcc32). I tried compiling my project with it but I got a bunch of nasty messages such as vector include file not found and stuff like that. I change the include directive to <vector.h> , <map.h> and so on but it still did not...
0
3101
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...
4
3762
by: darrensjunkaccount | last post by:
Hi, I have just inherited some embedded software that was compiled with Borland 4.52. I need to either purchase that compiler, which Borland no longer appear to sell or alternatively source an upgrade/compatible compiler. Do Borland sell a newer version of the 4.52 compiler that will still allow me to compile a DOS executable? Regards, Darren
17
7237
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.
2
3492
by: justmehere | last post by:
My understanding that this compiler is from the Borland Builder C++ 5.5 Compiler. Does anyone know where to find the complete reference for using regular expression with this compiler and the TRegexp class. I cannot find anything on the switches special character for using regular expressions. Thanks
0
8689
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
8618
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9035
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8916
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8885
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7752
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5875
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
4376
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...
3
2010
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.