Re: [U2] Epicor and Eclipse

2011-07-08 Thread David Jordan
Talk to Rocket. I have heard that there have been some discussion to resolve this problem David Jordan ___ U2-Users mailing list U2-Users@listserver.u2ug.org http://listserver.u2ug.org/mailman/listinfo/u2-users

Re: [U2] Epicor and Eclipse

2011-07-08 Thread Mecki Foerthmann
Tony, Microsoft isn't struggling and they license Sharepoint only for named users and still sell it! My employer doesn't mind to pay a rather moderate license fee for 160 seats every year. But being charged tens of Thousands of Pounds for annual application support and every call still costs £

Re: [U2] Simple FMT question

2011-07-08 Thread Larry Hiscock
Try: X = FMT(X,'4"0"R') ... works here on UniData 6.1 Larry Hiscock Western Computer Services -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bob Woodward Sent: Friday, July 08, 2011 12:17 PM To: u2-users@listserver

Re: [U2] Simple FMT question

2011-07-08 Thread David A. Green
Bob, Format will Truncate or add a Text Mark at any overflow. David A. Green (480) 813-1725 DAG Consulting -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bob Woodward Sent: Friday, July 08, 2011 12:17 PM To: u2-us

Re: [U2] Simple FMT question

2011-07-08 Thread Colin Alfke
John's correct - you're likely in BASICTYPE 'P' which requires the format X = FMT(X,'R%4') - note that it will truncate the value if it's more than 4 characters. I usually just to a simple LEN check first: IF LEN(X) < 4 THEN X = FMT(X,'R%4') If the basictype issue has you confused then I would s

Re: [U2] Simple FMT question

2011-07-08 Thread David A. Green
Works for me on UniData 6.1 :SPOOL BP DAG.TEST -OT PROGRAM DAG.TEST * X = 1 X = FMT(X, "4\0R") PRINT X END :DAG.TEST 0001 : David

Re: [U2] Simple FMT question

2011-07-08 Thread Israel, John R.
On my box (UniData 7.2) in a native UniData account: X = 1 CRT X "R%4" Returns %4 But in a PICK flavor account, it returns 0001 This can also be controlled for an individual program with the $BASICTYPE compiler option, but there are other syntax issues to look out for, mainly the LO

Re: [U2] Simple FMT question

2011-07-08 Thread Charlie Noah
Hi Bob, Tryany of these: X = 1 FMT(X, 'MD%4') =0001 FMT(X, 'MR%4') =0001 FMT(X, 'R%4') =0001 X 'MD%4' =0001 X 'R%4'=0001 These all; work in Jbase, Universe flavor, YMMV. Regards, Charlie Noah On 07-08-2011 2:17 PM, Bob Woodward wrote: Hi Group, I don't know why this is kic

Re: [U2] Simple FMT question

2011-07-08 Thread Richard A. Wilson
try this syntax F17 = FMT(STL.AMT,'R(0)#13') Rich Bob Woodward wrote: Hi Group, I don't know why this is kicking my butt but I'm trying to do a simple X = FMT(X,"4\0R") statement, straight out of the HELP UNIBASIC listing and I can't seem to get it to work. The problem is the fill char

Re: [U2] Simple FMT question

2011-07-08 Thread Israel, John R.
In PICK mode: X = X "R%4" In native mode: X = ("":X) "R#4" John Israel Senior Programmer/Analyst Dayton Superior Corporation 1125 Byers Road Miamisburg, OH  45342 -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf

[U2] Simple FMT question

2011-07-08 Thread Bob Woodward
Hi Group, I don't know why this is kicking my butt but I'm trying to do a simple X = FMT(X,"4\0R") statement, straight out of the HELP UNIBASIC listing and I can't seem to get it to work. The problem is the fill character, in this case the number zero, but what I get back is just the letter "R

Re: [U2] Question about updating customer's systems...

2011-07-08 Thread Tom Whitmore
Hi, Thanks you to everyone that responded. We had identified the items people suggested, and some addition items. Thanks again! Tom From: Tom Whitmore Sent: Thursday, June 16, 2011 11:11 AM To: U2-Users@listserver.u2ug.org Subject: Question about updating customer's systems... Hi, We develop so

Re: [U2] Adding capabilities in the sort term

2011-07-08 Thread Oaks, Harold
Thanks to all who responded. This certainly gives me a start! Harold -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tom Whitmore Sent: Thursday, July 07, 2011 2:02 PM To: U2 Users List Subject: Re: [U2] Adding capab

Re: [U2] Epicor and Eclipse

2011-07-08 Thread Tony Gravagno
> From: Mecki Foerthmann > As I see it - I either buy a license for your > application and separate ones for the database (U2) > and development tools (SB+) or I won't buy from you at > all, it's that simple! No wonder MV is struggling! Under the strict terms of U2 licensing, as defined by IBM

Re: [U2] Epicor and Eclipse

2011-07-08 Thread Colin Alfke
Probably not. I haven't looked at our contracts and I've only had a quick scan of ours with Rocket so I'm not sure of the definition of application. If you wrote a report or new interface maybe OK. If you wrote something to keep track of your CD collection - likely not. I'm not sure if it's just u

Re: [U2] Epicor and Eclipse

2011-07-08 Thread Mecki Foerthmann
Colin So I wouldn't be allowed to write a single line of code using U2 or SB+ if I were one of your customers? Because that line of code wouldn't be part of your application and therefore would invalidate my U2 license, right? In that case I would never buy any application software from you. As