Quixada,
> it seems to work, but i�m confused here. why i can only pass integer
> values? if i try to parse string, it returns void. why?
> thanks
Because then you have this:
on hyperlinkClicked me, data -- data = "test,hello"
the itemDelimiter = ","
tHandler = data.item[1]
tNum = data.item[2]
doStatement = tHandler&"("&tNum&")"
WAIT! At this point in your code doStatement = "data(hello)", that looks a lot like
hello is a variable doesn't it? If your param is a string then you'll need to do
something like this:
doStatement = tHandler&"(""E&tNum"E&")"
as after this doStatement = "data('hello')" and you're now properly passing a string
"hello" to the handler and not some missing variable named hello. Make sense? If not
then we'll give it another go. It's critical to look at the string you're "doing", you
must make sure that the string looks like Lingo you'd execute.
Cheers,
Tom
[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!]