RE: get field value

2003-07-25 Thread director
thanks to everyone that helped me out with this problem. I used Kerry's script idea. thanks it worked big time. DS-NYC --- Kerry Thompson <[EMAIL PROTECTED]> wrote: > > im trying to get the values of > > three field's and put them on a certain part of a > > script. when the 3 field's values cha

Re: get field value

2003-07-23 Thread Anand Ravi
> > Ummm, Kerry, I think it's you that has them reversed: > > Oops. Right you are, Tom. Sorry, Anand. > No problem. Regards, Anand Ravi [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PR

RE: get field value

2003-07-23 Thread Kerry Thompson
> Ummm, Kerry, I think it's you that has them reversed: Oops. Right you are, Tom. Sorry, Anand. Cordially, Kerry Thompson [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problem

Re: get field value

2003-07-23 Thread Buzz Kettles
In seeing the other folks' answers, I'd guess now that you're trying to accumulate data from a form made of 3 fields In that case, you probably don't need to know whether something was a number or not, etc. -Buzz [To remove yourself from this list, or to change to digest mode, go to http://www

RE: get field value

2003-07-23 Thread Thomas Higgins
> > --no space between the contents i.e. output will be > > "txt1txt2txt3" lstrConcatString = member("name1").text & > > member("name2").text & member("name3").text > > > > --space between contnents i.e. output will be "txt1 txt2 > > txt3" lstrConcatString = member("name1").text && > > member(

Re: get field value

2003-07-23 Thread Buzz Kettles
At 9:20 AM -0700 7/23/03, you wrote: hi everyone, this is the problem. im trying to get the values of three field's and put them on a certain part of a script. when the 3 field's values change so should the ones on the script. any ideas on how to go about this. any help is always appreciated. than

RE: get field value

2003-07-23 Thread Kerry Thompson
> --no space between the contents i.e. output will be > "txt1txt2txt3" lstrConcatString = member("name1").text & > member("name2").text & member("name3").text > > --space between contnents i.e. output will be "txt1 txt2 > txt3" lstrConcatString = member("name1").text && > member("name2").text

Re: get field value

2003-07-23 Thread Anand Ravi
be "txt1 txt2 txt3" lstrConcatString = member("name1").text && member("name2").text && member("name3").text Regards, Anand Ravi - Original Message - From: "director" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]&

RE: get field value

2003-07-23 Thread Kerry Thompson
> im trying to get the values of > three field's and put them on a certain part of a > script. when the 3 field's values change so > should the ones on the script. I'm not sure what you mean by putting the value on a certain part of a script. Do you want to change a variable? If so, try this:

get field value

2003-07-23 Thread director
hi everyone, this is the problem. im trying to get the values of three field's and put them on a certain part of a script. when the 3 field's values change so should the ones on the script. any ideas on how to go about this. any help is always appreciated. thanks <--DS--> ___