Hello,
I am actually want to do validation on combobox.
It is like u make user must make choose one of the item from combo box before they procedd to do any other action like UPDATE, SAVE or DELETE.
In textbox, we always use IF statement
like
if (textBox1.text == "") {
//promt MsgBox ask user to input
return;
}
So, how we do if it is comboBox.
I also welcome anything similar, a least I can figure out an idea
thanks
I am actually want to do validation on combobox.
It is like u make user must make choose one of the item from combo box before they procedd to do any other action like UPDATE, SAVE or DELETE.
In textbox, we always use IF statement
like
if (textBox1.text == "") {
//promt MsgBox ask user to input
return;
}
So, how we do if it is comboBox.
I also welcome anything similar, a least I can figure out an idea
thanks