A family of Microsoft relational database management systems designed for ease of use.
If the combo box is an unbound control, while you can set the DefaultValue property of an unbound control, it's much the same as assigning an initial value to it, so in the form's Load event procedure you can put:
Me.Disposition= Me.Disposition.ItemData(0)
If it's a bound control then you could put the following in the form's Load event procedure rather than setting the property in the properties sheet:
Me.Disposition.DefaultValue = """" & Me.Disposition.ItemData(0) & """"
Note that the DefaultValue property is always a string expression, regardless of the data type of the column to which it is bound, hence the literal quotes.