Microsoft
Software
Hardware
Network
Question : convert.decimal problem
my "used" column is decimal..
table.AddCell((Decimal.Par
se(reader[
"used"].To
String()))
);
I use iTextSharp.. table..
The best overloaded method match for 'iTextSharp.text.Table.Add
Cell(iText
Sharp.text
.Cell)' has some invalid arguments
Argument '1': cannot convert from 'decimal' to 'iTextSharp.text.Cell'
Answer : convert.decimal problem
Not sure yet, though try
table.AddCell(reader["used
"].ToStrin
g());
OR
table.AddCell(new Cell(reader["used"].ToStri
ng()));
Random Solutions
sharepoint foundation 2010 on 32 bit?
Re-designing an existing DB - start from paper?
MS Access 2007 -- Using Like with Left Join
SSIS and variable issues
xml to array
Remote Web Workplace in Server 2008?
where i can download bollywood hindi pictures for free ?
How to generate an HTML file if I've got the HTML body?
OWA Text Box Issue with IE8/Win7
Copy Entire Row and Paste into a new Worksheet Excel VBA