VB Code:
  1. Set rsDis = New ADODB.Recordset
  2.     sql = "select chkname, chkdate, chktotal, chknumtoword from checktable"
  3.     rsDis.Open sql, cn
  4.     Set DataReport1.DataSource = rsDis
  5.    
  6.         DataReport1.Sections(1).Controls("lblAccount").Caption = rsDis(0)
  7.         DataReport1.Sections(1).Controls("lblDate").Caption = rsDis(1)
  8.         DataReport1.Sections(1).Controls("lblTotal").Caption = rsDis(2)
  9.         DataReport1.Sections(1).Controls("lblNum2Wrd").Caption = rsDis(3)
  10.         DataReport1.Show

i want the next row of my recordset in the next page of the datareport. how? i am using vb 6. thanks!