Hi all,
I was wondering if it was possible to create textboxes on the fly in a report using code.
Something like this:
Dim YearMatrix(1 To 31, 1 To 12) As TextBox
Private Sub Report_Open(Cancel As Integer)
Dim x, y As Integer
For x = 1 To 31
For y = 1 To 12
Set YearMatrix(x...