Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~581 People Reached
Favorite Forums
Favorite Tags
Member Avatar for deefpi

Hello again :) I download data from database to datagrid. Everything working. I need change a cells background color in datagrid where values is other than null. So If i check cells like that: [CODE] dataGridView1.DataSource = datatable from database; for (int row = 0; row < dataGridView1.RowCount-1; row++) { …

Member Avatar for ddanbe
0
144
Member Avatar for deefpi

Hello. I have a datagrid with 9 columns. I want to add a one row from data table who is that same. I believs I can do it that: [CODE]DataGridViewRow drow = new DataGridViewRow(); foreach (DataRow wiersz in dTable2.Rows) { for (int i = 0; i <= ilosckolumn - 1; …

Member Avatar for deefpi
0
437