This might be coming too late, and for that I apologize. If you did not find a resolution to this problem you need to do the following in the Fetch() method in whatever way you want to loop through to create 5 rows (Do While, etc) based on whatever logic is needed:
Dim NewRow As DataRow 'name of the datarow in your report
Set Fetch = Super::Fetch()
Set NewRow = New DataRow
NewRow.txtControl = "" 'name of a control in your frame
Set Fetch = newRow
Hope this helps,
Bill