dev-cpp-users Mailing List for Dev-C++ (Page 728)
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: laurent513 <lau...@in...> - 2001-01-28 22:46:21
|
Hello. About Windows programming : - How can i change the text of a button created with the "CreateWindow" = function ? ( I tried "SetWindowText" but the button doesn't change.) - And how can I get its text like the "GetWindowText" function ? ( I tried "GetWindowText" but the function return a empty text) =20 Thank you. =20 |
|
From: Alan T. <ala...@3n...> - 2001-01-28 01:14:57
|
I am trying to append to a file. However, the compiler gives me
the following error:
'ios_base' undeclared
(first use this function)
The code is below. Any idea what I am doing wrong? Thanks, =
Alan
#include <fstream>
int main()
{
fstream append_file;
append_file.open("test_append.txt", ios_base::app);
append_file << "This is a line of text." << endl;
append_file.close()
return 0;
}
|
|
From: Kuriyama H. <hs...@ho...> - 2001-01-28 00:38:32
|
Try this:
#include <fstream>
int main() {
ofstream out("test_append.txt",ios::app);
out << "This is a line of text." << endl;
out.close();
return (0);
}
Hsutaro
>From: "Alan Thomas" <ala...@3n...>
>Reply-To: dev...@li...
>To: <dev...@li...>
>Subject: [Dev-C++] appending to a file
>Date: Fri, 26 Jan 2001 22:08:32 -0500
>MIME-Version: 1.0
>
> I am trying to append to a file. However, the compiler gives
me
>the following error:
>
> 'ios_base'
undeclared
>(first use this function)
>
>The code is below. Any idea what I am doing wrong? Thanks, Alan
>
>#include <fstream>
>
>int main()
>{
> fstream append_file;
>
> append_file.open("test_append.txt", ios_base::app);
> append_file << "This is a line of text." << endl;
> append_file.close()
>
> return 0;
>}
>
>
>_______________________________________________
>Dev-cpp-users mailing list
>Dev...@li...
>http://lists.sourceforge.net/lists/listinfo/dev-cpp-users
_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
|
|
From: Alan T. <ala...@3n...> - 2001-01-27 20:13:15
|
Are you just in C or C++? strtok is a terrible function, because it destroys the original string by placing a NULL character at the location of the delimiter. So, if you use it, you should copy the original string into a temporary one. See http://www.gator.net/~garyg/C/FUNCTIONS/strtok.html for info on the function. If you can use C++, there are some nice string operations (find, substr, etc.) to do things like this easily. You could read it in as a string, find a delimiting character (or string or from a set of characters) and extract a substring, without messing up the original string. This is a much cleaner implementation. See http://www.icce.rug.nl/docs/cplusplus/cplusplus.html for a tutorial on these string operations -- find the string section. Alan |
|
From: Alan T. <ala...@3n...> - 2001-01-27 20:13:05
|
I am trying to append to a file. However, the compiler gives me
the following error:
'ios_base' undeclared
(first use this function)
The code is below. Any idea what I am doing wrong? Thanks, Alan
#include <fstream>
int main()
{
fstream append_file;
append_file.open("test_append.txt", ios_base::app);
append_file << "This is a line of text." << endl;
append_file.close()
return 0;
}
|
|
From: Alan T. <ala...@3n...> - 2001-01-27 20:12:57
|
> I am trying to append to a file. However, the compiler gives
me
> the following error:
>
> 'ios_base' undeclared
> (first use this function)
>
> The code is below. Any idea what I am doing wrong? Thanks, Alan
>
> #include <fstream>
>
> int main()
> {
> fstream append_file;
>
> append_file.open("test_append.txt", ios_base::app);
> append_file << "This is a line of text." << endl;
> append_file.close()
>
> return 0;
> }
>
>
|
|
From: ropbert d b. <lon...@ju...> - 2001-01-27 16:51:01
|
If you look in process.h under the include folder you will find the function: int _spawnl (int nMode, const char* szPath, const char* szArgv0,...); This function will allow you to SPAWN (start a new process) which can be your batch file which you generate and store. Hope this helps. lonestar36 On Fri, 26 Jan 2001 19:39:21 -0800 " Jose Guevarra" <jo...@iq...> writes: > Hi everyone, > > Is there a way to make an executable that can write a batch file > then "run > it". Or is there something else out there that can do the job??? > > > > Jose Guevarra > > |
|
From: J. G. <jo...@iq...> - 2001-01-27 03:39:23
|
Hi everyone, Is there a way to make an executable that can write a batch file then "run it". Or is there something else out there that can do the job??? Jose Guevarra |
|
From: Mitchell, T. (HNA) <Tam...@hj...> - 2001-01-26 20:42:16
|
thanks a million
-----Original Message-----
From: ropbert d baugh [mailto:lon...@ju...]
Sent: Friday, January 26, 2001 3:31 PM
To: dev...@li...
Subject: Re: [Dev-C++] need help on converting a phone number
Here you go. You forgot on minor item. see below.
lonestar36
On Fri, 26 Jan 2001 11:41:00 -0500 "Mitchell, Tamra (HNA)" <
Tam...@hj... <mailto:Tam...@hj...> > writes:
The program should convert the area code to an int using atoi
convert the phone number to a long using atol. It does not work correctly.
Any suggestions?
Thanks
/* Tamra Mitchell
Phone Number program */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main()
{
char phoneNumber[15];
char *codePtr, *threePtr, *fourPtr, *local;
int areacode, i;
long number;
printf("Enter phone number in following format (555) 555-5555 \n");
gets(phoneNumber);
codePtr = strtok(phoneNumber, " ");
threePtr = strtok(NULL, "-");
fourPtr = strtok(NULL, "\0");
for(i=0; i < strlen(codePtr); i++)
{
if(codePtr[i] == '(')
codePtr[i] = ' ';
{
if(codePtr[i] == ')')
codePtr[i] = ' ';
}
}
// printf("\nArea Code: ", codePtr); // forgot to put in format
specifier
// printf("Local Exchange: ", threePtr);
// printf("Local Number: ", fourPtr);
printf("\nArea Code: %s ", codePtr);
printf("Local Exchange: %s ", threePtr);
printf("Local Number: %s \n", fourPtr);
local=strcat(threePtr, fourPtr);
areacode=atoi(codePtr);
number=atol(local);
system("PAUSE");
return 0;
}
Tamra Y. Mitchell
Heinz North America
Operating Systems Analyst
(412) 237-5232 Work
(412) 996-9078 Cell Phone
|
|
From: ropbert d b. <lon...@ju...> - 2001-01-26 20:35:15
|
Here you go. You forgot on minor item. see below.
lonestar36
On Fri, 26 Jan 2001 11:41:00 -0500 "Mitchell, Tamra (HNA)"
<Tam...@hj...> writes:
The program should convert the area code to an int using atoi
convert the phone number to a long using atol. It does not work
correctly. Any suggestions?
Thanks
/* Tamra Mitchell
Phone Number program */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main()
{
char phoneNumber[15];
char *codePtr, *threePtr, *fourPtr, *local;
int areacode, i;
long number;
printf("Enter phone number in following format (555) 555-5555 \n");
gets(phoneNumber);
codePtr = strtok(phoneNumber, " ");
threePtr = strtok(NULL, "-");
fourPtr = strtok(NULL, "\0");
for(i=0; i < strlen(codePtr); i++)
{
if(codePtr[i] == '(')
codePtr[i] = ' ';
{
if(codePtr[i] == ')')
codePtr[i] = ' ';
}
}
// printf("\nArea Code: ", codePtr); // forgot to put in format
specifier
// printf("Local Exchange: ", threePtr);
// printf("Local Number: ", fourPtr);
printf("\nArea Code: %s ", codePtr);
printf("Local Exchange: %s ", threePtr);
printf("Local Number: %s \n", fourPtr);
local=strcat(threePtr, fourPtr);
areacode=atoi(codePtr);
number=atol(local);
system("PAUSE");
return 0;
}
Tamra Y. Mitchell
Heinz North America
Operating Systems Analyst
(412) 237-5232 Work
(412) 996-9078 Cell Phone |
|
From: Mitchell, T. (HNA) <Tam...@hj...> - 2001-01-26 16:47:33
|
The program should convert the area code to an int using atoi
convert the phone number to a long using atol. It does not work correctly.
Any suggestions?
Thanks
/* Tamra Mitchell
Phone Number program */
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main()
{
char phoneNumber[15];
char *codePtr, *threePtr, *fourPtr, *local;
int areacode, i;
long number;
printf("Enter phone number in following format (555) 555-5555 \n");
gets(phoneNumber);
codePtr = strtok(phoneNumber, " ");
threePtr = strtok(NULL, "-");
fourPtr = strtok(NULL, "\0");
for(i=0; i < strlen(codePtr); i++)
{
if(codePtr[i] == '(')
codePtr[i] = ' ';
{
if(codePtr[i] == ')')
codePtr[i] = ' ';
}
}
printf("\nArea Code: ", codePtr);
printf("Local Exchange: ", threePtr);
printf("Local Number: ", fourPtr);
local=strcat(threePtr, fourPtr);
areacode=atoi(codePtr);
number=atol(local);
system("PAUSE");
return 0;
}
Tamra Y. Mitchell
Heinz North America
Operating Systems Analyst
(412) 237-5232 Work
(412) 996-9078 Cell Phone
|
|
From: <em...@te...> - 2001-01-26 14:22:28
|
> > //few statements in between What WERE The few statements in between. When you look for an error in C or C++ you HAVE to look at everything in the block, or even before the block if it is inside of another block. //a few statments in between doesn't tell us much, unless you can delete them all, and the loop still get the error. |
|
From: ropbert d b. <lon...@ju...> - 2001-01-26 13:34:44
|
It is most likley one of the "few statements in between" that is causing
the problem.
Try copying and pasting the complete file.
lstar36
On Fri, 26 Jan 2001 15:17:51 +0530 "Rahul Sangole"
<rah...@in...> writes:
> I am getting the following error while using Dev C++ :
> parse error in 'do'
>
> I am getting similar errors for while loops, return statements etc.
> eg:
>
> int main()
> {
> clrscr();
> do{
> cout<<"Main - ";
> //few statements in between
> } while(ch!='a')
> return 0;
> }
>
> Please help.
>
> Regards,
> Rahul.
>
>
> _______________________________________________
> Dev-cpp-users mailing list
> Dev...@li...
> http://lists.sourceforge.net/lists/listinfo/dev-cpp-users
>
|
|
From: Ioannis V. <no...@ya...> - 2001-01-26 11:52:45
|
> -----Original Message-----
> From: dev...@li...
> [mailto:dev...@li...]On Behalf Of
> Rahul Sangole
> Sent: Friday, January 26, 2001 12:00 PM
> To: dev...@li...
> Subject: Re: [Dev-C++] Error - need help
>
>
> That was a typo.
> I mean, even with the ; there is the parse error
#include <iostream>
#include <cstdlib>
> int main()
> {
using namespace std;
// > clrscr();
//There is no such thing.
system("cls");
> do{
char ch=0;
> cout<<"Main - ";
> //few statements in between
// > } while(ch!='a')
//needs ;
}while(ch!='a');
> return 0;
> }
Ioannis
* Ioannis Vranos
* Programming pages: http://members.nbci.com/noicys
* Alternative URL: http://run.to/noicys
|
|
From: Ioannis V. <no...@ya...> - 2001-01-26 11:47:32
|
> -----Original Message-----
> From: dev...@li...
> [mailto:dev...@li...]On Behalf Of
> Rahul Sangole
> Sent: Friday, January 26, 2001 11:48 AM
> To: dev...@li...
> Subject: [Dev-C++] Error - need help
>
>
> I am getting the following error while using Dev C++ :
> parse error in 'do'
>
> I am getting similar errors for while loops, return statements etc.
> eg:
>
> int main()
> {
> clrscr();
> do{
> cout<<"Main - ";
> //few statements in between
> } while(ch!='a')
while(ch!='a');
> return 0;
> }
>
> Please help.
>
> Regards,
> Rahul.
>
>
> _______________________________________________
> Dev-cpp-users mailing list
> Dev...@li...
> http://lists.sourceforge.net/lists/listinfo/dev-cpp-users
>
|
|
From: Rahul S. <rah...@in...> - 2001-01-26 09:59:17
|
That was a typo.
I mean, even with the ; there is the parse error
----- Original Message -----
From: "Jay Silverman" <mys...@op...>
To: <dev...@li...>
Sent: Friday, January 26, 2001 3:18 PM
Subject: Re: [Dev-C++] Error - need help
> You need a ; after while(ch!='a')
>
> ----- Original Message -----
> From: "Rahul Sangole" <rah...@in...>
> To: <dev...@li...>
> Sent: Friday, January 26, 2001 4:47 AM
> Subject: [Dev-C++] Error - need help
>
>
> > I am getting the following error while using Dev C++ :
> > parse error in 'do'
> >
> > I am getting similar errors for while loops, return statements etc.
> > eg:
> >
> > int main()
> > {
> > clrscr();
> > do{
> > cout<<"Main - ";
> > //few statements in between
> > } while(ch!='a')
> > return 0;
> > }
> >
> > Please help.
> >
> > Regards,
> > Rahul.
> >
> >
> > _______________________________________________
> > Dev-cpp-users mailing list
> > Dev...@li...
> > http://lists.sourceforge.net/lists/listinfo/dev-cpp-users
> >
>
>
> _______________________________________________
> Dev-cpp-users mailing list
> Dev...@li...
> http://lists.sourceforge.net/lists/listinfo/dev-cpp-users
|
|
From: Jay S. <mys...@op...> - 2001-01-26 09:52:20
|
You need a ; after while(ch!='a')
----- Original Message -----
From: "Rahul Sangole" <rah...@in...>
To: <dev...@li...>
Sent: Friday, January 26, 2001 4:47 AM
Subject: [Dev-C++] Error - need help
> I am getting the following error while using Dev C++ :
> parse error in 'do'
>
> I am getting similar errors for while loops, return statements etc.
> eg:
>
> int main()
> {
> clrscr();
> do{
> cout<<"Main - ";
> //few statements in between
> } while(ch!='a')
> return 0;
> }
>
> Please help.
>
> Regards,
> Rahul.
>
>
> _______________________________________________
> Dev-cpp-users mailing list
> Dev...@li...
> http://lists.sourceforge.net/lists/listinfo/dev-cpp-users
>
|
|
From: Rahul S. <rah...@in...> - 2001-01-26 09:47:25
|
I am getting the following error while using Dev C++ :
parse error in 'do'
I am getting similar errors for while loops, return statements etc.
eg:
int main()
{
clrscr();
do{
cout<<"Main - ";
//few statements in between
} while(ch!='a')
return 0;
}
Please help.
Regards,
Rahul.
|
|
From: Alexei P. <aa...@is...> - 2001-01-26 07:40:29
|
1. First run of freshly-installed dev-c++ comes up with _both_ options in "View|Compiler Output..." selected. Leter you can only toggle between them, which, I suppose, is correct behavior. 2. First run comes up in _almost-full-screen_ mode. It hides the status bar under the taskbar of Win9x/NT. It takes time to find it, since toglling "View|Statusbar" doesn't change anything aparently. 3. On freshly installed dev-c++ do the following... -- "Compiler Output" to "... only then needed" -- "Statusbar" to Off -- "Compiler Output" to "Always..." -- "Statusbar" to On Oops... Status bar appears _above_ Compiler output. It's resizable! You can even pull it over and cover Compiler output if you pull by right-bottom coner! It behaves very unpredictably. I just played with this two subwindows, it felt very strange. I think that Statusbar should not be resizable, should be always on the bottom. 4. I managed to grey out the entire bar "File Edit Search..." bar after I brought up ATI Multimedia Center... So, I think this is not necessarily dev-c++ bug. Thanks! I hope this report will lead to fast 4.02 upgrade. |
|
From: Jared E. <ja...@vo...> - 2001-01-26 00:18:21
|
what is the color chart for the function textcolor(int color) in conio.c ? What do the colors map out to? red = ? blue = ? - Jared |
|
From: Frazell T. <fr...@fl...> - 2001-01-25 23:25:23
|
No need to become mad at us there is a remove link at the bottom of all emails received via this board please visit http://lists.sourceforge.net/lists/listinfo/dev-cpp-users to unsubscribe if you have anymore trouble please ask our help in a more respectful manner peace -----Original Message----- From: dev...@li... [mailto:dev...@li...]On Behalf Of em...@te... Sent: Thursday, January 25, 2001 12:30 AM To: JESSE SALAS; dev...@li... Subject: Re: [Dev-C++] HOW THE FUCK DO I GET OUT FROM THIS LIST??? 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 > _______________________________________________ Dev-cpp-users mailing list Dev...@li... http://lists.sourceforge.net/lists/listinfo/dev-cpp-users |
|
From: Chris B. <ch...@cb...> - 2001-01-25 22:14:18
|
Sorry - false alarm. It was a problem with my ISP. Thanks. Chris B. ----- Original Message ----- From: "Colin Laplace" <web...@bl...> To: <dev...@li...> Sent: 25 January 2001 20:18 Subject: Re: [Dev-C++] Site down? > The site isn't down it's working perfectly at this moment. > It must be a problem with your internet connection. > > Greetings :) > Colin > > > On Thu, 25 Jan 2001 20:17:44 Chris Bunney wrote: > > 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. > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > > <HTML><HEAD> > > <META content="text/html; charset=iso-8859-1" http-equiv=Content-Type> > > <META content="MSHTML 5.00.2919.6307" name=GENERATOR> > > <STYLE></STYLE> > > </HEAD> > > <BODY bgColor=#ffffff> > > <DIV><FONT size=2>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?</FONT></DIV> > > <DIV> </DIV> > > <DIV><FONT size=2>Chris B.</FONT></DIV></BODY></HTML> > > > > > _______________________________________________ > Dev-cpp-users mailing list > Dev...@li... > http://lists.sourceforge.net/lists/listinfo/dev-cpp-users > |
|
From: Colin L. <web...@bl...> - 2001-01-25 20:17:40
|
The site isn't down it's working perfectly at this moment. It must be a problem with your internet connection. Greetings :) Colin On Thu, 25 Jan 2001 20:17:44 Chris Bunney wrote: > 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. > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> > <HTML><HEAD> > <META content="text/html; charset=iso-8859-1" http-equiv=Content-Type> > <META content="MSHTML 5.00.2919.6307" name=GENERATOR> > <STYLE></STYLE> > </HEAD> > <BODY bgColor=#ffffff> > <DIV><FONT size=2>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?</FONT></DIV> > <DIV> </DIV> > <DIV><FONT size=2>Chris B.</FONT></DIV></BODY></HTML> |
|
From: Jay S. <mys...@op...> - 2001-01-25 20:11:56
|
Bloodshed.net's working now, and it worked yesterday..so..must be on your end. ----- Original Message ----- From: Chris Bunney To: dev-c++ Sent: Thursday, January 25, 2001 2:17 PM Subject: [Dev-C++] Site down? 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: Mitchell, T. (HNA) <Tam...@hj...> - 2001-01-25 19:49:22
|
How do I print a tokenized string in reverse order using strtok: Thanks Tamra Y. Mitchell Heinz North America Operating Systems Analyst (412) 237-5232 Work (412) 996-9078 Cell Phone |