Re: put... before fonction HELP!!

2001-07-25 Thread Irv Kalb
From your post, it's unclear what you are checking, and what you assigning, but I'll give you a general idea using a Lingo list (untested): on BuildString theEndingWord, theWordListIn stringOut = "" repeat with thisWord in theWordListIn if thisWord = "yes" then stringO

Re: put... before fonction HELP!!

2001-07-25 Thread Dominic Villiard
ok forget this i've found out all by myself juste after i sent the email :) thanx! - Original Message - From: Dominic Villiard <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 25, 2001 1:56 PM Subject: put... before fonction HELP!! > how can

Re: put... before fonction HELP!!

2001-07-25 Thread Tab Julius
Instead of things like toto1 and toto2 you should try using lists, but that aside, you want to concatenate using the ampersand &, so make an empty string, then append on the parts you want, and at the very end put out the variable. outText ="" if (whatever) then outText =outText & "1" end

put... before fonction HELP!!

2001-07-25 Thread Dominic Villiard
how can i put the expression of 6 different variable before aand other expression for example : global a, b, c, d, e word = hello if toto = "yes" then a = 1 else a = 0 if toto2 = "yes" then b = 1 else b = 2 ... and so on... now i want to put all the global in a string before the variab