I am using a DataGridView to display data from a database. I am trying to format a column to display as a currency with a £ symbol rather than a $.
I am currently using this code:
this.dgvPRL.Columns[4].DefaultCellStyle.Format = "c";
however it displays with a $ not £.
Thank you