This really isn't aligned well, but it demonstrates the basic idea. Add this code to a Form with a Label. Set the Font to a fixed width font (such as Courier New).
Code:
For X = 1 To 10
    For Y = 1 To 10
        Label1 = Label1 & "  " & X * Y
    Next Y
    Label1 = Label1 & vbCrLf
Next X