Here is a piece of code that will do it.
You need to load the small pic into a picture opject such as a image or picturebox before calling this function.
Also, cleanup the image or picturebox after this funtion.
Public Function TileObject(ByVal stdPct As Object, ByVal objTo As Object, wid As Single, hgt As Single)
On Error Resume Next
Dim x As Single
Dim y As Single
y = 0
Do While y < objTo.Height
x = 0
Do While x < objTo.Width
objTo.PaintPicture stdPct.Picture, x, y, wid, hgt
x = x + wid
Loop
y = y + hgt
Loop
End Function