Code: Select all
...
convert tdate from system date to long english date
...

But you still did not tell us what country (with that system date) you are living in.
Code: Select all
...
convert tdate from system date to long english date
...
Code: Select all
...
put fld "field" into tSecs1
convert tSecs1 to seconds
put tSecs1 into fld "field"
## Same for fld "field2"
...
Code: Select all
...
put "05/11/2025" into tDate
convert tDate to seconds
put tDate
## Gives me the correct value: 1746914400
...
Code: Select all
...
put smth & "/" & sday & "/" & syr into tDate
...