How to show the date and time in screen maker?

:frowning:Hello,

How to show the date and time in screen maker?

I defined the rapid as below,

VAR string SshowDate;
VAR string SshowTime;

proc aa()

SshowDate:=Cdate();
SshowTime:=Ctime();

endproc

Then I creat a TPSlabel ,But the stirng date don’t be binded.

How can I do??:frowning:

BR

Hello,

Define the rapid as PERS or CONST.
VAR rapid data cannot be bound in ScreenMaker.

Thanks

Hello,

Good,It’s worked ok.

Thanks