I'm trying to get my script to understand the difference between am and pm... here is the script:
function time()
if time() < 9 then 'how do i tell the code to be 9am or pm?
msgbox ("the time is less than 9")
else
msgbox ("the time is more than 9")
end if
end function
function time()
if time() < 9 then 'how do i tell the code to be 9am or pm?
msgbox ("the time is less than 9")
else
msgbox ("the time is more than 9")
end if
end function
Comment