Sign In | Register Now About Bytes | Help | Site Map
Connecting Tech Pros Worldwide

Date Time Difference...

Question posted by: Steve (Guest) on December 28th, 2007 12:55 AM
Hello all,

I was wondering if someone could help me here. Since I'm running and
iMac, I don't have Visual Basic (6) installed. I want a small function
returns the number of seconds between two dates.

Can anyone help me with this? I would appreciate it.

Thanks,

Steve

Auric__'s Avatar
Auric__
Guest
n/a Posts
December 28th, 2007
02:35 PM
#2

Re: Date Time Difference...
On Fri, 28 Dec 2007 01:54:02 GMT, Steve wrote:
Quote:
I was wondering if someone could help me here. Since I'm running
and iMac, I don't have Visual Basic (6) installed. I want a small
function returns the number of seconds between two dates.
>
Can anyone help me with this? I would appreciate it.


Dim result As Long, day1 As Date, day2 As Date
day1 = Now
day2 = Now - 1
result = DateDiff("s", day1, day2)

' If you always want a positive number, then:
result = Abs(DateDiff("s", day1, day2))

--
Talking to you is like talking to an omelet at times.

--
Posted via a free Usenet account from http://www.teranews.com


myford100@yahoo.com's Avatar
myford100@yahoo.com
Guest
n/a Posts
January 1st, 2008
10:55 AM
#3

Re: Date Time Difference...
On Thu, 27 Dec 2007 20:54:02 -0500, Steve <stevetheimacuser@aol.com>
wrote:
Quote:
>Hello all,
>
>I was wondering if someone could help me here. Since I'm running and
>iMac, I don't have Visual Basic (6) installed. I want a small function
>returns the number of seconds between two dates.
>
>Can anyone help me with this? I would appreciate it.
>
>Thanks,
>
>Steve


Are you wanting the VB function or just the number of seconds? If the
latter, set up a simple spreadsheet and you'll even be able to format
the result the way you want.

Auric__'s Avatar
Auric__
Guest
n/a Posts
January 2nd, 2008
03:05 PM
#4

Re: Date Time Difference...
On Tue, 01 Jan 2008 11:49:22 GMT, wrote:
Quote:
On Thu, 27 Dec 2007 20:54:02 -0500, Steve
<stevetheimacuser@aol.comwrote:
>
Quote:
>>I was wondering if someone could help me here. Since I'm running
>>and iMac, I don't have Visual Basic (6) installed. I want a small
>>function returns the number of seconds between two dates.
>>
>>Can anyone help me with this? I would appreciate it.

>
Are you wanting the VB function or just the number of seconds? If
the latter, set up a simple spreadsheet and you'll even be able to
format the result the way you want.


Since this is a VB group, and not a spreadsheet/excel/office/whatever
group, I think it's safe to assume that the OP wanted to do this
programmatically.

--
Stupid asshole.

--
Posted via a free Usenet account from http://www.teranews.com


 
Not the answer you were looking for? Post your question . . .
189,815 Experts ready to help you find a solution.
Sign up for a free account, or Login (if you're already a member).

Latest Articles: Read & Comment
  • Didn't find the answer you were looking for?
    Post Your Question
  • Top Community Contributors