[AccessD] Access Combo Box - Stop Text Entry

paul.hartland at fsmail.net paul.hartland at fsmail.net
Fri Feb 11 07:23:57 CST 2005


Thanks for everyone's help, went with Gustav's idea

Thanks again

Paul Hartland





Message date : Feb 11 2005, 01:20 PM
>From : "Gustav Brock" 
To : accessd at databaseadvisors.com
Copy to : 
Subject : Re: [AccessD] Access Combo Box - Stop Text Entry
Hi Paul

You can use this - which also blocks Alt+ArrowDown and Ctrl-V, thus no
selecting or paste by keypress while mouseclicks still works.

Private Sub cboTestCombo_KeyDown(KeyCode As Integer, Shift As Integer)

KeyCode = 0

End Sub

To block mouse right-clicks too:

Private Sub cboTestCombo_MouseDown(Button As Integer, Shift As Integer,
X As Single, Y As Single)

If Button And acRightButton = acRightButton Then
Button = 0
End If

End Sub

/gustav

>>> paul.hartland at fsmail.net 11-02-2005 13:16:40 >>>
To all,

I have a combo box on a form with a list of five entries, I want to be
able to make the user select from the list, but not be able to type in
the box is there anyway of doing this

Thanks in advance for any help on this.

Paul Hartland
Website: http://www.databaseadvisors.com
-- 
AccessD mailing list
AccessD at databaseadvisors.com
http://databaseadvisors.com/mailman/listinfo/accessd
Website: http://www.databaseadvisors.com

-- 

Whatever you Wanadoo:
http://www.wanadoo.co.uk/time/

This email has been checked for most known viruses - find out more at: http://www.wanadoo.co.uk/help/id/7098.htm


More information about the AccessD mailing list