I have a combo box that triggers a message box when someone tries to change its value, i.e.
Private Sub myComboBox_BeforeUpdate(Cancel As Integer)
Dim Repsonse As Integer
Response = MsgBox("Permanently change the data in this field?", vbOKCancel, "Confirm")
If Response = 2 Then 'Cancel
'Restore Control to previous state
End If
End Sub
My question is this: what code to I put in to restore the control's text to whatever it was before the user changed it?
Thanks.
Aaron