[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: sString = Date(hBlah) returns 11pm
[Thread Prev] | [Thread Next]
- Subject: Re: sString = Date(hBlah) returns 11pm
- From: Gianluigi <gradobag@xxxxxxxxxxx>
- Date: Sat, 13 Apr 2024 08:04:44 +0200
- To: user@xxxxxxxxxxxxxxxxxxxxxx
Il 13/04/24 03:13, Jussi Lahtinen ha scritto:
If you know the format of the date sString gets and it doesn't change (ie you're not changing locales) then you can also do: sString = Replace(str(Date(Now))," 00:00:00","") After that: Print sString will only print the date. This does not work if the application is running on a laptop and you travel or you simply live in a country that uses daylight "saving" time. IE, no need to change locales to mess it up. Jussi
This routine: Public Sub Main() Print CStr(Date(Now)) '<--- no local Print Str(Date(Now)) Print Date(Now) Print Format(Now, gb.MediumDate) End here outputs this result to console: 04/12/2024 22:00:00 13/04/2024 00:00:00 13/04/2024 00:00:00 13/04/2024 Regards Gianluigi
Re: sString = Date(hBlah) returns 11pm | Bruce Steers <bsteers4@xxxxxxxxx> |
sString = Date(hBlah) returns 11pm | Bruce Steers <bsteers4@xxxxxxxxx> |
Re: sString = Date(hBlah) returns 11pm | Benoît Minisini <benoit.minisini@xxxxxxxxxxxxxxxx> |
Re: sString = Date(hBlah) returns 11pm | Bruce Steers <bsteers4@xxxxxxxxx> |
Re: sString = Date(hBlah) returns 11pm | Dimitris Anogiatis <dosida@xxxxxxxxx> |
Re: sString = Date(hBlah) returns 11pm | Jussi Lahtinen <jussi.lahtinen@xxxxxxxxx> |