|
From: Maurizio la C. <m.l...@gm...> - 2012-10-23 17:18:19
|
Hi Nando,
as just said to Culik, we can discuss about the ct if is part of core
(and anyway in Harbour isn't), but this in effects is usefulness.
The true question is: why to use AtToken()?
And in addition: can a symbol to be both a class var AND a dbf field?
(... I think not...)
I think that a code as:
METHOD AddName( cName ) CLASS HControl
local nPos
IF !EMPTY( cName ) .AND. VALTYPE( cName) == "C" .AND. ::oParent != Nil .AND. ! "[" $ cName
IF ( nPos := AT( ":", cName ) ) > 0
cName := SubStr( cName, nPos + 1 )
ELSEIF ( nPos := AT( "->", cName ) ) > 0
cName := SubStr( cName, nPos + 2 )
ENDIF
... etc. ...
could do the job without the need for AtToken() and is more optimized
and fast.
Just a suggestion.
BR
Maurizio
Il 23/10/2012 14:55, Basso, Luis Fernando ha scritto:
> Hi
> CT.LIB is not 3rd party
> ct.lib is part of the core, the problem was in the bat of compiling the
> designer
> I added this lib in build
>
> Regards
> Basso
>
> -----Mensagem Original-----
> From: oleksa
> Sent: Tuesday, October 23, 2012 3:34 AM
> To: Hwgui-developers
> Subject: Re: [Hwgui-developers] * $Id: Changelog 1916
> 2012-10-1816:28:18Zlfbasso $
>
> Hi Basso!
>
> What are you planned with a ct lib? Do you want to include it to default
> building process of Hwgui?
>
> Regards,
> Alexey Myronenko
>
> --- Оригінальне повідомлення ---
> Від кого: "oleksa" <m.o...@uk...>
> Кому: "Hwgui-developers" <hwg...@li...>
> Дата: 19 жовтня 2012, 08:46:12
> Тема: [Hwgui-developers] * $Id: Changelog 1916 2012-10-18 16:28:18Zlfbasso $
>
>
>
>
>> Hi!
>>
>> Builded with Harbour without errors! Thanks!
>>
>>
> ------------------------------------------------------------------------------
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> _______________________________________________
> Hwgui-developers mailing list
> Hwg...@li...
> https://lists.sourceforge.net/lists/listinfo/hwgui-developers
>
>
> ------------------------------------------------------------------------------
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_sfd2d_oct
> _______________________________________________
> Hwgui-developers mailing list
> Hwg...@li...
> https://lists.sourceforge.net/lists/listinfo/hwgui-developers
|