Hi,
I currently use the control value 107 to update a table from a select box in a form but now I need to change it to a combo box, what is the control type value for a combo box?
Dim ctl As Control, intValuesFound As Boolean
intFrmClose = False
intValuesFound = False
For Each ctl In Me.Form
If ctl.ControlType = 107 Then
If Not IsNull(ctl.Value) Then
intValuesFound = True
I currently use the control value 107 to update a table from a select box in a form but now I need to change it to a combo box, what is the control type value for a combo box?
Dim ctl As Control, intValuesFound As Boolean
intFrmClose = False
intValuesFound = False
For Each ctl In Me.Form
If ctl.ControlType = 107 Then
If Not IsNull(ctl.Value) Then
intValuesFound = True