You can use a MouseMove Event to display the contents of the textbox in a
ControlTip like:
Private Sub txtWhatever_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
If Not IsNull(txtWhatever) Then
txtWhatever.ControlTipText = txtWhatever
End If
End Sub
or use it to grow the textbox:
Private Sub txtWhatever_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
Me.txtWhatever.Height = 1440 ' twips which is 1 inch
End Sub
but you'll also need to put it back in the form's detail section:
Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As
Single, Y As Single)
Me.txtWhatever.Height = 280 ' twips
End Sub
You might also use the text box's Got and Lost focus events to do the same.

Signature
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
> Hello, I need to have a text box that show a single line when is view in
> the
[quoted text clipped - 21 lines]
>
> Rafael