it seems like saving of clipboardall content doesn't work for objects fields, here is an example:
v := "" v := clipboardall o := object() o.v := clipboardall Msgbox % VarSetCapacity( v ) "`n" o.GetCapacity( "v" )the output soem thing like
176 0 ;always 0
and code like this
v := "" v := clipboardall o := object() o.v := v Msgbox % VarSetCapacity( v ) "`n" o.GetCapacity( "v" )gives an output
176 30 ;always 30




