How to convert the scientific Notation in to Double..
Please kindly refer the image For your reference
on the header column i want to display the original "-" or "+" value i want to display not scientific notation how can i do this?
Coding Part
private void clearAndLoadTree(AccountDetails account, TreeListNode parentNode)
{
treeDetails.Nodes.Clear();
treeDetails.ClearNodes();
populateTree(account, parentNode);
treeDetails.ExpandAll();
}
private double populateTree(AccountDetails account, TreeListNode parentNode)
{
ArrayList al = new ArrayList();
TreeListNode currentNode = addNode(account, parentNode);
AccountDetails[] children = account.children;
double lcValue = account.lcValue;
if (children != null)
{
foreach (AccountDetails subAccount in children)
{
lcValue += populateTree(subAccount, currentNode);
}
}
currentNode.SetValue("lcValue", lcValue);
return lcValue;
}
private TreeListNode addNode(AccountDetails account, TreeListNode parentNode)
{
TreeListNode node = treeAccount.AppendNode(null, parentNode);
******
return node;
}