Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
"<PickupTime>" & NewDate & "T" & PickupHour & ":" & PickupMinute & ":00+00:00</PickupTime>"
<PickupTime>" & NewDate & "T" & PickupHour & ":" & PickupMinute & ":00[i]+00:00[/i]</PickupTime>
OldDate = "25/12/2015"
PickupHour = "15"
PickupMinute = "30"
AryTmp = Split(OldDate,"/")
NewDate = AryTmp(2) & "-" & AryTmp(1) & "-" & AryTmp(0)
stringXML = "<PickupTime>" & NewDate & "T" & PickupHour & ":" & PickupMinute & ":00+[b]00:00[/b]</PickupTime>"
If the date is GMT I will need to place +00:00 at the end of the value, if the date is BST I will need to place +01:00 at the end of the value.