Hello,
I'm having a problem with Aspose.Cells 4.4.3.1. When I try the following, I expect the Cell to be of the type IsDateTime, but instead I'm getting IsNumeric.
Here's the code I use:
DateTime sDateTime;
sDateTime = Convert.ToDateTime(sText);
_Cells[ACellRow, ACellColumn].PutValue(sDateTime);
if (_Cells[ACellRow, ACellColumn].Type == CellValueType.IsDateTime)
{
I NEVER GET HERE
}
else if (_Cells[ACellRow, ACellColumn].Type == CellValueType.IsNumeric)
{
I ALWAYS GET HERE
}
I've upgraded my Aspose.Cells to 4.4.3.1, but this problem still persists (I was using 4.4.1.0 before this). Is there something I'm overlooking ?
Thanks in advance,
Alex