-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.ParseDate
Andrew Lambert edited this page Sep 15, 2015
·
16 revisions
#libcURL.ParseDate
##Method Signature
Protected Function ParseDate(RawDate As String, ByRef Parsed As Date) As Boolean
##Parameters
Name | Type | Comment |
---|---|---|
RawDate | String | The date string to parse |
Parsed | Date |
Passed by reference, the Date object to parse the RawDate into |
##Return value
Returns True
if the date was parsed, otherwise returns False.
##Remarks
Parses the passed date string into the referenced Date object. If parsing was successful, returns True and instantiates the passed date reference; else, returns false. Valid for dates between 1 Jan 1970 00:00:00 GMT
and 19 Jan 2038 03:14:07 GMT
.
##See also
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.