i am unable to show currency format on DataGridView. Can you people look this code.
private void dataGridView1_DataBindingComplete(object sender,
Try adding the code @Pranay Rana suggested into the CellFormatting Event on the DataGridView:
private void NameOfYourGridGoesHere_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) { this.NameOfYourGridGoesHere.Columns["UnitPrice"].DefaultCellStyle.Format = "c"; }