Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim LCV1 As Integer
Dim LCV2 As Integer
Dim MyArray(1 To 4, 1 To 3) As Long
Dim PrintLine As String
'Load The array
For LCV1 = 1 To 4 Step 1
For LCV2 = 1 To 3 Step 1
MyArray(LCV1, LCV2) = LCV1 * LCV2
Next
Next
PrintLine = ""
For LCV1 = 1 To 4 Step 1
For LCV2 = 1 To 3 Step 1
PrintLine = PrintLine & MyArray(LCV1, LCV2) & Space(5)
Next
Printer.Print PrintLine
PrintLine = ""
Next
Printer.EndDoc