textbox with scrollbar and not focus

R

Richard Kurzban

Is there a way to have the scrollbar in a text box always be displayed even
if the textbox does not have focus? Also is there away not to have reverse
video when the text box first gets focus?
 
J

Jim/Chris

I don't know about the scroll bar but here is the answer to
your second question.

Private Sub txtEmpLN_GotFocus()
Me.controlname.SelStart = 0
End Sub

Or

Me!controlname.SelStart = Me!controlname.SelStart

Jim
 
Top