Re: [U2] Brilliant? or not?

2012-01-13 Thread Allen E. Elwood
violates the kiss principle

certainly a candidate for the rube goldberg programmer of the year, or as
they say in france "usine à gaz"

http://en.wikipedia.org/wiki/Rube_Goldberg_machine 

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Friday, January 13, 2012 9:42 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Brilliant? or not?


SMAX = (S1 > S2) * S1 + (S2 >= S1) * S2

?


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Brilliant? or not?

2012-01-13 Thread u2ug
You can get pretty close :  SMAX = IF S1 > S2  THEN S1 ELSE S2

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of David A.
Green
Sent: Friday, January 13, 2012 3:32 PM
To: 'U2 Users List'
Subject: Re: [U2] Brilliant? or not?

Are you trying to emulate C?

SMAX = (S1 > S2) ? S1 : S2;

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 Wjhonson
Sent: Friday, January 13, 2012 10:42 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Brilliant? or not?


SMAX = (S1 > S2) * S1 + (S2 >= S1) * S2

?


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Brilliant? or not?

2012-01-13 Thread David A. Green
Are you trying to emulate C?

SMAX = (S1 > S2) ? S1 : S2;

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 Wjhonson
Sent: Friday, January 13, 2012 10:42 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Brilliant? or not?


SMAX = (S1 > S2) * S1 + (S2 >= S1) * S2

?


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Brilliant? or not?

2012-01-13 Thread Bill Brutzman
>From the perspective of writing scenario-proof code...I live in a world of 
>case statements...

Begin case
  Case s1 > s2  ;  sMax = s1   
Case 1  ;  sMax = s2
Endcase

--Bill

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Mecki Foerthmann
Sent: Friday, January 13, 2012 12:52 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Brilliant? or not?

What's wrong with IF S1 > S2 THEN SMAX = S1 ELSE SMAX = S2?
Definitely more readable!

If it was hard to write then it should be hard to read, I guess.

On 13/01/2012 17:41, Wjhonson wrote:
> SMAX = (S1>  S2) * S1 + (S2>= S1) * S2
>
> ?
>
>
> ___
> U2-Users mailing list
> U2-Users@listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Brilliant? or not?

2012-01-13 Thread George Gallen
Along the same lines.

MSG = "SUCCESS"[1,*(X = 4)]

Instead of:

IF X=4 THEN MSG="SUCCESS" ELSE MSG=""

George

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Friday, January 13, 2012 12:42 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Brilliant? or not?


SMAX = (S1 > S2) * S1 + (S2 >= S1) * S2

?


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Brilliant? or not?

2012-01-13 Thread John Solie
Clever, but if it isn't commented, very difficult to maintain.  Either way it 
might cause me to go hunting for Mr. Clever with my Nerf Bat.


John Solie * Systems Analyst, Information Systems * www.phsyes.com
Professional Hospital Supply * 42500 Winchester Road, Temecula, CA 92590
Tel. 951-296-2600 ext. 1226  Fax 951-296-2625   jso...@phsyes.com

Leading the Market through Innovative Solutions

IMPORTANT: The sender intends that this electronic message is for exclusive use 
by the person to whom it is addressed.  This message may contain information 
that is confidential or privileged and exempt from disclosure under applicable 
law.  If the reader of this message is not an intended recipient, be aware that 
any disclosure, dissemination, distribution or copying of this communication, 
or the use of its contents, is prohibited without prior written consent from 
PHS.

Please consider the environment before printing this email.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Friday, January 13, 2012 9:42 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Brilliant? or not?


SMAX = (S1 > S2) * S1 + (S2 >= S1) * S2

?


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Brilliant? or not?

2012-01-13 Thread Bill Haskett
Darn...that's too simple!   In addition, for a geek, there are too many 
characters.  :-)


Bill


- Original Message -
*From:* mec...@gmx.net
*To:* u2-users@listserver.u2ug.org
*Date:* 1/13/2012 9:52 AM
*Subject:* Re: [U2] Brilliant? or not?

What's wrong with IF S1 > S2 THEN SMAX = S1 ELSE SMAX = S2?
Definitely more readable!

If it was hard to write then it should be hard to read, I guess.

On 13/01/2012 17:41, Wjhonson wrote:

SMAX = (S1>  S2) * S1 + (S2>= S1) * S2

?

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Brilliant? or not?

2012-01-13 Thread Mecki Foerthmann

What's wrong with IF S1 > S2 THEN SMAX = S1 ELSE SMAX = S2?
Definitely more readable!

If it was hard to write then it should be hard to read, I guess.

On 13/01/2012 17:41, Wjhonson wrote:

SMAX = (S1>  S2) * S1 + (S2>= S1) * S2

?


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Brilliant? or not?

2012-01-13 Thread Wjhonson

Ah one of those new fangled functions that have been around for 12 years.




-Original Message-
From: Rex Gozar 
To: U2 Users List 
Sent: Fri, Jan 13, 2012 9:44 am
Subject: Re: [U2] Brilliant? or not?


SMAX = MAXIMUM(S1:@FM:S2)
seems clearer...
__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Brilliant? or not?

2012-01-13 Thread Rex Gozar
SMAX = MAXIMUM(S1:@FM:S2)

seems clearer...
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] Brilliant? or not?

2012-01-13 Thread Wjhonson

SMAX = (S1 > S2) * S1 + (S2 >= S1) * S2

?


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] DesignBais Website

2012-01-13 Thread Rick Weiser
Bobby Worley  coburns.com> writes:

> 
> support  designbais.com 
> 
> Rick Weiser
> Vice President of Client Services
> DesignBais International
> 
> Toll Free:  +1 877-889-9777
> Local:  +1 856-424-2133
> Fax:+1 509-355-7539
> 
> http://www.youtube.com/user/designbais
> 
> -Original Message-
> From: u2-users-bounces  listserver.u2ug.org
> [mailto:u2-users-bounces  listserver.u2ug.org] On Behalf Of Oaks, Harold
> Sent: Thursday, January 12, 2012 1:39 PM
> To: U2 Users List
> Subject: [U2] DesignBais Website
> 
> I am interested in showing my boss DesignBais and would like to download
> the trial copy.  Unfortunately, when trying to open the website
> www.designbais.com I see nothing at all, except the message "Done, but
> with errors on the page" in a bottom bar.  I don't even have a phone# to
> call because the webpage is blank.  Can anyone help me out?  At least to
> inform DesignBais that their web page has a problem.
> 
> Thanks-
> Harold Oaks
> Clark County, WA, USA
> 
> This e-mail and related attachments and any response may be subject to
> public disclosure under state law.
> ___
> U2-Users mailing list
> U2-Users  listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
> ___
> U2-Users mailing list
> U2-Users  listserver.u2ug.org
> http://listserver.u2ug.org/mailman/listinfo/u2-users
> 
> 

Hi Harold,

If you have any questions please feel free to give me a call.  Also, if you want
help installing and setting up DesignBais with your environment let me know.

As Bobby says, we started recording the webinars and posting them on our YouTube
channel including a Sales Demo.  Below is the link:

http://www.youtube.com/user/designbais?blend=6&ob=video-mustangbase

If you would like a private demo for your managers, please contact me to setup a
time and date.

Thanks,

Rick Weiser
Vice President of Client Services
DesignBais International

Toll Free:  +1 877-889-9777
Local:+1 856-424-2133
Fax:  +1 509-355-7539


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] DesignBais Website

2012-01-13 Thread Bobby Worley
That is, if you want to see a video on how the new Designbais Website
www.designbais.com was built using DesignBais 6 

I should proof my emails better before hitting send.   I haven't finish
my first cup of coffee yet.. ugh



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bobby Worley
Sent: Friday, January 13, 2012 9:34 AM
To: U2 Users List
Subject: Re: [U2] DesignBais Website

And if you want to see a video on how the new DesignBais was built using
DesignBais 6, you can watch it here:

http://www.youtube.com/watch?v=Sw2gA04rRTg

Bob Worley
Coburn Supply Co


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno
Sent: Thursday, January 12, 2012 5:06 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] DesignBais Website

I was just there last night to check out the v6 enhancements.
The site is all run using DesignBais itself - very clean and
lightning fast even overseas.  If you're going to do a demo,
don't bother installing unless you want to demo the designer.
Just run the samples off the live site.

BTW, if you click that "Done, but with errors on the page"
message it should show the errors which DBI might want to see,
and which might tip you off as to why the page didn't display for
you.

T


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] DesignBais Website

2012-01-13 Thread Bobby Worley
And if you want to see a video on how the new DesignBais was built using
DesignBais 6, you can watch it here:

http://www.youtube.com/watch?v=Sw2gA04rRTg

Bob Worley
Coburn Supply Co


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno
Sent: Thursday, January 12, 2012 5:06 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] DesignBais Website

I was just there last night to check out the v6 enhancements.
The site is all run using DesignBais itself - very clean and
lightning fast even overseas.  If you're going to do a demo,
don't bother installing unless you want to demo the designer.
Just run the samples off the live site.

BTW, if you click that "Done, but with errors on the page"
message it should show the errors which DBI might want to see,
and which might tip you off as to why the page didn't display for
you.

T


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] DesignBais Website

2012-01-13 Thread Bobby Worley


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Tony Gravagno
Sent: Thursday, January 12, 2012 5:06 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] DesignBais Website

I was just there last night to check out the v6 enhancements.
The site is all run using DesignBais itself - very clean and
lightning fast even overseas.  If you're going to do a demo,
don't bother installing unless you want to demo the designer.
Just run the samples off the live site.

BTW, if you click that "Done, but with errors on the page"
message it should show the errors which DBI might want to see,
and which might tip you off as to why the page didn't display for
you.

T

> From:Oaks, Harold
> I am interested in showing my boss DesignBais and 
> would like to download the trial copy.  Unfortunately, 
> when trying to open the website www.designbais.com I 
> see nothing at all, except the message "Done, but with 
> errors on the page" in a bottom bar.  I don't even 
> have a phone# to call because the webpage is blank.  
> Can anyone help me out? At least to inform DesignBais 
> that their web page has a problem.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users