G
Guest
Hello,
I have a combobox which lists few values.
I want the user to be able to choose a value or to enter a new one.
I wrote this precedure:
Private Sub curante_NotInList(NewData As String, Response As Integer)
Response = acDataErrAdded
curante.AddItem UCase(NewData)
End Sub
The new values is added in the combo, but once the forms is closed new
values are lost. If I re-open the form I can only see the few original values.
Why?
NIck
I have a combobox which lists few values.
I want the user to be able to choose a value or to enter a new one.
I wrote this precedure:
Private Sub curante_NotInList(NewData As String, Response As Integer)
Response = acDataErrAdded
curante.AddItem UCase(NewData)
End Sub
The new values is added in the combo, but once the forms is closed new
values are lost. If I re-open the form I can only see the few original values.
Why?
NIck