I have a windows form bound to a table in a dataset. I first used a BindingNavigator and I noticed that while the move last, next and first worked as expected the move previous did not. If I click 'move last' and then 'move previous' it will not move from the last position. Move previous does work if I use move next to go partly into the table and back againbut once it's at the end 'move previous' is done for the day.
I pulled out the BindingNavigator and put in buttons and wrote C# code to do the same functionality but I got the same results. It sorta works sometimes, exactly as above. I tried changing the position value instead of using the Move methods and again the results are the same �it works but not if it’s at the end. I can step through the code and it just ignores it. There are no error messages or other indications that anything is wrong.The only way around this that I've found so far is to use "Position = 0 and then Position = Original Position - 1". That’s pretty sad and I shouldn’t have to do that.
I haven't found any help with this after many attempts at googling various versions of "c# data binding move previous bug�
Please help.