hi,
based on title, i can disable command button if i have only use 1 combobox value. the is like
Private Sub Form_Current()
If Combo10.Value = "SEMENTARA" Then
Me.Command6.Enabled = True
Me.Command8.Enabled = True
Me.Command9.Enabled = False
Me.Command7.Enabled = False
Else...