|
-
Aug 21st, 2005, 07:03 PM
#1
Thread Starter
New Member
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
-
Aug 31st, 2005, 12:00 AM
#2
New Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|