M
mission2java_78
Guest
I have a db system where I need to requery the recordset...and we all know when you requery you are brought back to recordset one unless you use some type of recordset clone and go back to the original record. Well this is what I do in my code...but I am experiencing a very slow movement back and WAY too much flickering of the screen along with the hourglass shutting on and off. I was advised to do the following:
Me.DataEntry = False
'stop the flickering on a requery
DoCmd.Echo False, "Executing Visual Basic Code, Please Wait..."
Me.Requery
'make sure we go back to the record that the user was working on because a requery takes
'us back to the first record
Me.RecordsetClone.FindFirst "[RecordID]= " & index & ""
Me.Bookmark = Me.RecordsetClone.Bookmark
'flickering done after the requery
DoCmd.Echo True
Using the Docmd.Echo was SUPPOSED to stop the flickering ... but this isn't the case I continue to deal with a very annoying flickering of the screen...
can someone help spot the problem ?
Jon
Me.DataEntry = False
'stop the flickering on a requery
DoCmd.Echo False, "Executing Visual Basic Code, Please Wait..."
Me.Requery
'make sure we go back to the record that the user was working on because a requery takes
'us back to the first record
Me.RecordsetClone.FindFirst "[RecordID]= " & index & ""
Me.Bookmark = Me.RecordsetClone.Bookmark
'flickering done after the requery
DoCmd.Echo True
Using the Docmd.Echo was SUPPOSED to stop the flickering ... but this isn't the case I continue to deal with a very annoying flickering of the screen...
can someone help spot the problem ?
Jon