TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Goran Bibic
484
2.9k
196.1k
Remove time in itextsharp pdf document
Apr 17 2018 4:07 PM
Remove time in itextsharp pdf document
08.04.2018 12:44:21 datetime now
08.04.2018 I need..
//Adding DataRow
foreach (DataGridViewRow row in mp_faktura_listaDataGridView.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
PdfPCell cell2 =
new
PdfPCell(
new
Phrase(cell.Value.ToString(), calibri));
pdfTable.AddCell(cell2);
}
}
I try this
//Adding DataRow
foreach (DataGridViewRow row in mp_faktura_listaDataGridView.Rows)
{
foreach (DataGridViewCell cell in row.Cells)
{
string dateVal = cell.Value.ToString().Split(
','
)[0];
PdfPCell cell2 =
new
PdfPCell(
new
Phrase(dateVal, calibri));
}
}
But dont work
Reply
Answers (
9
)
how to stop audio after bootstarp close button in iframe
File Not download in Asp.Net Core 2.0 + Angullar 4