Received: from darkside. (darkside. [210.8.201.180]) by 
 mail. (Weasel v1.20) for <deadmail>; 
 06 July 2001 01:00:00 
From: "Digest" <ianatos2site dot com>
To: "OS/2GenAu Digest" <deadmail>
Date: Fri, 06 Jul 2001 01:00:00 +1000 (EDT)
Priority: Normal
X-Mailer: CASMailer 1.0 for OS/2 Warp PPC 1.05/G4
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Subject: [os2genau_digest] No. 110
Message-ID: <200107060100.000029G6atmail.>
Reply-To: <deadmail>

Date:- 06 July 2001

1================================================

From: "John Angelico" <talldadatkepl dot com dot au>
Date: Thu, 05 Jul 2001 00:16:28 +0900 (EST)
Subject: Re: [os2genau] Anybody able to use Freeonline as an ISP?

On Wed, 4 Jul 2001 07:47:20 -0400, Chris Neeson wrote:

>Can anybody usefully connect to Freeonline as an ISP from OS2?

>
>I'd like to know if any other OS2rs can usefully
>access it as an ISP, from OS2 ( if so, how? ),
>before escalating to the also-partly-useful TIO.
>
>relevant info:
>
>        dns             :       172.17.1.110
>        domain name     :        gw.freeonline dot com dot au   <- well, that's
>what PPP resolves
>        home page       :       www.freeonline dot com dot au

Hi Chris.

I checked the web home page, and found it was the one that NAB bank
was promoting but I couldn't use it because I had Netscape and OS/2
and therefore didn't have the (expected, required) MS software to
connect with the various services like FreeFax. I could do a few free
things but that was all.

I guess it's a case of I got what I paid for.


Best regards
John Angelico
OS/2 SIG
talldadatmelbpc dot org dot au or talldadatkepl dot com dot au
--------------------------------------------

PMTagline v1.50 - Copyright, 1996-1997, Stephen Berg and John Angelico
.... If a train station is where the train stops, what is a work station?

2==============================================

From: "Ian Manners" <ianatos2site dot com>
Date: Thu, 05 Jul 2001 00:32:13 +1000 (EST)
Subject: Re: [os2genau] List update

Hi Ed

>Perhaps that should be "failover" not "fallover" ??

My wife is the only one who's allowed to tell me off
for not checking my spelling and grammer ;-)

>(I think have all had systems that have a fallover mode !!

No, thats Windows NT ;-)


Cheers
Ian B Manners
http://www.os2site dot com/

Tact, (n): The unsaid part of what you are thinking.

3==============================================

Date: Thu, 05 Jul 2001 00:31:17 +1000
From: Daryl Pilkington <u3232athome.dialix dot com>
Subject: [os2genau] Telstra BigPond Direct dial-up for sale

Hi,
I've got a client with a Telstra BigPond Direct dialup service for sale.
Should be able to change the account details over, (haven't asked
Telstra yet).

This is an ultra-reliable professional permanent dial-up connection with
a POP in Adelaide.
Fixed IP, complete with small subnet of IP addresses.

This has a minimum monthly charge of $20 & had a $500 setup fee, as you
get a dedicated port to dial into.

The client is moving to ADSL.

All reasonable offers considered.

-- 
Regards, 

Daryl  Pilkington 

//// The PC-Therapist, Business Computing Integration
O<O  AUSTRALIA
\_/
<O>  OS/2 Warp, Redhat Linux, DB2
     IBM Certified Systems Expert

        email: darylpatpc-therapist dot com dot au
          ICQ: 91914134
          Tel: +61-2-8902-1300
          Mob: +61-425-251-300
          Fax: +61-2-9411-3720
      Mob SMS: 0425251300.0000atorangenet dot com dot au
               (120 characters max, send no carriage returns)

4==============================================

Date: Thu, 05 Jul 2001 15:09:50 +1000
From: Daryl Pilkington <u3232athome.dialix dot com>
Subject: [os2genau] parse error using gcc 2.8.1

Hi,
I'm learning C++ programming.

I get:
Tabitha> gcc WK13L31.cpp -lstdcpp -s
WK13L31.cpp: In function `int main()':
WK13L31.cpp:5: parse error before `using'

The error is with the:
....
using std::cout:
....
statement.
What am I doing wrong?

APPENDIX:
Compiler:
gcc 2.8.1

WK13L31.cpp
************************************************
#include <iostream>

int main()
{
   using std::cout;

//  cout << "The size of an int is:\t\t"
//     << sizeof(int)     << " bytes.\n";
//  cout << "The size of a short int is:\t"
//     << sizeof(short)   << " bytes.\n";
//  cout << "The size of a long int is:\t"
//     << sizeof(long)    << " bytes.\n";
//  cout << "The size of a char is:\t\t"
//     << sizeof(char)    << " bytes.\n";
//  cout << "The size of a float is:\t\t"
//     << sizeof(float)   << " bytes.\n";
//  cout << "The size of a double is:\t"
//     << sizeof(double)  << " bytes.\n";
//  cout << "The size of a bool is:\t\t"
//     << sizeof(bool)    << " bytes.\n";

   return 0;
 }
************************************************

-- 
Regards, 

Daryl  Pilkington 

//// The PC-Therapist, Business Computing Integration
O<O  AUSTRALIA
\_/
<O>  OS/2 Warp, Redhat Linux, DB2
     IBM Certified Systems Expert

        email: darylpatpc-therapist dot com dot au
          ICQ: 91914134
          Tel: +61-2-8902-1300
          Mob: +61-425-251-300
          Fax: +61-2-9411-3720
      Mob SMS: 0425251300.0000atorangenet dot com dot au
               (120 characters max, send no carriage returns)

5==============================================

From: "Dr Graham Norton FRACP Neurologist" <gnatsmart-road dot com dot au>
Date: Thu, 05 Jul 2001 14:55:38 +1100 (EDT)
Subject: Re: [os2genau] parse error using gcc 2.8.1

learning C+++ programming!!


On Thu, 05 Jul 2001 15:09:50 +1000, Daryl Pilkington wrote:

>Hi,
>I'm learning C++ programming.
>
>I get:
>Tabitha> gcc WK13L31.cpp -lstdcpp -s
>WK13L31.cpp: In function `int main()':
>WK13L31.cpp:5: parse error before `using'
>
>The error is with the:
>...
>using std::cout:
>...
>statement.
>What am I doing wrong?
>
>APPENDIX:
>Compiler:
>gcc 2.8.1
>
>WK13L31.cpp
>************************************************
>#include <iostream>
>
>int main()
>{
>   using std::cout;
>
>//  cout << "The size of an int is:\t\t"
>//     << sizeof(int)     << " bytes.\n";
>//  cout << "The size of a short int is:\t"
>//     << sizeof(short)   << " bytes.\n";
>//  cout << "The size of a long int is:\t"
>//     << sizeof(long)    << " bytes.\n";
>//  cout << "The size of a char is:\t\t"
>//     << sizeof(char)    << " bytes.\n";
>//  cout << "The size of a float is:\t\t"
>//     << sizeof(float)   << " bytes.\n";
>//  cout << "The size of a double is:\t"
>//     << sizeof(double)  << " bytes.\n";
>//  cout << "The size of a bool is:\t\t"
>//     << sizeof(bool)    << " bytes.\n";
>
>   return 0;
> }
>************************************************
>
>-- 
>Regards, 
>
>Daryl  Pilkington 
>
>//// The PC-Therapist, Business Computing Integration
>O<O  AUSTRALIA
>\_/
><O>  OS/2 Warp, Redhat Linux, DB2
>     IBM Certified Systems Expert
>
>        email: darylpatpc-therapist dot com dot au
>          ICQ: 91914134
>          Tel: +61-2-8902-1300
>          Mob: +61-425-251-300
>          Fax: +61-2-9411-3720
>      Mob SMS: 0425251300.0000atorangenet dot com dot au
>               (120 characters max, send no carriage returns)
>

Graham Norton
President
OS2 Users Group SA

6==============================================

Date: Thu, 05 Jul 2001 15:48:48 +1000
From: Daryl Pilkington <u3232athome.dialix dot com>
Subject: Re: [os2genau] parse error using gcc 2.8.1

Hi Graham,
Err, its C++, the ++ means to increment.
So C++ is an increment of C in functionality.

Some useless, (Java), coffee-table conversation fodder.

Anyone got any books on IBM C Set ++?

Dr Graham Norton FRACP Neurologist wrote:
> 
> learning C+++ programming!!
> 
> On Thu, 05 Jul 2001 15:09:50 +1000, Daryl Pilkington wrote:
> 
> >Hi,
> >I'm learning C++ programming.
> >
SNIP
> >What am I doing wrong?
> >
SNIP
>
-- 
Regards, 

Daryl  Pilkington 

//// The PC-Therapist, Business Computing Integration
O<O  AUSTRALIA
\_/
<O>  OS/2 Warp, Redhat Linux, DB2
     IBM Certified Systems Expert

        email: darylpatpc-therapist dot com dot au
          ICQ: 91914134
          Tel: +61-2-8902-1300
          Mob: +61-425-251-300
          Fax: +61-2-9411-3720
      Mob SMS: 0425251300.0000atorangenet dot com dot au
               (120 characters max, send no carriage returns)

7==============================================

From: "David Forrester" <davidforatterrigal dot net dot au>
Date: Thu, 05 Jul 2001 22:58:58 +1000 (EST)
Subject: Re: [os2genau] parse error using gcc 2.8.1

On Thu, 05 Jul 2001 15:09:50 +1000, Daryl Pilkington wrote:

>Hi,
>I'm learning C++ programming.
>
>I get:
>Tabitha> gcc WK13L31.cpp -lstdcpp -s
>WK13L31.cpp: In function `int main()':
>WK13L31.cpp:5: parse error before `using'
>
>The error is with the:
>...
>using std::cout:
>...
>statement.
>What am I doing wrong?

My references are at work, so I'm working on memory but, the only way I
would expect this to be more like:

#include <iostream>
using namespace std;

int main()
{

// Actual code.


Also, when the error message says "before", it generally does mean the
error is before the code pointed to.  And it can be surprising how far
before the actual problem is.

Sorry, I can't be much help.  At the moment I'm doing Smalltalk (at
work) and REXX (at home), and C++ has been pushed out of my brain. 
Maybe I should say "swapped" out.

--
David Forrester
davidforatterrigal dot net dot au
http://www.os2world dot com/djfos2/

8==============================================

Date: Thu, 05 Jul 01 23:20:51 +1000
From: "Simon Coulter" <shcatflybynight dot com dot au>
Subject: Re: [os2genau] parse error using gcc 2.8.1

7
Hello Daryl,

You wrote:
>Tabitha> gcc WK13L31.cpp -lstdcpp -s

Does that mean you also have a system called Samantha and two systems bot=
h =

called Darren?

Regards,
Simon Coulter.

=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=
=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=
=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB
=AB=BB FlyByNight Software         AS/400 Technical Specialists       =AB=
=BB
=AB=BB Eclipse the competition - run your business on an IBM AS/400.  =AB=
=BB
=AB=BB                                                                =AB=
=BB
=AB=BB Phone: +61 3 9419 0175   Mobile: +61 0411 091 400        /"\   =AB=
=BB
=AB=BB Fax:   +61 3 9419 0175   mailto: shcatflybynight dot com dot au   \ /   =AB=
=BB
=AB=BB                                                           X    =AB=
=BB
=AB=BB               ASCII Ribbon campaign against HTML E-Mail  / \   =AB=
=BB
=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=
=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=
=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=AB=BB=
