how to create stetmen foreach gridcontrol devexpress
-
Exemple stetment foreach (DataGridViewRow row in gridControl1.Rows)can't Rows { mailbody += "<tr>"; foreach (DataGridViewCell cell in row.Cells) { mailbody += "<td>" + cell.Value + "</td>";
-
Exemple stetment foreach (DataGridViewRow row in gridControl1.Rows)can't Rows { mailbody += "<tr>"; foreach (DataGridViewCell cell in row.Cells) { mailbody += "<td>" + cell.Value + "</td>";
-
Exemple stetment foreach (DataGridViewRow row in gridControl1.Rows)can't Rows { mailbody += "<tr>"; foreach (DataGridViewCell cell in row.Cells) { mailbody += "<td>" + cell.Value + "</td>";
Member 10270825 wrote:
can't Rows
I'm not surprised. The DevExpress GridControl doesn't have a Rows property: DevExpress GridControl Members[^] - and even if it did, it is very, very unlikely to return DataGridViewRow values - they are associated with the .NET DataGridView control...
The only instant messaging I do involves my middle finger. English doesn't borrow from other languages. English follows other languages down dark alleys, knocks them over and goes through their pockets for loose grammar.
-
Exemple stetment foreach (DataGridViewRow row in gridControl1.Rows)can't Rows { mailbody += "<tr>"; foreach (DataGridViewCell cell in row.Cells) { mailbody += "<td>" + cell.Value + "</td>";