Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
Class Properties, Iteration & BindingList
Hi
In my project i have a Data Class instantiated so that its accessible for data multiple times. This means the Class is instanced for as long as the project is running.
I need to create a BindingSource so that i can assign the BindingSource row data to the respective text fields on the form
Because my Data Class is already instanced, im having real difficulty in looping through the properties, Getting the Property Value thats been assigned and then adding the value to a BindingList. The issue is when i try to add the property value to the BindingList.
How can i Add an existing / instantiated class to a BindingList?
Thanks