I am testing an Access database, where there is a combo box on the form. The OnChange event for the Combo box is set to =[refresh]. What does this mean?
On another note, the form itself has a Commit button, with the following code in the OnClick event:
Is this button necessary? It appears to work fine without it, but I'm wondering if I'm missing something.
Thanks
On another note, the form itself has a Commit button, with the following code in the OnClick event:
If Me.Dirty = False Then Exit Sub
Me.Refresh
Me.Refresh
Is this button necessary? It appears to work fine without it, but I'm wondering if I'm missing something.
Thanks