textbox with scrollbar and not focus

  • Thread starter Thread starter Richard Kurzban
  • Start date Start date
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?
 
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
 
Back
Top