Re: [U2] LaunchAppAndWait Failed

2006-09-12 Thread Adrian Merrall
An interesting project would be to create a VMware instance of linux with U2 PE installed and a demo account with some demo progs. That way it is a case of grabbing the free vmware player from VMware, download the vmware image and people have an U2 server for trialling on any OS the Vmware player

Re: [U2] LaunchAppAndWait Failed

2006-09-12 Thread Dave S
I am running XP PROFESSIONAL and received the same exact error message. What gives ? dnielsen <[EMAIL PROTECTED]> wrote: Has anyone gotten Unidata 7.1 Personal Edition to Work on XP? dnielsen wrote: > > I had been using unidata 6.1 pe but it expired 08/31/2006 so I downloaded > the newe

Re: [U2] LaunchAppAndWait Failed

2006-09-12 Thread dnielsen
Has anyone gotten Unidata 7.1 Personal Edition to Work on XP? dnielsen wrote: > > I had been using unidata 6.1 pe but it expired 08/31/2006 so I downloaded > the newest verion of unidate 7.1.5 pe file v715-3222-pe.zip. I have tried > to install on 3 pc's running xp pro and xp home and all I get

RE: [U2] Time/Date as a single number

2006-09-12 Thread [EMAIL PROTECTED]
Mike wrote: > INT(((DATE() - 1) * 86500) + TIME()) Bloody New Zealanders! - trying to sneak an extra minute and 40 seconds into our working day - eh bro? Cheers, Ken --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] IDC White Paper on U2

2006-09-12 Thread David Jordan
Now we have a document that has U2 recognised by industry analysts. Something that can be given to the CEO, CFO, CIO justifying that U2 is the right choice. Make sure to read the IDC white paper, "Because Not All Data is Flat: IBM's U2 Extended Relational DBMSs". The IDC white paper compares the

RE: [U2] Time/Date as a single number

2006-09-12 Thread Allen E. Elwood
And 30 years from now it won't matter :-) Reminds me of y2k...hehNot My Problem they used to saysnicker -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of David A. Green Sent: Tuesday, September 12, 2006 16:18 To: u2-users@listserver.u2ug.org Subj

RE: [U2] Time/Date as a single number

2006-09-12 Thread David A. Green
How about MY.IDATE = DATE()-14000 "4\0R":INT(TIME()) "5\0R" This will give you 9 digits for over 30 years. THE.DATE = OCONV(MY.IDATE[1, 4], "D") THE.TIME = OCONV(MY.IDATE[5, 5], "MTHS") Thanks, David A. Green DAG Consulting -Original Message- From: [EMAIL PROT

RE: [U2] Time/Date as a single number

2006-09-12 Thread Brad Moll
If you want a smaller number and you don't have to really worry about historical dates, you could shift the date and use 1/1/2000 as day 1 by subtracting 11688 from the date before you do the multiplication. Brad Moll JK Consulting Services, Inc. Phone: (763)754-5354 Fax: (763)463-1750 -Ori

RE: [U2] Time/Date as a single number

2006-09-12 Thread Bruce Nichol
Goo'day, George, At 17:31 12/09/06 -0400, you wrote: I'm limited to 10 characters, and to a barcode that will only use 0-9. Problem is one of the 10 characters will need to be a basic checksum, which drops me to 9 numbers. (this can't change it's the way the bar code reader/decoder is setup).

RE: [U2] Time/Date as a single number

2006-09-12 Thread Glen Batchelor
> -Original Message- > From: [EMAIL PROTECTED] [mailto:owner-u2- > [EMAIL PROTECTED] On Behalf Of George Gallen > Sent: Tuesday, September 12, 2006 5:32 PM > To: u2-users@listserver.u2ug.org > Subject: RE: [U2] Time/Date as a single number > > I'm limited to 10 characters, and to a barcode

RE: [U2] Time/Date as a single number

2006-09-12 Thread Glen Batchelor
> -Original Message- > From: [EMAIL PROTECTED] [mailto:owner-u2- > [EMAIL PROTECTED] On Behalf Of George Gallen > Sent: Tuesday, September 12, 2006 3:16 PM > To: u2-users@listserver.u2ug.org > Subject: [U2] Time/Date as a single number > > OK. what is the ?best? way to store the time/date

[U2] Rm: ODBC or OLEDB

2006-09-12 Thread Luis Castro
Hi everybody, Somebody know which of those drivers are more efficient to work with Unidata ODBC or OLEDB. Best Regards, Atentamente, Luis Castro Vigo DBA - IT Corporativo Yanbal International 513-4000 Anexo 4136 La informacisn contenida en este correo electrsnico es confidencial y esta dir

Re: [U2] Time/Date as a single number

2006-09-12 Thread Steve Johnson
George, Do you need to be accurate to one second? If you can live with 10-second precision you can save one digit. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Time/Date as a single number {Unclassified}

2006-09-12 Thread HENDERSON MIKE, MR
George INT(((DATE() - 1) * 86500) + TIME()) will stay as ten digits until 07 JUL 2284, which might well be long enough for your purposes 07 JUL 2284 is a ten-digit date+time:- LIST file SAMPLE 1 EVAL"((DATE()+101470) * 86500) + TIME()" EVAL"OCONV(DATE()+101470,"DE")" ID955099.016

Re: [U2] Time/Date as a single number

2006-09-12 Thread [EMAIL PROTECTED]
> OK. what is the ?best? way to store the time/date (to the > second) as a single number >similar to unix's epoch, although I'm not looking to > convert it to unix format. > > My method is take date()*86400+time() > idate=int(combo/86400), itime=combo-(idate*86400) > > Is there anyway to do t

RE: [U2] Time/Date as a single number

2006-09-12 Thread George Gallen
I'm limited to 10 characters, and to a barcode that will only use 0-9. Problem is one of the 10 characters will need to be a basic checksum, which drops me to 9 numbers. (this can't change it's the way the bar code reader/decoder is setup). I figured 86400, from 60 sec * 60 min * 24 hours I could

RE: [U2] Time/Date as a single number

2006-09-12 Thread Bob Woodward
Can't you take the max value length and use that to format your calculated time, zero filling, then take the left most 10 characters and multiply that by 1? Like Kevin said, it really depends on what you're ultimately looking for. BobW -Original Message- From: [EMAIL PROTECTED] [mailto

Re: [U2] Time/Date as a single number

2006-09-12 Thread Steve Johnson
In my application, I add a constant (134408) to the date so that it is always > 0. Then I right-justify and zero-fill to a constant length both date (plus constant) and time and delimit them with a literal ":". This gives me a non-numeric string with a constant length by which I can sort if need

RE: [U2] Time/Date as a single number

2006-09-12 Thread José Luis Gutiérrez de la Peza
You can concatenate both numbers : Datetimefield = date() 'MR%5':time() 'MR%5' And then Idate = Datetimefield[1,5] And Itime = Datetiefield[6,5] I hope it works. Regards Josi Luis Gutierrez de la Peza ABDP -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nomb

RE: [U2] Time/Date as a single number

2006-09-12 Thread Barry Brevik
>My method is take date()*86400+time() If this is UV, I believe that SYSTEM(99) returns seconds since 01-01-1970. Right now on my system, and for a long time to come, it is returning a 10 digit number. Barry Brevik --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please

RE: [U2] Time/Date as a single number

2006-09-12 Thread Kevin King
>My method is take date()*86400+time() Is the goal to track a chronology via a single field? If so, I'd say your calulation is close. Wouldn't it be: ((DATE() - 1) * 86500) + TIME() (...as the number of days elapsed is today - 1, not today.) Regardless, you're right that the date could get hum

[U2] Time/Date as a single number

2006-09-12 Thread George Gallen
OK. what is the ?best? way to store the time/date (to the second) as a single number similar to unix's epoch, although I'm not looking to convert it to unix format. My method is take date()*86400+time() idate=int(combo/86400), itime=combo-(idate*86400) Is there anyway to do this giving less th

[U2] [UV] XML and XMAPCreate

2006-09-12 Thread phil walker
Hi, Not sure how many people are using the XML functionality in UniVerse, specifically the XMAPCreate function, but I have a question regarding the functionality or lack there of this function. I have a program which uses the XMAPCreate,XMAPAppendRec and XMAPToXMLDoc functions to create an XML doc

[U2] Haydon Bishop is out of the office.

2006-09-12 Thread haydon . bishop
I will be out of the office starting 12/09/2006 and will not return until 13/09/2006. I will respond to your message when I return. --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] uo.net question

2006-09-12 Thread Symeon Breen
Thanks Brian - I agree with what you are saying, all the logic i do on the ASP side is mainly display logic, all my real logic is in databasic subroutines. However for this problem it is just a select performed once for lookup purposes. the UniXML object looks like what i really want to do (esp as