The Arrow in a combo box gets there from a .DLL call to some file we don't know about.<br>
So NO you can't get rid of it.<br>
Unless you Know "C" language and you want to design your own .OCX.<br>
Now to drop down a combo box requires an API call.<br>
I have on but it does not work in Access just Visual Basic Pro<br>
But here it is if you want to fiddle with it.<br>
the first line goes in a Module<br>
---------------------------------------------<br>
Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Long) As Long<br>
---------------------------------------------<br>
Private Sub Combo1_GotFocus ()<br>
Const CB_SHOWDROPDOWN = &H14F<br>
Dim Tmp<br>
Tmp = SendMessage(Combo1.hWnd, CB_SHOWDROPDOWN, 1, ByVal 0&)<br>
End Sub<br>
<br>
the second lines go in some event in Access Of course there is no "Combo1_GotFocus" event in Access <br>
<br>
<p> DougP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br>