M
mg
GhostInAK said:NON-ANSWER!? Fukin retard. It was a perfect answer.
LOL. Your reply demonstrates my point far better than I ever could.
You have a very low threshold for 'perfect'.
GhostInAK said:NON-ANSWER!? Fukin retard. It was a perfect answer.
as you suggested prevent the automatic database update until you force
it?
How are you currently telling your application that changes to data
have happened and now an update is necessary?
For the Sql Server clients I would add update, delete triggers to the
database tables and archive history that way. Or you could put this
logic in a Stored Procedure and make it a transaction. First adding to
history then update live data. This would also resolve any problems
with multiple people updating the same info at the same time.
Access clients and another for SQL Server clients.
Kathy said:Brian,
I have set this up to work with either a MS Access or SQL Server
database. I think I've accomplished both issues now. Inside the LEAVE
event I'm comparing the old to the new value as suggested by Jim.
Inside the ENTER event I was storing the value in a global variable.
But I like your idea of using the Tag property for saving the old value
better than what I did. That way I can compare all the text boxes
during the binding source's CurrentChanged event. Does that sound
reasonable?
Thanks !
Kathy