If I understand correctly, you could use code like the following
Private Sub TextBox1_KeyUp(ByVal KeyCode As MSForms.ReturnInteger, ByVal
Shift As Integer)
If KeyCode = vbKeyTab Then
With Me.ComboBox2
.Visible = True
.SetFocus
.SelLength = Len(.Text)
.SelStart = 0
If .ListCount > 0 Then
.ListIndex = 0
End If
End With
KeyCode = 0
End If
End Sub

Signature
Cordially,
Chip Pearson
Microsoft MVP - Excel, 10 Years
Pearson Software Consulting
www.cpearson.com
(email on the web site)
> Greetings,
>
[quoted text clipped - 24 lines]
> Hope this makes sense.
> Rob W
Rob W - 02 Dec 2007 12:57 GMT
Thanks very much, worked a treat.
When I get a free minute I will look up the commands Im unfamilar with.
Thanks
Rob
> If I understand correctly, you could use code like the following
>
[quoted text clipped - 43 lines]
>> Hope this makes sense.
>> Rob W