J
Jason Logue
I am working on a userform with lots of textboxes. I want
the user to be able to hit tab and go to a certain box.
Is it possible to program this within a userform? If so,
how? This is what I have thus far for the CommandButton:
With ActiveDocument
..Bookmarks("Other5").Range.InsertBefore TextBoxt1
..Bookmarks("Other5price").Range.InsertBefore TextBox2
..Bookmarks("Other6").Range.InsertBefore TextBox3
..Bookmarks("Other6price").Range.InsertBefore TextBox4
..Bookmarks("Other7").Range.InsertBefore TextBox5
..Bookmarks("Other7price").Range.InsertBefore TextBox6
..Bookmarks("Other8").Range.InsertBefore TextBox7
..Bookmarks("Other8price").Range.InsertBefore TextBox8
End With
UserForm2.Hide
End Sub
TIA-Jason
the user to be able to hit tab and go to a certain box.
Is it possible to program this within a userform? If so,
how? This is what I have thus far for the CommandButton:
With ActiveDocument
..Bookmarks("Other5").Range.InsertBefore TextBoxt1
..Bookmarks("Other5price").Range.InsertBefore TextBox2
..Bookmarks("Other6").Range.InsertBefore TextBox3
..Bookmarks("Other6price").Range.InsertBefore TextBox4
..Bookmarks("Other7").Range.InsertBefore TextBox5
..Bookmarks("Other7price").Range.InsertBefore TextBox6
..Bookmarks("Other8").Range.InsertBefore TextBox7
..Bookmarks("Other8price").Range.InsertBefore TextBox8
End With
UserForm2.Hide
End Sub
TIA-Jason