Decimal places in C#DGV

Asked

Viewed 743 times

0

Here are 2 images that summarize my problem.

Screenshot of db (Access)

inserir a descrição da imagem aqui

Image of the Datagridview

inserir a descrição da imagem aqui

When launched values with decimal places "0" the DGV does not show, Ex:
1.00 = 1
1.50 = 1.5

Follows the properties of the field:

inserir a descrição da imagem aqui

Some way to take the full values to the DGV ??

1 answer

1


I managed to solve my problem with the following codes !

     NomedoDataGrid.Columns[Numero ou Nome da Coluna].DefaultCellStyle.Format = "C2"   

monetary values to two decimal places

     NomedoDataGrid.Columns[Numero ou Nome da Coluna].DefaultCellStyle.Format = "N2" 

numeric values to two decimal places

     NomedoDataGrid.Columns[Numero ou Nome da Coluna].DefaultCellStyle.Format = "d" 

date format

Hugs !

  • Good afternoon friend, in which part Voce inserted these codes ??

Browser other questions tagged

You are not signed in. Login or sign up in order to post.