PDA

Click to See Complete Forum and Search --> : duplicate text


codegreen
Jan 31st, 2001, 12:09 PM
How do i duplicate a text with Api like this but with Api

For I = 0 to 5
A = A & Text
next I

parksie
Jan 31st, 2001, 12:36 PM
Huh?

I don't think there's anything specific in the API to do that since it's a part of pretty much every programming language.

Jan 31st, 2001, 04:29 PM
What are you trying to do? I'm sure that there will be a way around it.

DarkJedi9
Jan 31st, 2001, 08:12 PM
Is that really an API question? Can't you just do:
text1.text = text1.text & text1.text or something like that and then loop it?