We have a very simple test Form to try and figure out why we can not call Crystal Reports from VB6. At First it was a missing .ocx that problem appears to have been corrected.
Now we are lost.
There is only 1 Crystal Control, 1-Txt box, 1-Command Button on the Form.
The code is simple:
Private Sub Command1_Click()
Dim Start As String
Start = txtFromdate
CrystalReport1.ReportFileName = "G:\CITECT\Reports\Citect Oracle\Thickner_flows.rpt"
CrystalReport1.ParameterFields(0) = "START;" & Start & ";True"
CrystalReport1.Connect = "PWD = REPORTS"
CrystalReport1.PrintReport
End Sub
The project is published placed on the network, and works fine from machines with VB loaded on them but not from machines without.
The app starts, the Crystal Report flashes on the screen but never actually seems to run.
We are new at this and are to say the least lost!
Can any one point us in a direction to head off in?
Thanks
CurtR
Now we are lost.
There is only 1 Crystal Control, 1-Txt box, 1-Command Button on the Form.
The code is simple:
Private Sub Command1_Click()
Dim Start As String
Start = txtFromdate
CrystalReport1.ReportFileName = "G:\CITECT\Reports\Citect Oracle\Thickner_flows.rpt"
CrystalReport1.ParameterFields(0) = "START;" & Start & ";True"
CrystalReport1.Connect = "PWD = REPORTS"
CrystalReport1.PrintReport
End Sub
The project is published placed on the network, and works fine from machines with VB loaded on them but not from machines without.
The app starts, the Crystal Report flashes on the screen but never actually seems to run.
We are new at this and are to say the least lost!
Can any one point us in a direction to head off in?
Thanks
CurtR