[Gambas-devel] new pre-alpha

Benoit Minisini gambas at ...1...
Sun Jan 9 17:39:57 CET 2005


On Friday 07 January 2005 18:19, José L. Redrejo Rodríguez wrote:
> Hi Benoit.
> There is a little bug with the new ide v 1.9.0
> In class cClassInfo, subrutine InitControl
>
>     ' Name could be "xxx=y"
>     IF Component  THEN
>       IF NOT CComponent.Classes[Component &/ Name].Symbols[sProp] THEN
>         PRINT Component;": ";Name;".";sProp;" declared but not
> implemented"
>         CONTINUE
>       ENDIF
>     ENDIF
>
> makes fails components as net that have visual pseudocontrols, but are
> not graphic controls. For instance there you can find
> sProp="FlowControl=1,PortName,Parity=0,Speed=19200,DataBits=8,StopBits=1"
>
> I see the comment you wrote 'Name could be "xxx=y"' ,but the problem is
> still there.
>
> Just changing your code to:
>     IF Component  THEN
>       IF NOT CComponent.Classes[Component
> &/Name].Symbols[Split(sProp,"=")[0]] THEN
>         PRINT Component;": ";Name;".";sProp;" declared but not
> implemented"
>         CONTINUE
>       ENDIF
>     ENDIF
>
> solves the problem.
>
> Regards.
>

Thanks! I fix it...

-- 
Benoit Minisini
mailto:gambas at ...1...




More information about the Devel mailing list