Hi,
How to make UltraCalendarCombo control uneditable so that user can only select the date from drop calendar i.e. user will not be able to type a date - can only select from drop down calendar.
--sumit
The ReadOnly property affects both the edit portion and the dropdown button, so you can't use that (you probably already know this). You should, however, be able to handle the KeyPress event and set the 'Handled' property of the event arguments to true to prevent the keystokes from producing characters.