RE: [U2] User discrepancy

2007-03-17 Thread Brian Leach
JayJay These were not phantoms. They were subroutines called from UniObjects sessions, already consuming a regular licence. That was the bug. Regards Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Jenkins Sent: 16 March 2007 20:54

RE: [U2] User discrepancy

2007-03-17 Thread Brian Leach
JayJay I'll have to check back with that client for the specific version. It was W2003, one of the earlier 10.2 releases. I'll email you off-list. Thanks Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Jenkins Sent: 16 March 2007

[U2] SELECT.LIST, DCOUNT and @VM

2007-03-17 Thread Sanjeebkumar Sarangi
Hi, Can someone explain me the given block of code below please? SELECT.LIST = ' ' SELECT.LIST1 = 'NAME, TELEPHONE, ADDRESS' SELECT.LIST2 = 'NAME, TELEPHONE, CITY' SELECT.LIST3 = 'NAME, TELEPHONE, OFFICE' CONVERT ',' TO @VM IN SELECT.LIST SELECT.CNT = DCOUNT( SELECT.LIST1, @VM ) Thanks

Re: [U2] SELECT.LIST, DCOUNT and @VM

2007-03-17 Thread Colin Jennings
As long as you're only after a 'what' and not a 'why' I can. The variable SELECT.LIST will have three attributes, all multi-valued, as follows: 1 NAME]TELEPHONE]ADDRESS 2 NAME]TELEPHONE]CITY 3 NAME]TELEPHONE]OFFICE The variable SELECT.CNT will equal 3, the number of multi-values in the

[U2] Lost Contacts - Keith Rainey, Geoff Hope

2007-03-17 Thread Ray Jones
I've lost touch with Keith over the years, when he left my employers (PHS) and Uv, to move into the Unidata world. He contracted with Smiths Industries (UK), then Sony (Amsterdam), then blank! Similar story with Geoff. Last whereabouts of both were near M4 corridor between Swindon London. Not

RE: [U2] RE: [uv] 10.2

2007-03-17 Thread Mike Dallaire
David, We are using the Pick version, I can't answer as to the Ideal version. Mike Mike Dallaire Mortgage Builder Software Inc. (248) 304-0600 ext. 103 [EMAIL PROTECTED] www.mortgagebuilder.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David

RE: [U2] Upper Case Only

2007-03-17 Thread David Wolverton
I wonder if IBM ever got the request? Anyone know if an eCase exists? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stewart Leicester Sent: Friday, March 16, 2007 6:28 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Upper Case Only

Re: [U2] Upper Case Only

2007-03-17 Thread Charles Barouch
David, Ask Better Better ([EMAIL PROTECTED]). They can follow up if there isn't an eCase. - Chuck David Wolverton wrote: I wonder if IBM ever got the request? Anyone know if an eCase exists? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [U2] SELECT.LIST, DCOUNT and @VM

2007-03-17 Thread Tony Gravagno
Colin Jennings wrote: Don't know why without looking at the rest of the code, but some people prefer to build a comma-separated list and then change the commas to system delimiters rather than delimit with @VM in the first place. Not wrong, but perhaps a bit unnecessary. Does make the code

RE: [U2] SELECT.LIST, DCOUNT and @VM

2007-03-17 Thread Norman Morgan
I use this technique so often, I wrote a called subroutine to turn a comma-separated list into an ordered dynamic array. It changes commas to @AM, trims each entry and sorts the list before returning it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of