Re: [twsocket] D7 compiler trouble

2005-12-26 Thread Francois PIETTE
above) OK for me. -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "Francois PIETTE" <[EMAIL PROTECTED]> Sent: Monday, December 26, 2005 10:15 AM Subject: Re: [twsocket] D7 compiler tro

Re: [twsocket] D7 compiler trouble

2005-12-26 Thread Arno Garrels
ft is the default. You can undock the Code Explorer window and let it > floting or dock it again elsewhere. > > - Original Message - > From: "Arno Garrels" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Sunday, December 25, 2005 1:18 AM > Subject: Fw: [twsocke

Re: [twsocket] D7 compiler trouble

2005-12-24 Thread Arno Garrels
Francois PIETTE wrote: What do you mean by "lists TBaseHttpConnection under Types" ? >>> >>> New type TBaseHttpConnection would be listed by the object inspector >>> under section Types. >> >> Stupid, I was always talking about the object inspector but ment the >> project >> management windo

Re: [twsocket] D7 compiler trouble

2005-12-24 Thread Francois PIETTE
>>> What do you mean by "lists TBaseHttpConnection under Types" ? >> >> New type TBaseHttpConnection would be listed by the object inspector >> under section Types. > > Stupid, I was always talking about the object inspector but ment the > project > management window sorry. I still don't understa

Re: [twsocket] D7 compiler trouble

2005-12-24 Thread Arno Garrels
Arno Garrels wrote: > Francois PIETTE wrote: >>> Thanks, that works. I found several other places where those >>> declarations are used. So it's not OT. For instance: >>> >>> {$IFDEF USE_SSL} >>>THttpConnection = class(TSslWSocketClient) >>> {$ELSE} >>>THttpConnection = class(TWSocketClien

Re: [twsocket] D7 compiler trouble

2005-12-24 Thread Arno Garrels
Francois PIETTE wrote: >> Thanks, that works. I found several other places where those declarations >> are used. So it's not OT. For instance: >> >> {$IFDEF USE_SSL} >>THttpConnection = class(TSslWSocketClient) >> {$ELSE} >>THttpConnection = class(TWSocketClient) >> {$ENDIF} >> >> All tho

Re: [twsocket] D7 compiler trouble

2005-12-24 Thread Francois PIETTE
> Thanks, that works. I found several other places where those declarations > are used. So it's not OT. For instance: > > {$IFDEF USE_SSL} >THttpConnection = class(TSslWSocketClient) > {$ELSE} >THttpConnection = class(TWSocketClient) > {$ENDIF} > > All those declarations cause the IDE to

Re: [twsocket] D7 compiler trouble

2005-12-24 Thread Arno Garrels
Thanks, that works. I found several other places where those declarations are used. So it's not OT. For instance: {$IFDEF USE_SSL} THttpConnection = class(TSslWSocketClient) {$ELSE} THttpConnection = class(TWSocketClient) {$ENDIF} All those declarations cause the IDE to display an additio

Re: [twsocket] D7 compiler trouble

2005-12-23 Thread Maurizio Lotauro
On 23-Dec-05 18:57:05 Arno Garrels wrote: >Maurizio Lotauro wrote: [...] >> But that error is on a dialog box instead on the message windows. In this >> case TForm1 is used in the dfm so probaly the compiler doesn't like the >> define "around" cleass declaration. >> >> I'm still using D5. >I tr

Re: [twsocket] D7 compiler trouble

2005-12-23 Thread Arno Garrels
Maurizio Lotauro wrote: > Scrive Arno Garrels <[EMAIL PROTECTED]>: > >> Please try this: > > [...] > > On that line > >TForm1 = class(TMyForm) > > I get an error: > > "Expected ':' but '=' found." > > But that error is on a dialog box instead on the message windows. In this > case TForm1

Re: [twsocket] D7 compiler trouble

2005-12-23 Thread Maurizio Lotauro
Scrive Arno Garrels <[EMAIL PROTECTED]>: > Please try this: [...] On that line TForm1 = class(TMyForm) I get an error: "Expected ':' but '=' found." But that error is on a dialog box instead on the message windows. In this case TForm1 is used in the dfm so probaly the compiler doesn't li

Re: [twsocket] D7 compiler trouble

2005-12-23 Thread Arno Garrels
Maurizio Lotauro wrote: > Scrive Arno Garrels <[EMAIL PROTECTED]>: > >> This one displays anything below in the private section, does not work >> at all >> >> TCustomWSocket = class( {$IFNDEF NO_DEBUG_LOG} TIcsBaseLogComp {$ELSE} >> TComponent {$ENDIF}) >> >> >> Displays TCustomWSocket as a pr

Re: [twsocket] D7 compiler trouble

2005-12-23 Thread Maurizio Lotauro
Scrive Arno Garrels <[EMAIL PROTECTED]>: > Maurizio Lotauro wrote: > > Scrive Arno Garrels <[EMAIL PROTECTED]>: > > > >> This one displays anything below in the private section, does not work > >> at all > >> > >> TCustomWSocket = class( {$IFNDEF NO_DEBUG_LOG} TIcsBaseLogComp {$ELSE} > >> TComp

Re: [twsocket] D7 compiler trouble

2005-12-23 Thread Arno Garrels
Maurizio Lotauro wrote: > Scrive Arno Garrels <[EMAIL PROTECTED]>: > >> This one displays anything below in the private section, does not work >> at all >> >> TCustomWSocket = class( {$IFNDEF NO_DEBUG_LOG} TIcsBaseLogComp {$ELSE} >> TComponent {$ENDIF}) >> >> >> Displays TCustomWSocket as a pr

Re: [twsocket] D7 compiler trouble

2005-12-23 Thread Maurizio Lotauro
Scrive Arno Garrels <[EMAIL PROTECTED]>: > This one displays anything below in the private section, does not work at all > > TCustomWSocket = class( {$IFNDEF NO_DEBUG_LOG} TIcsBaseLogComp {$ELSE} > TComponent {$ENDIF}) > > > Displays TCustomWSocket as a private var an puts all other privat vars

[twsocket] D7 compiler trouble

2005-12-23 Thread Arno Garrels
This one displays anything below in the private section, does not work at all TCustomWSocket = class( {$IFNDEF NO_DEBUG_LOG} TIcsBaseLogComp {$ELSE} TComponent {$ENDIF}) Displays TCustomWSocket as a private var an puts all other privat vars under protected {$IFNDEF NO_DEBUG_LOG} TCustomWSo