I'm afraid there isn't so may need to write your own (perhaps something like the one below):
VB Code:
  1. Option Explicit
  2.  
  3. Private Sub Command1_Click()
  4. Dim sFill$
  5.  
  6.     sFill = "AB"
  7.     Debug.Print ConcatString(sFill, 5)
  8.  
  9. End Sub
  10.  
  11. Public Function ConcatString(sChars As String, iNum As Integer) As String
  12. Dim i%, sOutput$
  13.  
  14.     For i = 1 To iNum
  15.         sOutput = sOutput & sChars
  16.     Next i
  17.     ConcatString = sOutput
  18.  
  19. End Function