本文整理汇总了C#中Whitfieldcore.PopulateCashFlowSchedule方法的典型用法代码示例。如果您正苦于以下问题:C# Whitfieldcore.PopulateCashFlowSchedule方法的具体用法?C# Whitfieldcore.PopulateCashFlowSchedule怎么用?C# Whitfieldcore.PopulateCashFlowSchedule使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Whitfieldcore
的用法示例。
在下文中一共展示了Whitfieldcore.PopulateCashFlowSchedule方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: btnProdSchedule_Click
protected void btnProdSchedule_Click(object sender, EventArgs e)
{
Whitfieldcore wc = new Whitfieldcore();
DataSet ds = new DataSet();
if (!txtInitialPaymentDate.Text.ToString().Equals("") && !txtFinalPaymentDate.Text.ToString().Equals(""))
{
wc.RemoveCashFlowScheduledata(Convert.ToInt32(ViewState["twc_project_number"].ToString()));
ds = wc.GetSchedule(txtInitialPaymentDate.Text.ToString(), txtFinalPaymentDate.Text.ToString());
Int32 resultCount = 0;
if (ds.Tables.Count > 0)
resultCount = ds.Tables[0].Rows.Count;
DataTable myControls;
myControls = ds.Tables[0];
Int32 iCnt = 1;
if (myControls.Rows.Count > 0)
{
try
{
foreach (DataRow dRow in myControls.Rows)
{
Hashtable hash = wc.GetWeeksHash();
String _yr = dRow["dt2"] != DBNull.Value ? dRow["dt2"].ToString() : "";
String _mnth = dRow["dt1"] != DBNull.Value ? dRow["dt1"].ToString() : "";
foreach (string key in hash.Keys)
{
wc.PopulateCashFlowSchedule(Convert.ToInt32(ViewState["twc_project_number"].ToString()), _yr, _mnth + "(" + _yr + ")", hash[key].ToString(), iCnt);
}
iCnt++;
}
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
DisplaySchedulingGrid();
}
else
{
Response.Write("No Data");
}
}
else
{
Response.Write("Construction Start date and Construction End date should be Set");
}
}