From: Alexander S.K. <al...@be...> - 2016-08-08 13:33:02
|
Alain Aupeix пишет: > > How to update the display of a @x,x say from a function ? > In your sample you create the new label control every time when you try to update it, calling DepDisp(). You need to create the label ( @ x,y say oLabel CAPTION "SomeText" ... ) one time and then, when you need to update it, just use: oLabel:SetText( "NewText" ) Regards, Alexander. |