First of all, what is a "data source", the kind that can be attached to a "DataGridView", what are they used for, and how can I use one?
pseudorandom21 166 Practically a Posting Shark
Recommended Answers
Jump to PostDataSource is a property of some controls (like DataGridView) which is used for binding data to these Controls.
The best would be to look an example:
public partial class Form1 : Form { DataGridView dgv; DataTable table; BindingSource bs; public Form1() { InitializeComponent(); dgv = new …
All 2 Replies
Mitja Bonca 557 Nearly a Posting Maven
ddanbe commented: Good explanation! +9
Momerath 1,327 Nearly a Senior Poster Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.