Re: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread BNeylon
SYSTEM(12) Bruce Bruce M Neylon Health Care Management Group Phone: (301) 608-8633 Kevin King [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 01/30/2008 10:15 AM Please respond to u2-users@listserver.u2ug.org To u2-users@listserver.u2ug.org cc Subject [U2] Unidata Time in Milliseconds?

Re: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread Scott Ballinger
Not sure about UD, but on UV I think this is now the default: time() returns .NNN to three decimal places. /Scott Ballinger Pareto Corporation Edmonds WA USA 206 713 6006 On Jan 30, 2008 7:15 AM, Kevin King [EMAIL PROTECTED] wrote: I got an interesting request today to store time from

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread [EMAIL PROTECTED]
Kevin - SYSTEM(12) returns local time in milliseconds. Regards, Robert Original Message: - From: Kevin King [EMAIL PROTECTED] Date: Wed, 30 Jan 2008 08:15:41 -0700 To: u2-users@listserver.u2ug.org Subject: [U2] Unidata Time in Milliseconds? I got an interesting request today

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread Norman Morgan
I think your want SYSTEM(12) in UniBasic which is supposed to return system time in milliseconds === Norman Morgan [EMAIL PROTECTED] http://www.brake.com === A journey of 1000 miles

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread Adam Eccleshall
Hi, SYSTEM(12) returns the current local time in milliseconds. Adam -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin King Sent: 30 January 2008 15:16 To: u2-users@listserver.u2ug.org Subject: [U2] Unidata Time in Milliseconds? I got an

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread Rod Hills
In UniVerse you could use the SYSTEM(12) function. By setting the option (in a $OPTIONS statement) to TIME.MILLISECOND, this will return the local time in milliseconds. Rod Hills -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin King Sent:

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread David Wolverton
SYSTEM(9) is milliseconds since the start of the program -- never used it - so don't know what 'start of program' means! DW -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin King Sent: Wednesday, January 30, 2008 9:16 AM To:

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread David Wolverton
And System(12) is current time in Milliseconds... All sorts o' stuff in SYSTEM() dw -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin King Sent: Wednesday, January 30, 2008 9:16 AM To: u2-users@listserver.u2ug.org Subject: [U2] Unidata Time

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread Rotella, Leon M.
@listserver.u2ug.org Subject: RE: [U2] Unidata Time in Milliseconds? Hi, SYSTEM(12) returns the current local time in milliseconds. Adam -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kevin King Sent: 30 January 2008 15:16 To: u2-users

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread Norman Morgan
SYSTEM(9) is milliseconds since the start of the program -- never used it - so don't know what 'start of program' means! I believe it is elapsed milliseconds since midnight. I constructed a test and displayed SYSTEM(12) compared with TIME() * 1000. They differed only in the least significant

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread Barry Rogen
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Norman Morgan Sent: Wednesday, January 30, 2008 11:20 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Unidata Time in Milliseconds? I think your want SYSTEM(12) in UniBasic which is supposed

RE: [U2] Unidata Time in Milliseconds?

2008-01-30 Thread Timothy Snyder
SYSTEM(9) is milliseconds since the start of the program Careful - that's accumulated CPU time, not wall-clock time. It can be very helpful in identifying which parts of a program are processor hogs. But it's not useful in telling the time. As reported by others, SYSTEM(12) is the right