Hello Master,
i need somebody help,
here, i have a trouble in calculated total balance, you can see my pic trouble below:
and i have my balance same in the pic bellow :
i have a code :
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
MethodShowDataGridview();
}
}
private void MethodShowDataGridview()
{
string sqlGV;
sqlGV = "SELECT * FROM sampleValue";
SqlCommand cmdTable_income = new SqlCommand(sqlGV, objCONN);
SqlDataAdapter daTable_income = new SqlDataAdapter(cmdTable_income);
DataSet ds = new DataSet();
DataTable dt = new DataTable();
ds.Clear();
daTable_income.Fill(ds);
dt = ds.Tables[0];
GridView1.Dat ...
Go to the complete details ...