OK, found the answer and a better way to set a multiline textbox to the first line that works on both mac and PC platforms...
[vba]
With TextBox1
.SetFocus
.CurLine = 0
End With
[/vba]
the curline property is listed in VBA help...just didnt find it soon enough![]()