The String$( ) function is useful but limited to only the first character of a string to be concatenated. For example, String$(10,"Me") returns MMMMMMMMMM.

Is there a similar VB6 function or combination of functions that will return MeMeMeMeMeMeMeMeMeMe without looping to obtain this concatenation?

The only thing I can think of is Replace(String$(10, "M"), "M", "Me").