G
Guest
I have following code in C#.NET
m_strTableName = "AFE";
m_dataTable = new DataTable(m_strTableName);
DataColumn dc;
dc = m_dataTable.Columns.Add(COL_DEPTH, typeof(Double)); dc.DefaultValue
= 0.00; dc.Caption = COL_DEPTH + " (ft)";
I want to display datavalue for this colum up to two decimal points
also i want to set the allignment of the Column Header to "Center" and
and for its Text to "Right"
Waiting for quick reply
m_strTableName = "AFE";
m_dataTable = new DataTable(m_strTableName);
DataColumn dc;
dc = m_dataTable.Columns.Add(COL_DEPTH, typeof(Double)); dc.DefaultValue
= 0.00; dc.Caption = COL_DEPTH + " (ft)";
I want to display datavalue for this colum up to two decimal points
also i want to set the allignment of the Column Header to "Center" and
and for its Text to "Right"
Waiting for quick reply