|
From: Alexander S.K. <al...@be...> - 2014-12-16 08:34:22
|
Itamar M. Lins Jr. Lins writes:
> Error BASE/1004 No exported method: VARGET
> ...
> @ 10,10 get oGet var cGet size 100,30 picture "!!!!!" Valid
> {||hwg_msginfo(oGet:varGet()),.T.}
>
Use the :Setget() instead, it is present in both 2.17 and 2.18 or you
may insert:
#xtranslate :varput([<n,...>]) => :Setget(<n>)
#xtranslate :varget() => :Setget()
:varget and :varput was introduced in 2.17 as:
METHOD VarPut( value ) INLINE ::SetGet( value )
METHOD VarGet() INLINE ::SetGet()
and I consider them as redundant.
Regards, Alexander.
|