dev-cpp-users Mailing List for Dev-C++ (Page 729)
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(15) |
Oct
(115) |
Nov
(154) |
Dec
(258) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(377) |
Feb
(260) |
Mar
(249) |
Apr
(188) |
May
(152) |
Jun
(150) |
Jul
(195) |
Aug
(202) |
Sep
(200) |
Oct
(286) |
Nov
(242) |
Dec
(165) |
| 2002 |
Jan
(245) |
Feb
(241) |
Mar
(239) |
Apr
(346) |
May
(406) |
Jun
(369) |
Jul
(418) |
Aug
(357) |
Sep
(362) |
Oct
(597) |
Nov
(455) |
Dec
(344) |
| 2003 |
Jan
(446) |
Feb
(397) |
Mar
(515) |
Apr
(524) |
May
(377) |
Jun
(387) |
Jul
(532) |
Aug
(364) |
Sep
(294) |
Oct
(352) |
Nov
(295) |
Dec
(327) |
| 2004 |
Jan
(416) |
Feb
(318) |
Mar
(324) |
Apr
(249) |
May
(259) |
Jun
(218) |
Jul
(212) |
Aug
(259) |
Sep
(158) |
Oct
(162) |
Nov
(214) |
Dec
(169) |
| 2005 |
Jan
(111) |
Feb
(165) |
Mar
(199) |
Apr
(147) |
May
(131) |
Jun
(163) |
Jul
(235) |
Aug
(136) |
Sep
(84) |
Oct
(88) |
Nov
(113) |
Dec
(100) |
| 2006 |
Jan
(85) |
Feb
(119) |
Mar
(33) |
Apr
(31) |
May
(56) |
Jun
(68) |
Jul
(18) |
Aug
(62) |
Sep
(33) |
Oct
(55) |
Nov
(19) |
Dec
(40) |
| 2007 |
Jan
(22) |
Feb
(49) |
Mar
(34) |
Apr
(51) |
May
(66) |
Jun
(43) |
Jul
(116) |
Aug
(57) |
Sep
(70) |
Oct
(69) |
Nov
(97) |
Dec
(86) |
| 2008 |
Jan
(32) |
Feb
(47) |
Mar
(106) |
Apr
(67) |
May
(28) |
Jun
(39) |
Jul
(31) |
Aug
(25) |
Sep
(18) |
Oct
(25) |
Nov
(5) |
Dec
(21) |
| 2009 |
Jan
(33) |
Feb
(27) |
Mar
(27) |
Apr
(22) |
May
(22) |
Jun
(10) |
Jul
(17) |
Aug
(9) |
Sep
(21) |
Oct
(13) |
Nov
(4) |
Dec
(11) |
| 2010 |
Jan
(10) |
Feb
(8) |
Mar
(4) |
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(8) |
Oct
(26) |
Nov
(9) |
Dec
(1) |
| 2011 |
Jan
(21) |
Feb
(16) |
Mar
(4) |
Apr
(19) |
May
(26) |
Jun
(9) |
Jul
(6) |
Aug
|
Sep
(4) |
Oct
(3) |
Nov
(2) |
Dec
(1) |
| 2012 |
Jan
(4) |
Feb
(7) |
Mar
(4) |
Apr
|
May
(1) |
Jun
(10) |
Jul
(1) |
Aug
(1) |
Sep
(18) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
| 2013 |
Jan
(4) |
Feb
(2) |
Mar
(15) |
Apr
(6) |
May
(1) |
Jun
(3) |
Jul
(1) |
Aug
(2) |
Sep
(4) |
Oct
|
Nov
(9) |
Dec
|
| 2014 |
Jan
(4) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
(4) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(4) |
| 2015 |
Jan
(2) |
Feb
(3) |
Mar
(1) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(9) |
Nov
(35) |
Dec
(6) |
| 2016 |
Jan
(7) |
Feb
(10) |
Mar
(10) |
Apr
(9) |
May
(13) |
Jun
(9) |
Jul
(1) |
Aug
(3) |
Sep
(3) |
Oct
(1) |
Nov
(1) |
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
(1) |
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Chris B. <ch...@cb...> - 2001-01-25 19:28:46
|
----- Original Message -----
From: "Gregor Peter" <Gre...@dl...>
To: <dev...@li...>
Sent: 25 January 2001 12:59
Subject: [Dev-C++] array as parameter
> I would prefer a constructor which accept a array of strings
> #define MAX_WORDS 10
> Banner::Banner( string words[MAX_WORDS] )
>
> Is it possible to call this in the above manner?
> (Like: Banner("I", "don't", "know", "what", "to", "write"); )
This will cause you problems because the constructor is expecting string
pointer and you are trying to pass it several character pointers. I.e. you
are sending the wrong type and wrong number of arguents.
> Do I have to create a fully defined array each time just to pass it to
> the constructor?
> string dummy[MAX_WORDS]={"I","don't","know","what","to","do","!","
> "," "," "};
> Banner( dummy );
Unfortunately, I think you are going to have to pass it like you have above.
Hope this helps.
Chris B.
_______________________________________________
> Dev-cpp-users mailing list
> Dev...@li...
> http://lists.sourceforge.net/lists/listinfo/dev-cpp-users
>
|
|
From: Chris B. <ch...@cb...> - 2001-01-25 19:17:21
|
Is the Bloodshed site down again? For the past three days I haven't been = able to get into it, my browser says 'Host contacted - waiting for = reply' but nothing happens. Any news? Chris B. |
|
From: Gregor P. <Gre...@dl...> - 2001-01-25 12:59:09
|
I got a class 'Banner' which owns several constructors, like
Banner::Banner(string oneStr)
{ ... }
Banner::Banner( string 1stStr, string 2ndStr)
{ ... }
Banner::Banner( string 2stStr, string 2ndStr, string 3Str)
{ ... }
and so on ...
From my programm itself I'd like to call them with a unknown number of
parameters
Banner("new!");
Banner( "Hello", "world");
Banner( "C++", "is", "fun");
For a few strings this seems ok but its getting more and more
complicated with lots of strings
I would prefer a constructor which accept a array of strings
#define MAX_WORDS 10
Banner::Banner( string words[MAX_WORDS] )
Is it possible to call this in the above manner?
(Like: Banner("I", "don't", "know", "what", "to", "write"); )
Do I have to create a fully defined array each time just to pass it to
the constructor?
string dummy[MAX_WORDS]={"I","don't","know","what","to","do","!","
"," "," "};
Banner( dummy );
Gregor
|
|
From: <em...@te...> - 2001-01-25 12:55:01
|
On 24 Jan 2001, at 13:41, Jared Eckersley wrote: In the configuration window, there is a button that says default settings, or something like that. It will reset everything to the defaults. > I changed the compiler options to use the cygnus compiler, but want to > switch back to mingw compiler. Can someone tell me the default > compiler directories. > > Thanks, > - Jared > > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > http://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |
|
From: <jos...@ya...> - 2001-01-25 08:35:46
|
I also noticed the same for mingw distribution list. I don't know the reason for that. Cheers, Chemanuel El rincón de Chemanuel - Resources for Windows programming in C++ --------------------------------- Do You Yahoo!? Yahoo! Auctions - Buy the things you want at great prices. |
|
From: Jared E. <ja...@vo...> - 2001-01-25 08:10:33
|
Thanks, that did it. I moved the header to another file and then it compiled fine. - Jared At 10:53 AM 1/25/2001 +0300, you wrote: >Try Removing the iostream headerfile from the source file and compilet. Then >again add the headerfile and compile again. >I had this problem quite a number of times. Hope it helps >Devik >----- Original Message ----- >From: "Jared Eckersley" <ja...@vo...> >To: <dev...@li...> >Sent: Thursday, January 25, 2001 2:58 AM >Subject: [Dev-C++] undefined reference to `cout' > > > > Can anyone tell me why I am getting undefined references to cout and other > > functions from iostream? > > > > - Jared > > > > > > _______________________________________________ > > Dev-cpp-users mailing list > > Dev...@li... > > http://lists.sourceforge.net/lists/listinfo/dev-cpp-users > > > > >_________________________________________________________ >Do You Yahoo!? >Get your free @yahoo.com address at http://mail.yahoo.com > > >_______________________________________________ >Dev-cpp-users mailing list >Dev...@li... >http://lists.sourceforge.net/lists/listinfo/dev-cpp-users |
|
From: Devik <dev...@ya...> - 2001-01-25 07:53:47
|
Try Removing the iostream headerfile from the source file and compilet. Then again add the headerfile and compile again. I had this problem quite a number of times. Hope it helps Devik ----- Original Message ----- From: "Jared Eckersley" <ja...@vo...> To: <dev...@li...> Sent: Thursday, January 25, 2001 2:58 AM Subject: [Dev-C++] undefined reference to `cout' > Can anyone tell me why I am getting undefined references to cout and other > functions from iostream? > > - Jared > > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > http://lists.sourceforge.net/lists/listinfo/dev-cpp-users > _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
|
From: Jared E. <ja...@vo...> - 2001-01-25 07:45:43
|
Can anyone please give me some help. Why am I getting this error? - Jared |
|
From: <em...@te...> - 2001-01-25 05:30:35
|
On 23 Jan 2001, at 21:51, JESSE SALAS wrote: WEll, for one thing, read the bottom of the emails that come through the list, or the email you recieved when you joined. They tell you how to get off the list. Sending multiple messages to the list, cussing, constitutes a count of harrasment, towards each person on the list, and it triable in most ever country in the known world. So just act like a civilised human being and use some common sense.! > HOW DO I GET OUT FROM THIS MAIL LIST. > > -THANX > > __________________________________________________ > Do You Yahoo!? > Yahoo! Auctions - Buy the things you want at great prices. > http://auctions.yahoo.com/ > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > http://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |
|
From: Jared E. <ja...@vo...> - 2001-01-25 00:01:13
|
Can anyone tell me why I am getting undefined references to cout and other functions from iostream? - Jared |
|
From: Richard P. E. <ev...@ma...> - 2001-01-24 23:48:18
|
What ever happened to the daily listings and archives that were posted at http://www.geocrawler.com/lists/3/SourceForge/6417/0/ ? I liked that idea and it made a quick reference for similar problems I encountered. When I couldn't find it there, then I posted a question to the members. It's definitely quicker than keeping all the mail postings I receive and having to go through them to see if some one had a similar problem that had already been answered. Does anyone know what happened to the geocrawler list or if it will be used again. Richard P. Evans |
|
From: Jared E. <ja...@vo...> - 2001-01-24 23:44:48
|
I changed the compiler options to use the cygnus compiler, but want to switch back to mingw compiler. Can someone tell me the default compiler directories. Thanks, - Jared |
|
From: Colin L. <web...@bl...> - 2001-01-24 06:42:37
|
please remember that when you send you message to a discussion list, hundreds of people gets your message... If you want to unsubscribe, simply go to http://www.bloodshed.net/devcpp-ml.html and follow the instructions.... Colin On Wed, 24 Jan 2001 06:51:41 JESSE SALAS wrote: > HOW DO I GET OUT FROM THIS MAIL LIST. > > -THANX > > __________________________________________________ > Do You Yahoo!? > Yahoo! Auctions - Buy the things you want at great prices. > http://auctions.yahoo.com/ > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > http://lists.sourceforge.net/lists/listinfo/dev-cpp-users |
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:51:25
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:51:22
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:51:21
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:51:20
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:51:16
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:51:11
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:51:08
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:51:03
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:50:59
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:50:55
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:50:51
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|
|
From: JESSE S. <sec...@ya...> - 2001-01-24 05:50:42
|
HOW DO I GET OUT FROM THIS MAIL LIST.
-THANX
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - Buy the things you want at great prices.
http://auctions.yahoo.com/
|