*** First Check to see if this combo has an empty array as its RowSource
*** because if it does, we will disable it so we don't see the little
*** .F. when it is dropped down
IF This.RowSourceType = 5 AND TYPE( 'This.aContents[ 1, 1 ]' ) = 'L'
*** We have no items, disable the combo
This.Enabled = .F.
ELSE
This.Enabled = .T.
ENDIF