I have a richtextbox binded to a bindingsource by this code ;
RTB.DataBindings.Add("text", BindingSource1, "Name", False)
Problem is, I need to leave and re-enter this richtextbox a lot of time. But every time I leave the textbox (IF I modified the text in it), and if the scroll bar weren't at the top, it scroll back to top. I suspect it is because of the databinding.
How can I do to stop this behaviour ? I understand than the datasource has to be updated (And I want it to be), but I don't understand why the text "reset".
Thx for your help.