how do u show updates to a grid?
:)
Private Sub dbgResp_AfterUpdate()
Dim selectS As String
rstResults.MoveFirst
While rstResults.EOF = False
With rstResults
.Edit
!TimeDiff = "blah"
.Update
End With
rstResults.MoveNext
Wend
'something missing here
End Sub
what i want this to do is, each time the user changes a cell on my dbgResp datagrid, i want it to change the timediff column to say blah, :) all good.
but i want it to also update the grid, to show the changes, i tried doing a refresh, how can i make it show the new "blah" value?