Hi,
I want to add 5 dummy rows to the result set. I tried using AddRow() in the Fetch() method of a subclass of AcTextQuerySource but it doesn't seem to be adding rows. Please help.
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.