Member 13937256 Ответов: 1

Формат даты и времени выпуска (24 часа)


Hello, I need help with this, I am using the VBScript programming platform.
I am using the FormatDateTime (Now ()) declaration which gives me the departure date and time (Format: AM-PM).
What I want is for it to continue launching Date and Time (Format: 24 hours)
Regards,


Что я уже пробовал:

FormatDateTime (Now ()) 

1 Ответов

Рейтинг:
1

phil.o

Функция VBScript FormatDateTime[^]

Для отображения даты и времени в 24-часовом формате используйте

d = Now()
FormatDateTime(d, 2) & " " & FormatDateTime(d, 4)
Результат:
03/13/2020 22:53