I am displaying my Report through the
CRViewer control in a VB6 application. I
have a memo field that displays info
with the Horizontal alignment set to
Justified. It works fine in the report
but it is left justified in the CRViewer.
Here is how I load the Report
Public Sub LoadCrystalReport()
Load frmCrystal
Dim App1 As New CRAXDRT.Application
Dim Report As New CRAXDRT.Report
Screen.MousePointer = vbHourglass
Set Report = App1.OpenReport("C:\my programs\JobList\Reports\TF_JobList.rpt"
Report.DiscardSavedData
frmCrystal.CRViewer1.ReportSource = Report
frmCrystal.Show
frmCrystal.CRViewer1.ViewReport
Screen.MousePointer = vbDefault
End Sub
CRViewer control in a VB6 application. I
have a memo field that displays info
with the Horizontal alignment set to
Justified. It works fine in the report
but it is left justified in the CRViewer.
Here is how I load the Report
Public Sub LoadCrystalReport()
Load frmCrystal
Dim App1 As New CRAXDRT.Application
Dim Report As New CRAXDRT.Report
Screen.MousePointer = vbHourglass
Set Report = App1.OpenReport("C:\my programs\JobList\Reports\TF_JobList.rpt"
Report.DiscardSavedData
frmCrystal.CRViewer1.ReportSource = Report
frmCrystal.Show
frmCrystal.CRViewer1.ViewReport
Screen.MousePointer = vbDefault
End Sub