本文整理汇总了C#中Whitfieldcore.GetSpecExcl方法的典型用法代码示例。如果您正苦于以下问题:C# Whitfieldcore.GetSpecExcl方法的具体用法?C# Whitfieldcore.GetSpecExcl怎么用?C# Whitfieldcore.GetSpecExcl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Whitfieldcore
的用法示例。
在下文中一共展示了Whitfieldcore.GetSpecExcl方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GeneratePDF
//.........这里部分代码省略.........
MyTerms = dsSpecs.Tables[0];
int icntamendments = 1;
foreach (DataRow dRow in MyTerms.Rows)
{
String _AmedmentsType = dRow["type"] == DBNull.Value ? "" : dRow["type"].ToString();
String _AmedmentNumber = dRow["amendment_number"] == DBNull.Value ? "" : dRow["amendment_number"].ToString();
String _AmedmentDate = dRow["amendment_date"] == DBNull.Value ? "" : dRow["amendment_date"].ToString();
String amendment_impact = dRow["amendment_impact"] == DBNull.Value ? "" : dRow["amendment_impact"].ToString();
//if (_AmedmentsType == "Amendment")
//{
if (amendment_impact.ToLower() == "yes")
{
Paragraph itemAmendment = new Paragraph(icntamendments.ToString() + ". " + _AmedmentsType + " " + _AmedmentNumber + " dated " + _AmedmentDate + " impacts this scope of work.", fonts[8]);
chapter.Add(itemAmendment);
//Amendment 001 dated 11/19/2010; This Amendment has no impact to this scope of work.
}
else
{
Paragraph itemAmendment = new Paragraph(icntamendments.ToString() + ". " + _AmedmentsType + " " + _AmedmentNumber + " dated " + _AmedmentDate + " does not impact this scope of work.", fonts[8]);
chapter.Add(itemAmendment);
}
//}
//else
//{
// Paragraph itemAmendment = new Paragraph(icntamendments.ToString() + ". " + _AmedmentsType + " " + _AmedmentNumber + " " + _AmedmentDate, fonts[8]);
// chapter.Add(itemAmendment);
//}
icntamendments++;
}
}
//Qualifications
DataSet dsConditions = _wc.GetSpecExcl(Convert.ToInt32(EstNum));
if (dsConditions.Tables[0].Rows.Count > 0)
{
Paragraph DrawingsPara = new Paragraph("\nQualifications:", fonts[14]);
chapter.Add(DrawingsPara);
int icnt = 1;
DataTable MyConditions;
MyConditions = dsConditions.Tables[0];
int tQualid = 0;
foreach (DataRow dRow in MyConditions.Rows)
{
if (Convert.ToInt32(dRow["qual_id"].ToString()) != tQualid)
{
Paragraph itemheading = new Paragraph(dRow["gName1"].ToString(), fonts[9]);
chapter.Add(itemheading);
}
String _cntlDesc = dRow["description"] == DBNull.Value ? "" : dRow["description"].ToString();
Paragraph itemTerms = new Paragraph(icnt.ToString() + ". " + _cntlDesc, fonts[8]);
chapter.Add(itemTerms);
tQualid = Convert.ToInt32(dRow["qual_id"].ToString());
icnt++;
}
}
// document.Add(chapter);
//************************Chapter for Itemized Scope of Work Ends
//*******Chapter Terms Begins********************
//ChapterSequence++;
Paragraph cTerms = new Paragraph("\nTerms", fonts[14]);
//Chapter chapterTerms = new Chapter(cTerms, ChapterSequence);
chapter.Add(cTerms);
//Chapter chapterTerms = new Chapter(cTerms, ChapterSequence);
示例2: BindGenCond
private void BindGenCond(Int32 EstNum)
{
DataSet dsTerms = new DataSet();
Whitfieldcore wUser = new Whitfieldcore();
dsTerms = wUser.GetSpecExcl(EstNum);
if (dsTerms.Tables[0].Rows.Count > 0)
{
this.PopulateDataGrid(dsTerms,grdQuals);
}
}