Date:  02/10/2002 02:17:07 PM Msg ID:  000358
From:  John Kelly Thread:  000160
Subject:  Re: Star
Being an old programmer, sometimes I work simpler:

REPLICATE("*",5)

will produce *****

FOR I=1 TO 5
   ? REPLICATE("*",I)
ENDFOR

John

Sent by Hokgiarto Saliem on 11/24/2001 06:24:40 PM:
How to make star ('*') in foxpro with input n.

Exc. n=5
     *
    **
   ***
  ****
*****
Thank you.