08-07-22, 05:25 PM
جرب هذا الكود ليتحكم بتنسيق التاريخ في الداتا غريد فيو :
PHP كود :
'++++++++++++++++++++++++++++'
'تنسيق التاريخ DataGridView1'
Private Sub DataGridView1_CellFormatting(sender As Object, e As DataGridViewCellFormattingEventArgs) Handles DataGridView1.CellFormatting
If e.ColumnIndex = 0 Then
If e.RowIndex = DataGridView1.Rows.Count - 1 Then Exit Sub
e.Value = CDate(e.Value)
e.CellStyle.Format = "yyyy-MM-dd"
End If
End Sub
'++++++++++++++++++++++++++++'
سبحان الله وبحمده سبحان الله العظيم و الحمد لله ولا اله الا الله والله اكبر
