Page Index Toggle Pages: 1 [2]  Send Topic Send Topic Print Print
Hot Topic (More than 10 Replies) Programming help (Read 2420 times)
Bob_Hansen
Senior Member
Members
*****
Offline


WOW, They have the Internet
on computers now!

Posts: 1861
Location: Salem, NH
Joined: Nov 24th, 2002
Re: Programming help
Reply #15 - Jul 1st, 2004 at 11:39pm
Print Post Print Post  
Will see if I can locate an example that exhibits this problem, but probably will not get to it until the weekend (will try to do sooner).......

(No time yet to respond to the earlier solutions that were offered for one of my problems..... arrgh).

Sorry, I can't respond as quickly as you folks do, don't know how you do it, keep up the good work...... Grin
  



Bob Hansen
Sesame Database Manager Professional
Sensible Solutions Inc.
Salem, NH
603-898-8223
Skype ID = sensiblesolutions
Back to top
IP Logged
 
Bob_Hansen
Senior Member
Members
*****
Offline


WOW, They have the Internet
on computers now!

Posts: 1861
Location: Salem, NH
Joined: Nov 24th, 2002
Re: Programming help
Reply #16 - Jul 6th, 2004 at 12:34am
Print Post Print Post  
The following are the results of running
if(one = 22) then a = b; c = d; e = f in Q&A, per your request.
=================================
IF one=19 then
a=""
c=d
e=f
==================
IF one=22 then
a=b
c=d
e=f
==================
Conclusion:
Q&A:
if(one = 22) then a = b; c = d; e = f

is the same as

Sesame: 
if(one = 22) then {a = b}
c = d
e = f

==================
Additional info:
Q&A database translated into Sesame with no errors, and results calculated same as in Q&A.  Program came in as if(one = 22) then a = b; c = d; e = f

Sesame calculated like:
if(one = 22) then {a = b}
c = d
e = f


It did not calculate like:
if(one = 22) then { a = b; c = d; e = f }
========================
Still need to find you a sample that gives no compile error, but does not work right........stay tuned.....

  



Bob Hansen
Sesame Database Manager Professional
Sensible Solutions Inc.
Salem, NH
603-898-8223
Skype ID = sensiblesolutions
Back to top
IP Logged
 
Page Index Toggle Pages: 1 [2] 
Send Topic Send Topic Print Print