|
From: Alexander S.K. <al...@be...> - 2015-05-20 12:36:17
|
> Ok for the explanation, but I haven't found the command to create a label.
> I use online Hwgui Documentation, but it's particulary out of date ...
>
@ ... SAY ... - this command creates label, ( or static control in
terms of winapi ).
You create a label:
@ 10,10 SAY oSay1 CAPTION "" SIZE 100,24
and then set values there when it is needed:
oSay1:SetText( "New value" )
Regards, Alexander.
|