BindingNavigator is disabled

besmart2000

Active member
Joined
Feb 18, 2007
Messages
25
Programming Experience
1-3
Hi
I created BaseForm with BindingNavigator inside it.


I create a NewForm inherited from the baseform with bindingsource, dataset and tableadaptor.
The BindingNavigator is gray (disabled) in the newForm and i could not add any event to it in design time.
When i run the newform , also BindingNavigator is grayed (disabled)
How can i activate BindingNavigator in designtime , and runtime
thanks
 
Choose "Clean SOlution" from the Build menu, exit Visual studio, then Upload your project here in a zip file
 
Form2's bindingnavigator is inherited from the BaseForm. If you want to modify anything about it in the designer, modify the version of it you see on BaseForm, not Form2. Rebuild your project for the changes to be reflected by Form2

At runtime the Binding Nav on Form2 is greyed out because it is not connected to a BindingSource.. :D
 
Back
Top