I have C# code, visual studio 2015 for desktop dataentry application. When i use pdf report PaymentDate column shows "01-June-2017, 12.00AM". I want to remove "12.00AM". How? Please sample code or example.
//Adding DataRow
foreach (DataGridViewRow row in dataGridView1.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
pdfTable.AddCell(new Phrase(cell.Value.ToString(), fontTable));
}
}
Manas MohapatraPosted Jun 12, 2017, 1:59 AM
Shovan SahaPosted Jun 13, 2017, 12:31 PM
Shovan SahaPosted Jun 11, 2017, 12:00 PM
Manas MohapatraPosted Jun 2, 2017, 1:45 AM