1
123
I have many control in my report detail and all control can grow = yes and
detail also can grow =yes
my problem is I want all control take same height for example If one text
box contain larage text all text also take same height.
thank you
I have try used this code
Dim ctltxt As Control
For Each ctltxt In Me.Controls
If ctltxt.ControlType = acTextBox Then
With ctl
..Height = Detail.Height
End With
End If
Next ctltxt
Set ctltxt = Nothing
but not work
detail also can grow =yes
my problem is I want all control take same height for example If one text
box contain larage text all text also take same height.
thank you
I have try used this code
Dim ctltxt As Control
For Each ctltxt In Me.Controls
If ctltxt.ControlType = acTextBox Then
With ctl
..Height = Detail.Height
End With
End If
Next ctltxt
Set ctltxt = Nothing
but not work