Results 1 to 2 of 2

Thread: Help with Creating Report

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2005
    Posts
    5

    Help with Creating Report

    I really need some help please, My vb6 program works great for my boss, but he wants it to print reports, there are not numerical figures involved, most if not all text. How do I make an app as simple as this show a report capable of printing. (I have Crystal Report 8.5) Thanks.- kgambit


    Private Sub cmdPrint_Click()
    'this is supposed to show the report.
    End Sub

    Private Sub cmdSave_Click()

    'add a new entry the table.
    With Data2.Recordset
    .AddNew
    !CompliedBy = txtComplied
    !CaseNumber = DataCombo1.Text
    !Date = txtDate
    !OtherOfficers = txtOther
    !Subject = txtSubject
    !details = txtDetail
    !ReportNumber = txtReportNumber
    .Update
    End With
    Data2.Refresh

    End Sub

  2. #2
    New Member
    Join Date
    Aug 2005
    Posts
    10

    Re: Help with Creating Report

    You may use report designer from ur VB app or CR to create a report

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width