hi,
I need to put about 10 crystal reports
in to a visual basic app. the vb user
interface is already created and I can
list one report under the menu option.
I can also list the rest, but do i have to
list the directory for everyone report?
is there a better way to show the
report in vb?
I will post this in vb forum too, but
just in case you know anything about
this, plz advise. thanks so much.
Private Sub mnuReport1_Click()
Set mCrystal = New CRAXDRT.Application
Set mReport = mCrystal.OpenReport("C:\report1.rpt")
CRViewer1.ReportSource = mReport
CRViewer1.ViewReport
Set mCrystal = Nothing
Set mReport = Nothing
End Sub
I need to put about 10 crystal reports
in to a visual basic app. the vb user
interface is already created and I can
list one report under the menu option.
I can also list the rest, but do i have to
list the directory for everyone report?
is there a better way to show the
report in vb?
I will post this in vb forum too, but
just in case you know anything about
this, plz advise. thanks so much.
Private Sub mnuReport1_Click()
Set mCrystal = New CRAXDRT.Application
Set mReport = mCrystal.OpenReport("C:\report1.rpt")
CRViewer1.ReportSource = mReport
CRViewer1.ViewReport
Set mCrystal = Nothing
Set mReport = Nothing
End Sub