473,320 Members | 1,859 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,320 software developers and data experts.

Environment for C++.

man
Is there any environment for C++ like Delphi or Borland? I mean the
Environment witch would help me to build Windows applications (forms,
buttons and so on).

man
Jul 23 '05 #1
8 1288
man wrote:
Is there any environment for C++ like Delphi or Borland? I mean the
Environment witch would help me to build Windows applications (forms,
buttons and so on).


Yes.

Jul 23 '05 #2
"man" <pizzazz(bez spamu)@poczta.onet.pl> wrote in message
news:d3**********@news.onet.pl...
Is there any environment for C++ like Delphi or Borland? I mean the
Environment witch would help me to build Windows applications (forms,
buttons and so on).


Although this is off-topic:

* Visual Studio
* Eclipse IDE/CDT
* Emacs/Command Line g++
* Borland C++ Builder
* Anjunta
* KDevelop

- JFA1
Jul 23 '05 #3

See:
http://www.trolltech.com/
Trolltech is comprehensive. It covers the ms windows, mac and LINUX
UNIX operating systems.

Larry Permenter

James Aguilar wrote:
"man" <pizzazz(bez spamu)@poczta.onet.pl> wrote in message
news:d3**********@news.onet.pl...
Is there any environment for C++ like Delphi or Borland? I mean the
Environment witch would help me to build Windows applications (forms,
buttons and so on).

Although this is off-topic:

* Visual Studio
* Eclipse IDE/CDT
* Emacs/Command Line g++
* Borland C++ Builder
* Anjunta
* KDevelop

- JFA1

Jul 23 '05 #4
Yes! Dev-C++. http://www.bloodshed.net

Jul 23 '05 #5
Rolf Magnus <ra******@t-online.de> wrote in news:d3*************@news.t-
online.com:
man wrote:
Is there any environment for C++ like Delphi or Borland? I mean the
Environment witch would help me to build Windows applications (forms,
buttons and so on).


Yes.


You must have almost all of your 7 your brain cells to produce that
"useful" response

Alan
Jul 23 '05 #6
Bushido Hacks wrote:
Yes! Dev-C++. http://www.bloodshed.net

I also used to recommend this IDE but I after hours spent with this
software I must say - "This is crap".
It is good to program "HelloWorld" but nothing else.
They've been developing it for many years and it's still full of
annoying bugs. Even the newest beta version. All the time something
doesn't work properly and all the time there are unexpected crashes.
--
SirMike
the code is my strength
http://www.sirmike.grudziadz.com
Jul 23 '05 #7
ajm
"James Aguilar" <jf**@cec.wustl.edu> wrote in message news:<d3**********@newsreader.wustl.edu>...
"man" <pizzazz(bez spamu)@poczta.onet.pl> wrote in message
news:d3**********@news.onet.pl...
Is there any environment for C++ like Delphi or Borland? I mean the
Environment witch would help me to build Windows applications (forms,
buttons and so on).


Although this is off-topic:

* Visual Studio
* Eclipse IDE/CDT
* Emacs/Command Line g++
* Borland C++ Builder
* Anjunta
* KDevelop

- JFA1

I have tried Eclipse IDE/CDT but have mixed feelings about it - its
language awareness is not very good ;) perhaps it will get better but
for me its back to emacs ;
ajm.
Jul 23 '05 #8
Oh well, IDEs are overrated.
A good programmer uses command line functions.

For Dev-C++, use the windows version of GCC included with Dev-C++.

Execute the compiler using this command

DriveLetter:\...\Dev-Cpp\bin\c++ -c yourfile.cpp -o yourfile.o

To execute the linker use this command:

DriveLetter:\...\Dev-Cpp\bin\c++ -Wl--startgroup yourfile1.o
yourfile2.o ... yourfileN.o -Wl--endgroup -o yourprogram.exe

To execute the program:

yourprogram

It's way better than messing around with watches, flags, and all that
other gobblety gook included with IDEs.

A simple use of notepad and the DOS prompt are all I need.

I'd like to show you how to install and use OpenGL. That's where you
can really start making programs outside of the DOS prompt.

Jul 23 '05 #9

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

Similar topics

19
by: Vijay Kumar R Zanvar | last post by:
Hi clc, I want to know few examples of freestanding environments. -- "There's money in this case, Watson," he continued, glancing out of the window, "if there is nothing else." - A Scandal...
4
by: Bill Davidson | last post by:
All: I've found the 'Environment.GetEnvironmentVariable()' method; but how do I create and/or set an environment variable? Thanks, Bill
4
by: | last post by:
Hi all, I am trying to append a certain string to the PATH environment variable programmatically. I am able to read what is in the variable using the System.Environment method...
10
by: Edward | last post by:
I've just taken over maintaining a system from a colleague who has left. I find the following line in her code: Dim params(2) As SqlClient.SqlParameter params(0) = New...
6
by: Matt | last post by:
Is there a way to retrieve the Windows Environment Variables (Such as User ID) with Javascript in IE?
6
by: Fuzzyman | last post by:
Hello all, I would like to set a Windows Environment variable for another (non-child) process. This means that the following *doesn't* work : :: os.environ = value In the ``win32api``...
11
by: rossum | last post by:
I want to declare a const multi-line string inside a method, and I am having some problems using Environment.NewLine. I started out with: class foo { public void PrintStuff() { const...
0
by: Joe HM | last post by:
Hello - I am putting together a little ConsoleApplication that is supposed to check for an Environment Variable and create it if it does not exist. I found some code that will add a new...
3
by: smitty1e | last post by:
Just a fun exercise to unify some of the major input methods for a script into a single dictionary. Here is the output, given a gr.conf file in the same directory with the contents stated below: ...
1
by: replysonika | last post by:
Hello, I run a Java app with subprocess from Python script. This python script is called from another Python Wrapper. python = subprocess.Popen(, stdout=subprocess.PIPE,...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.