I am passing the textbox1.text
values into a query and sometimes into a string:
Dim combor1 As String
combor1 = comboReason1.Text
Both usually give the same result, except when the corresponding control is
Example:
In this situation:
.text property is available only when the corresponding control has the focus.
.text is a string value, therefore it cannot be Null, while .value can be Null
EDIT: .text can only be called when the control has the focus, while .value can be called any time ...