Wed, 18 Jun 1902 08:00:00 GMT
ReportSmith 2.5.2 / Derived Field / FieldFont
Greetings I have the following derived filed using ReportSmith. Now, I need to change the font of the "Book" and "Article" Fields using the FieldFont statement but it does not appear to work .... not the best code and Iknow it would be easiest to deign the report using standard columns but I need column widths to change dynamically, i.e. removing all trailing blanks, etc. Any help will be appreciated! Kindly reply directly to my e-mail if possible. Thanks Sub Title() Dim{*word*254}As String If Len(Trim$(Field$("Book"))) > 0 Then tit = RTrim$(Field$("Book"))+" "+RTrim$(Field$("Volume"))+" "+RTrim$(Field$("Part"))+" "+RTrim$(Field$("Pages"))+" "+RTrim$(Field("Country")) DerivedField{*word*254} Else tit = RTrim$(Field$("Article"))+" "+RTrim$(Field$("Journal"))+" "+RTrim$(Field$("Volume"))+" "+RTrim$(Field$("Part"))+" "+RTrim$(Field$("Pages"))+" "+RTrim$(Field$("Country")) DerivedField{*word*254} End If End Sub -- John Chillek KZN SoftWare C/o Private Bag X1 Cato Ridge 3680 KwaZulu Natal South Africa Phone/Fax: [0325] 34823 Email:j...@alpha.futurenet.co.za
|