[C#] How Can I replace it .

12/08/2012 14:40 Superbuu.#1
Fixed .
12/08/2012 16:48 tolio#2
loop through all fields and try something like this
.replace(".",",")
12/08/2012 19:58 Superbuu.#3
Nulled.
12/08/2012 22:29 snow#4
I guess he means something like this:

(may contain some errors, I don't know C#)

for (int i = 0; i < this.dataGridView2.Items.Count; i++) {
String val = this.dataGridView2.Items[i].toString();
this.dataGridView2.Items[i].Value = val.replace(".", ",");
}

Something in that way. Loop through every single cell and replace the "," with ".".
12/08/2012 22:29 'Heaven.#5
Use
String nameitlikeuwant = this.rowset(...).Value.Replace(",",".")

this.rowset(...) = nameitlikeuwant
12/09/2012 11:47 Superbuu.#6
Problem Fixed .
Thanks anyway
12/09/2012 14:28 nkkk#7
can you post the code how you save the DataGridView to the DB?