How do i duplicate a text with Api like this but with Api
For I = 0 to 5
A = A & Text
next I
Printable View
How do i duplicate a text with Api like this but with Api
For I = 0 to 5
A = A & Text
next I
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.
What are you trying to do? I'm sure that there will be a way around it.
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?