Sorry, I didn't understand. What exactly is absent?
The ::Value() method is there, It should be used to get the value of radiogroup, it returns the ::nValue
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
There is :Value() method in HRadioGroup() for this purpose.
Regards, Alexander
There is no
\source\winapi\hradio.prg
CLASS HRadioGroup INHERIT HObject
CLASS VAR oGroupCurrent
DATA aButtons
DATA nValue INIT 1
DATA bSetGet
DATA oHGroup
METHOD New( vari, bSetGet )
METHOD NewRg( oWndParent, nId, nStyle, vari, bSetGet, nLeft, nTop, nWidth, nHeight, ;
cCaption, oFont, bInit, bSize, tcolor, bColor )
METHOD EndGroup( nSelected )
METHOD Value( nValue ) SETGET
METHOD Refresh() INLINE iif( ::bSetGet != Nil, ::Value := Eval(::bSetGet ), .T. )
ENDCLASS
Sorry, I didn't understand. What exactly is absent?
The ::Value() method is there, It should be used to get the value of radiogroup, it returns the ::nValue
Now I get it, I still have an old version of Hwgui that previously had GETVALUE().
But with your tip I understood and I will solve it here.