Gregory Lypny wrote:
> 
> Hi again everyone,
> 
>         I can't seem to create a series of variables whose names are
> identical except for a numerical prefix, such as H1, H2, H3, ... (and
> this is not an associate array).
> 
>         I tried
> 
>         repeat with i=1 to 10
>                 Put stuff into (H & i)
>         end repeat
> 
>         but MetaCard doesn't like that.

It needs quotation marks, since H is a literal:

   put stuff into ("H" & i)

-- 
Jacqueline Landman Gay         |     [EMAIL PROTECTED]
HyperActive Software           |     http://www.hyperactivesw.com
_______________________________________________
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard

Reply via email to