Hello
Is there a SCADA BASIC instruction (or something else) to force the timestamp of internal Variable ?
Thanks
As far as I know the only way is by using the Manager Toolkit
Nico
You can try to do it by a trick.Like:
SUB MAIN()
dim aa as single;
aa = @Register01;
@Register01 = 0;
@Register01 = aa;
END SUB
Mark
It's a good idea but not in my case (my customer does its ownn Time Stamping...)
Thanks


