linking binding source navigator

Joined
Oct 31, 2011
Messages
1
Programming Experience
1-3
this is my first post here in vbdotnetforums. not sure if i am in the right forum.:tennis:
here's my problem: i have 6 binding source navigator in my form. there data source is a binding source.
what i want is that...everything i do in one binding source navigator(like next item, previous, add, delete etc)
will also happen in the other binding source navigator.
is there any way that i can do this? sorry if i can't explain my problem well...english is not my primary language.
thanks for any response...hoping for fast and correct answer.:highly_amused:
 
You have 6 datatables, 6 bindingsources and 6 navigators, and when you navigate any one, you want all the bindingsources to move their poition? and when you add in any one, you want to add a new row to all tables? (and same for delete, move previous etc) ??

Why dont you just make your life easier, make the ui simpler, and have ONE nav, and manually link up the events yourself so that clicking NEXT will do, in code:

VB.NET:
bindsource1.MoveNext()
bindsource2.MoveNext()
bindsource3.MoveNext()
bindsource4.MoveNext()
...

To disable the automatic functionality I think you have to look in the PROPERTIES of the control, for any property that ends with the word "Item" => these properties define which button is for what. Set them to blank/null and the nav will no longer movenext etc automatically - you will have to create onclick handlers and handle the click events yourself
 
Back
Top