"Peter Cooper" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Sk
>
> Try
>
>  set @(z_i)=$Get(^myGlobal("A",tc,sex,date,i))

Sk,

I think it needs to be:

 set @("z"_i)=$Get(^myGlobal("A",tc,sex,date,i))

because z *is* the prefix of the variable name you want.

Did you consider using an array instead?

 set z(i)=$Get(^myGlobal("A",tc,sex,date,i))

Then make your CSP page read:

<input name="z1" value=#(z(1))# type="text" size="15" id="1">
<input name="z1" value=#(z(2))# type="text" size="15" id="1">


John


Reply via email to