I have a DataGridView with numeric values and some of them represent monetary values, but the database comes just the number and wanted to put the currency symbol in front of the value.
This is the code I use to load my DataGridView;
public void carregarDataGridView3()
{
Abastecimento_Negocio abastecimento_Negocio = new Abastecimento_Negocio();
dataGridView3.DataSource = null;
dataGridView3.DataSource = abastecimento_Negocio.conusltarMedias(mesPassado);
dataGridView3.Update();
dataGridView3.Refresh();
dataGridView3.ClearSelection();
FontDataGrid3();
}
My idea was to select the column you wanted and concatenate the value inside the Cell with the symbol.
In these two values I wanted to put the currency symbol, is it possible?