>  on visitedTimes nr, fieldNm
>    if nr<1 then
>      put "You have not visited here yet" into field fieldNm
>    else if nr =1 then
>      put "You have visited here once" into field fieldNm
>    else if nr>=1 then
>      put "You have visited here"&&a&&"times" into field fieldNm
>    end if
>  end

That's good--I noticed one minor point, though.

The last else should read

else if nr > 1

because the previous if statement checked for =, and >= is a bit redundant.

Cordially,
Kerry Thompson
Learning Network


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/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!]

Reply via email to