|
Private Sub loopMonthRow (fst_date_mm, fst_date_dd, last_date_mm, last_date_dd As String, row_no As Integer)
loopToFstMonthOrDate fst_date_mm&STR_MONTH_NM, INT_ROW_MONTH
loopToFstMonthOrDate fst_date_dd, INT_ROW_DATE
End Sub
Private Sub loopToFstMonthOrDate (content As String, row As Integer)
. . .
End Sub
When I execute loopMonthRow this method always reports an error
loopToFstMonthOrDate fst_date_dd, INT_ROW_DATE
Fst_date_dd parameter in "BYREF parameter type does not match", but when I change to
loopToFstMonthOrDate fst_date_dd&"", will be correct after INT_ROW_DATE. This is the reason for the company. What should we do? |
|