But this WOULD work: member("MyTextBox").text ="The answer is " & c
As would this: member("MyTextBox").text =string(c)
The last was mentioned already, but the middle example is taking a text string, concatenating a number on (so an implicit conversion to a string is made), the result is a string and is assigned back to the text contents property of that castmember.
and thus ""&c yields the same result as string(c)
somewhere I read that the first (implicit conversion) is faster than the latter (string() function) ?!
--
||| a�ex -- [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] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
