I've got another issue, I have a SQL Server database in which I insert data using SqlCommand, one of the columns is numeric, but when I read this column back with this code:
zcena1.Text = precti.GetDecimal(4).ToString();
the inserted button 123 is inserted as 123,00 (which is ok)
When I read it back it gives me back 123,00 is there any way to make it read like 123.00? Can I replace comma with dot?