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
Installing SSL certifcate on exchange 2010
How can you search e-mail within Outlook 2010 and not use the index?
Windows 7 Enterprise Backing up to a network drive
Roaming Profiles in Windows 7 Pro and SBS 2008
admx template
Backup jobs in Symantec Backup Exec 11d keep failing (due to lack of free space on destination drive, I believe). How can I fix this? The job logs have been attached
Windows XP does not see other computers on the workgroup
instance_resources
How to view a .pwi file in XP: Office 2007?
I need to change the color of a DataGridView scrollbar in C# WinForms