I have a form1 with a binding source created by VS as
private System.Windows.Forms.BindingSource bindingSource1
I have changed private to public
Sill Intellisence doesn't recognize
form1.BindingSource
within another form2
Form1 form1 = new Form1();
form1.bindingSource1 = ...;
Why ?