Hi,
I have some VBA code to post a new event to the Meetup.com website using their API. I can post a draft event if I don't include the time variable when I post the data but it fails when I do.
The time is supposed to be the event start time based on milliseconds since standard epoch of 1/1/1970.
Would you be able to tell me if the below code is producing the time in epoch time? I can post the rest of the code if required.
EventDate = "01/12/2016"
time = DateDiff("S", "1/1/1970", EventDate)
Thank you,
Dave
I have some VBA code to post a new event to the Meetup.com website using their API. I can post a draft event if I don't include the time variable when I post the data but it fails when I do.
The time is supposed to be the event start time based on milliseconds since standard epoch of 1/1/1970.
Would you be able to tell me if the below code is producing the time in epoch time? I can post the rest of the code if required.
EventDate = "01/12/2016"
time = DateDiff("S", "1/1/1970", EventDate)
Thank you,
Dave