evolet10000
Active member
- Joined
- Nov 22, 2012
- Messages
- 40
- Programming Experience
- Beginner
OK, I have 2 bounded datagridviews in my form naming beneficiarydatagridview and beneficiarydatagridview1 which is bound to the same bindingsource... now heres the thing in my beneficiarydatagridview i have a search engine using textbox and a button, using the .FILTER feature of bindingsource...its working properly ,it shows the exact data...on my 1st datagrid(beneficiarydatagridview)... but since my 2nd datagrid(beneficiarydatagridview1) is also bounded to the same bindingsource it also displays the same data...now how can i avoid my 2nd datagrid(beneficiarydatagridview1) not to change its value? whenever i execute a search in my 1st datagrid?
i tried to declare a new bindingsource but still the same occurs...heres my code
Dim mybinding19 As New BindingSource
mybinding19.DataSource = Me.SPESDataSet.BENEFICIARIES
BENEFICIARIESDataGridView1.DataSource = mybinding19
thanks for your kindness in advance
i tried to declare a new bindingsource but still the same occurs...heres my code
Dim mybinding19 As New BindingSource
mybinding19.DataSource = Me.SPESDataSet.BENEFICIARIES
BENEFICIARIESDataGridView1.DataSource = mybinding19
thanks for your kindness in advance