I have a bound form ordered on DocNo. My form is bound via qry_Docs. If I add a DocNo that is out of sequence, how do I get my form to refresh or requery to display the records in numerical order based on the DocNo?
I have tried both Me.Refresh and Me.Requery in the following event:
Nothing is working.
Thank you!
Hefly
I have tried both Me.Refresh and Me.Requery in the following event:
Code:
Private Sub Form_AfterUpdate()
Me.Refresh
End Sub
Code:
Private Sub Form_OnLostFocus()
Me.Refresh
End Sub
Nothing is working.
Thank you!
Hefly