(09-07-2024, 03:54 AM)eoredson Wrote: Hi,
Its nice that you can now assign values to Date$ and Time$ such as:
Code: (Select All)
x$ = Date$
Print "Current date "; x$
Date$ = "09-10-2024"
Print "New date "; Date$
Date$ = x$
Print "Original date "; Date$
t$ = Time$
Print "Current time "; t$
Time$ = "00:00:00"
Print "New time "; Time$
Time$ = t$
Print "Original time "; Time$
End
But they don't seem to do anything...
Erik.
Wouldn't Date if there was a Sub to change it, have to be changed like this:
Date "09/10/2024"
not Date$ = "09/10/2024"
b = b + ...