I'm not sure that this what you are looking for, but
if me.text1 =1 then
me.display = me.display & "Show1"
end if
--
\\// Live Long and Prosper \\//
BS"D
"pokdbz" wrote:
> I would like to have a text box so that if certain conditions are met then it
> will display multiple items in the box.
> Here is an example
>
> if me.text1 =1 then
> me.display = add "Show1" to me.display
> end if
>
> if me.text4 = 4 then
> me.display = add "Show4" to me.display
> end if
>
> if me.text5 = 5 then
> me.display = add "Show5" to me.display
> end if
>
> So if text1 and text4 were true
> me.display would have Show1 Show4 in it.
|