Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Horizontal Alignment "Justified" ignored in CRViewer

Status
Not open for further replies.

jcfowl

Programmer
Feb 15, 2002
29
US
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
 
I just realized that it prints
with the "Justified" Horizontal
alignment. It still won't display
it in the CRViewer though.
 
Dear jcfowl,

This is a known issue:

See the following Crystal Decisions KB article:


And, apparently the issue is fixed in CR9:


Hope that helps,

ro Rosemary Lieberman
rosemary@microflo.com, Microflo provides expert consulting on MagicTSD and Crystal Reports.
 
I read that article but was hoping
there was a fix for my version of
Crystal(8.5). oh well, thanks for
the reply.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top