RobotStudio event

How to show the date and time in screen maker?

Options
ConfusedHello,

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??Confused

BR


Comments

  • Abhishek PM
    Options
    Hello,
     

    Define the rapid as PERS or CONST.

    VAR rapid data cannot be bound in ScreenMaker.

     

    Thanks
  • Hello,

    Good,It's worked ok.

    Thanks