G
Guest
I am using Access 2000. I have a form and a correponding report...both have
a richtext activeX (Lebans FMC V1.8). When I run my report, the first page is
always blank. I am using the code that came with the control example, which
does the same thing:
Private Sub Detail1_Format(Cancel As Integer, FormatCount As Integer)
Dim Height As Integer
Height = Me.RTFcontrol.RTFheight
If Height > 0 Then
If Height < 32000 Then
Me.RTFcontrol.Height = Height
End If
End If
Me.Section(acDetail).Height = Me.RTFcontrol.Height + Me.RTFcontrol.Top
If Me.RTFcontrol.RTFheight > 0 Then
If Me.RTFcontrol.RTFheight < 32000 Then
Me.RTFcontrol.Height = Me.RTFcontrol.RTFheight
End If
End If
Any help would be greatly appreciated!
Thanks,
Mike Robinson
a richtext activeX (Lebans FMC V1.8). When I run my report, the first page is
always blank. I am using the code that came with the control example, which
does the same thing:
Private Sub Detail1_Format(Cancel As Integer, FormatCount As Integer)
Dim Height As Integer
Height = Me.RTFcontrol.RTFheight
If Height > 0 Then
If Height < 32000 Then
Me.RTFcontrol.Height = Height
End If
End If
Me.Section(acDetail).Height = Me.RTFcontrol.Height + Me.RTFcontrol.Top
If Me.RTFcontrol.RTFheight > 0 Then
If Me.RTFcontrol.RTFheight < 32000 Then
Me.RTFcontrol.Height = Me.RTFcontrol.RTFheight
End If
End If
Any help would be greatly appreciated!
Thanks,
Mike Robinson