Hi Everybody..
Is it possible to have a report with flexible text width and height? I want to change font size based on the length of text. I try this code ON FORMAT but it didn't work:
see my att
Is it possible to have a report with flexible text width and height? I want to change font size based on the length of text. I try this code ON FORMAT but it didn't work:
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Len(Me.FName) > 3 Then
Me.FName.FontSize = 5
Else
Me.FName.FontSize = 11
End If
End Sub
see my att