On Thursday 05 March 2015 20:05:30 Alexandre Minoshi wrote:
> > Please try again with git master
> > f685d8169921988f755ea345893833ec76a30cd3.
> >
> > Martin
>
> Yes, it works now, thanks!
>
> Martin, last question today: how understand is somewidget.frame has
> sbvert and sbhorz properties?
>
> I try next code
> =========================================================
>    function HasProperty(Obj: TObject; PropName: String; PropKinds:
> TTypeKinds = []): boolean;
>    begin
>      try
>      Result := (GetPropInfo(Obj,PropName,PropKinds) <> nil);

Maybe
"
  Result := (obj <> nil) and (GetPropInfo(Obj,PropName,PropKinds) <> nil);
"

Martin

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to