Data load correctlly at right place but all text showon ltr instead rtl, when i use normal viewer, all text is ok, but when i use fx viewer rtl option not applied on texts.
i want to create a gatepass card and print it.
i put the code here , please guide me
///////////////////////////////////
////// report cs code //////////
//////////////////////////////////
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Data;
using Stimulsoft.Controls;
using Stimulsoft.Base.Drawing;
using Stimulsoft.Report;
using Stimulsoft.Report.Dialogs;
using Stimulsoft.Report.Components;
namespace Reports
{
public class Report : Stimulsoft.Report.StiReport
{
public static System.Drawing.Color HexStringToColor(string hexColor)
{
hexColor = hexColor.Replace("#","");
// if (hexColor.Length != 6 || hexColor.Length != 8)
// {
// return Color.Empty;
// }
string a = "ff";
string r = null;
string g = null;
string b = null;
if (hexColor.Length == 6)
{
r = hexColor.Substring(0, 2);
g = hexColor.Substring(2, 2);
b = hexColor.Substring(4, 2);
}
else if (hexColor.Length == 8)
{
a = hexColor.Substring(0, 2);
r = hexColor.Substring(2, 2);
g = hexColor.Substring(4, 2);
b = hexColor.Substring(6, 2);
}
Color color = Color.Empty;
try
{
int ai = Int32.Parse(a, System.Globalization.NumberStyles.HexNumber);
int ri = Int32.Parse(r, System.Globalization.NumberStyles.HexNumber);
int gi = Int32.Parse(g, System.Globalization.NumberStyles.HexNumber);
int bi = Int32.Parse(b, System.Globalization.NumberStyles.HexNumber);
color = System.Drawing.Color.FromArgb(ai, ri, gi, bi);
}
catch
{
// you can choose whether to throw an exception
//throw new ArgumentException("Conversion failed.");
return Color.Empty;
}
return color;
}
public Report()
{
this.InitializeComponent();
}
#region StiReport Designer generated code - do not modify
public int hst_id;
public Stimulsoft.Report.Components.StiPage Page1;
public Stimulsoft.Report.Components.StiDataBand DataBand1;
public Stimulsoft.Report.Components.StiImage Image1;
public Stimulsoft.Report.Components.StiText Text1;
public Stimulsoft.Report.Components.StiText Text4;
public Stimulsoft.Report.Components.StiText Text5;
public Stimulsoft.Report.Components.StiText Text10;
public Stimulsoft.Report.Components.StiText Text12;
public Stimulsoft.Report.Components.StiText Text13;
public Stimulsoft.Report.Components.StiText Text14;
public Stimulsoft.Report.Components.StiText Text15;
public Stimulsoft.Report.Components.StiText Text16;
public Stimulsoft.Report.Components.StiText Text2;
public Stimulsoft.Report.Components.StiText Text3;
public Stimulsoft.Report.Components.StiText Text6;
public Stimulsoft.Report.Components.StiText Text7;
public Stimulsoft.Report.Components.StiText Text8;
public Stimulsoft.Report.Components.StiText Text9;
public Stimulsoft.Report.Components.StiText Text17;
public Stimulsoft.Report.Components.StiText Text18;
public Stimulsoft.Report.Components.StiText Text19;
public Stimulsoft.Report.Components.StiText Text20;
public Stimulsoft.Report.Components.StiText Text21;
public Stimulsoft.Report.Components.StiText Text22;
public Stimulsoft.Report.Components.StiText Text23;
public Stimulsoft.Report.Components.StiText Text24;
public Stimulsoft.Report.Components.StiText Text25;
public Stimulsoft.Report.Components.StiText Text26;
public Stimulsoft.Report.Components.StiText Text27;
public Stimulsoft.Report.Components.StiText Text28;
public Stimulsoft.Report.Components.StiText Text29;
public Stimulsoft.Report.Components.StiText Text11;
public Stimulsoft.Report.Components.StiText Text30;
public Stimulsoft.Report.Components.StiText Text31;
public Stimulsoft.Report.Components.StiImage Image2;
public Stimulsoft.Report.Components.StiText Text33;
public Stimulsoft.Report.Components.StiText Text34;
public Stimulsoft.Report.BarCodes.StiBarCode BarCode1;
public Stimulsoft.Report.Components.StiStartPointPrimitive StartPointPrimitive1;
public Stimulsoft.Report.Components.StiEndPointPrimitive EndPointPrimitive2;
public Stimulsoft.Report.Components.StiHorizontalLinePrimitive HorizontalLinePrimitive1;
public Stimulsoft.Report.Components.StiStartPointPrimitive StartPointPrimitive2;
public Stimulsoft.Report.Components.StiEndPointPrimitive EndPointPrimitive4;
public Stimulsoft.Report.Components.StiHorizontalLinePrimitive HorizontalLinePrimitive2;
public Stimulsoft.Report.Components.StiStartPointPrimitive StartPointPrimitive3;
public Stimulsoft.Report.Components.StiEndPointPrimitive EndPointPrimitive6;
public Stimulsoft.Report.Components.StiStartPointPrimitive StartPointPrimitive4;
public Stimulsoft.Report.Components.StiEndPointPrimitive EndPointPrimitive5;
public Stimulsoft.Report.Components.StiEndPointPrimitive EndPointPrimitive3;
public Stimulsoft.Report.Components.StiStartPointPrimitive StartPointPrimitive7;
public Stimulsoft.Report.Components.StiEndPointPrimitive EndPointPrimitive9;
public Stimulsoft.Report.Components.StiEndPointPrimitive EndPointPrimitive1;
public Stimulsoft.Report.Components.StiRectanglePrimitive RectanglePrimitive1;
public Stimulsoft.Report.Components.StiRectanglePrimitive RectanglePrimitive2;
public Stimulsoft.Report.Components.StiVerticalLinePrimitive VerticalLinePrimitive1;
public Stimulsoft.Report.Components.StiWatermark Page1_Watermark;
public Stimulsoft.Report.Print.StiPrinterSettings Report_PrinterSettings;
public Stimulsoft.Report.StiStyle StyleStyle1;
public v_FullPersonnelDataSource v_FullPersonnel;
public void Text1__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, @"1) استفاده از کارت تردد در محدوده سایت الزامی است.
2) هرگونه چاپ و تکثیر و سوء استفاده از این کارت پیگرد قانونی دارد.
3) پس از اتمام قرارداد این کارت بایستی به حراست OIEC عودت داده شود.
4) در صورت مفقود شدن کارت مبلغ 200.000 ریال به عنوان جریمه برای صدور کارت جدید دریافت میگردد.", true);
}
public void Text4__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.FirstName + " " + v_FullPersonnel.LastName, true);
}
public void Text5__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Name:";
}
public void Text10__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, @"1- Please attach this card while operating on site.
2- Duplication of this card is prohibited and is subject to legal prosecution.
3-Upon termination of the employment this card is to be returned to the OIEC security department.
4- In case of loss, the holder is entitled to pay RLS 200.000 for renwal.", true);
}
public void Text12__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "تاریخ انقضاء:";
}
public void Text13__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.CompanyNameEn, true);
}
public void Text14__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Company: ";
}
public void Text15__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.CompanyNameFa, true);
}
public void Text16__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "شرکت:";
}
public void Text2__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.FirstNameFa+ " " + v_FullPersonnel.LastNameFa, true);
}
public void Text3__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "نام نام خانوادگی:";
}
public void Text6__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.JobTitleFa, true);
}
public void Text7__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "شغل / سمت :";
}
public void Text8__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.JobTitleEn, true);
}
public void Text9__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Job Title:";
}
public void Text17__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.ShSh, true);
}
public void Text18__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "ID / Passport:";
}
public void Text19__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.ShSh, true);
}
public void Text20__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "ش ش / پاسپورت:";
}
public void Text21__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.Camp, true);
}
public void Text22__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Camp:";
}
public void Text23__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.IDNumber, true);
}
public void Text24__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "IDNumber:";
}
public void Text25__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.CampFa, true);
}
public void Text26__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "کمپ:";
}
public void Text27__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.IDNumber, true);
}
public void Text28__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "کد ملی:";
}
public void Text29__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "CONSORTIUM";
}
public void Text11__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, v_FullPersonnel.ExpireDate, true);
}
public void Text30__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = " GATE PASS CARD ";
}
public void Text31__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = " South Pars Gas Field Development Phases 17&18 ";
}
public void Text33__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "NOTICE";
}
public void Text34__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "واحد\r\nصدور کارت";
}
public void BarCode1__GetBarCode(object sender, Stimulsoft.Report.Events.StiValueEventArgs e)
{
e.Value = v_FullPersonnel.GatePassSN;
}
private void InitializeComponent()
{
this.v_FullPersonnel = new v_FullPersonnelDataSource();
this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "hst_id", "hst_id", "", typeof(int), "", false, false, true));
this.NeedsCompiling = false;
// Variables init
// Variables init
this.hst_id = 0;
this.EngineVersion = Stimulsoft.Report.Engine.StiEngineVersion.EngineV2;
this.ReferencedAssemblies = new System.String[] {
"System.Dll",
"System.Drawing.Dll",
"System.Windows.Forms.Dll",
"System.Data.Dll",
"System.Xml.Dll",
"Stimulsoft.Controls.Dll",
"Stimulsoft.Base.Dll",
"Stimulsoft.Report.Dll"};
this.ReportAlias = "Report";
//
// ReportChanged
//
this.ReportChanged = new DateTime(2011, 1, 13, 11, 18, 53, 99);
//
// ReportCreated
//
this.ReportCreated = new DateTime(2011, 1, 9, 16, 34, 33, 0);
this.ReportFile = "D:\\OIEC\\project\\application\\portal applications\\SIMS\\report_sp1718\\card_per\\card." +
"mrt";
this.ReportGuid = "b6154f33144843d48af3cad7df25af49";
this.ReportName = "Report";
this.ReportUnit = Stimulsoft.Report.StiReportUnitType.Millimeters;
this.ScriptLanguage = Stimulsoft.Report.StiReportLanguageType.CSharp;
//
// Page1
//
this.Page1 = new Stimulsoft.Report.Components.StiPage();
this.Page1.Guid = "059b8fb82de54e06b72d05e9f694002a";
this.Page1.Name = "Page1";
this.Page1.PageHeight = 297;
this.Page1.PageWidth = 210;
this.Page1.PaperSize = System.Drawing.Printing.PaperKind.A4;
this.Page1.RightToLeft = true;
this.Page1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 2, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Page1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// DataBand1
//
this.DataBand1 = new Stimulsoft.Report.Components.StiDataBand();
this.DataBand1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 4, 190, 61.66);
this.DataBand1.DataSourceName = "v_FullPersonnel";
this.DataBand1.Name = "DataBand1";
this.DataBand1.RightToLeft = true;
this.DataBand1.Sort = new System.String[0];
this.DataBand1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.DataBand1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.DataBand1.BusinessObjectGuid = null;
//
// Image1
//
this.Image1 = new Stimulsoft.Report.Components.StiImage();
this.Image1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 20.86, 24.48);
this.Image1.DataColumn = "v_FullPersonnel.Photo";
this.Image1.Guid = "4931f47b202443bda838b04f8875aefb";
this.Image1.Name = "Image1";
this.Image1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Image1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Image1.Image = null;
this.Image1.Interaction = null;
//
// Text1
//
this.Text1 = new Stimulsoft.Report.Components.StiText();
this.Text1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(97.6, 8.16, 90.9, 25.4);
this.Text1.Guid = "43b10fb2de64441a9f6f65db0d5a167c";
this.Text1.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text1.Name = "Text1";
this.Text1.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text1__GetValue);
this.Text1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text1.Font = new System.Drawing.Font("Nazanin", 9F);
this.Text1.Interaction = null;
this.Text1.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text1.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text1.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(true, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text4
//
this.Text4 = new Stimulsoft.Report.Components.StiText();
this.Text4.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(9.62, 29.56, 35.56, 5.08);
this.Text4.Guid = "0e4925cda74c4f3b8e7ed0162c011d92";
this.Text4.Name = "Text4";
this.Text4.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text4__GetValue);
this.Text4.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text4.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text4.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
this.Text4.Interaction = null;
this.Text4.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text4.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text4.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text5
//
this.Text5 = new Stimulsoft.Report.Components.StiText();
this.Text5.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 29.56, 10.16, 5.08);
this.Text5.Guid = "53bc04b3fc7b4e388834be7473e0c0bc";
this.Text5.Name = "Text5";
this.Text5.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text5__GetValue);
this.Text5.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text5.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text5.Font = new System.Drawing.Font("Arial", 8F);
this.Text5.Interaction = null;
this.Text5.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text5.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text5.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text10
//
this.Text10 = new Stimulsoft.Report.Components.StiText();
this.Text10.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(97.06, 31.56, 91.44, 25.4);
this.Text10.Guid = "fe7ac741168d4dde8920befe387bda85";
this.Text10.Name = "Text10";
this.Text10.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text10__GetValue);
this.Text10.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text10.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text10.Font = new System.Drawing.Font("Arial", 8F);
this.Text10.Interaction = null;
this.Text10.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text10.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text10.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text12
//
this.Text12 = new Stimulsoft.Report.Components.StiText();
this.Text12.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(78.2, 14.9, 15.24, 4.5);
this.Text12.Guid = "26db54b8d6df408fa00eff6a463efdbe";
this.Text12.Name = "Text12";
this.Text12.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text12__GetValue);
this.Text12.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text12.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text12.Font = new System.Drawing.Font("B Nazanin", 10F);
this.Text12.Interaction = null;
this.Text12.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text12.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text12.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(true, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text13
//
this.Text13 = new Stimulsoft.Report.Components.StiText();
this.Text13.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.24, 25, 33.02, 3.08);
this.Text13.Guid = "f021720b91db440c830e1d7c708b2519";
this.Text13.Name = "Text13";
this.Text13.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text13__GetValue);
this.Text13.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text13.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text13.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
this.Text13.Interaction = null;
this.Text13.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text13.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text13.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text14
//
this.Text14 = new Stimulsoft.Report.Components.StiText();
this.Text14.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 25, 22.86, 5.08);
this.Text14.Guid = "5eee6f977a974eeab5e1621a342ff961";
this.Text14.Name = "Text14";
this.Text14.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text14__GetValue);
this.Text14.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text14.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text14.Font = new System.Drawing.Font("Arial", 8F);
this.Text14.Interaction = null;
this.Text14.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text14.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text14.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text15
//
this.Text15 = new Stimulsoft.Report.Components.StiText();
this.Text15.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(49, 24.48, 36.48, 5.08);
this.Text15.Guid = "ea4fe93e517740bda391632a8b9b3310";
this.Text15.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text15.Name = "Text15";
this.Text15.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text15__GetValue);
this.Text15.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text15.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text15.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text15.Interaction = null;
this.Text15.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text15.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text15.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text16
//
this.Text16 = new Stimulsoft.Report.Components.StiText();
this.Text16.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(84.36, 24.48, 10.16, 5.08);
this.Text16.Guid = "df87c80c3e32406ba8cf882099a96172";
this.Text16.Name = "Text16";
this.Text16.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text16__GetValue);
this.Text16.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text16.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text16.Font = new System.Drawing.Font("B Nazanin", 10F);
this.Text16.Interaction = null;
this.Text16.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text16.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text16.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(true, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text2
//
this.Text2 = new Stimulsoft.Report.Components.StiText();
this.Text2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(41.18, 29.56, 33.02, 5.08);
this.Text2.Guid = "cc402481384d414aa4418503658a3371";
this.Text2.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text2.Name = "Text2";
this.Text2.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text2__GetValue);
this.Text2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text2.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text2.Interaction = null;
this.Text2.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text2.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text2.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text3
//
this.Text3 = new Stimulsoft.Report.Components.StiText();
this.Text3.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(74.2, 29.56, 20.32, 5.08);
this.Text3.Guid = "6a38518db91a49fa8366fca44f871bf1";
this.Text3.Name = "Text3";
this.Text3.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text3__GetValue);
this.Text3.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text3.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text3.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text3.Interaction = null;
this.Text3.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text3.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text3.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(true, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text6
//
this.Text6 = new Stimulsoft.Report.Components.StiText();
this.Text6.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(44.26, 34.64, 32.48, 5.62);
this.Text6.Guid = "2f251002eb6141a4abf656d2a38750ba";
this.Text6.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text6.Name = "Text6";
this.Text6.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text6__GetValue);
this.Text6.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text6.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text6.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text6.Interaction = null;
this.Text6.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text6.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text6.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text7
//
this.Text7 = new Stimulsoft.Report.Components.StiText();
this.Text7.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(76.74, 34.64, 17.78, 7.62);
this.Text7.Guid = "0cb991c4871341bc85546c0e3a6a6fae";
this.Text7.Name = "Text7";
this.Text7.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text7__GetValue);
this.Text7.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text7.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text7.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text7.Interaction = null;
this.Text7.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text7.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text7.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(true, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text8
//
this.Text8 = new Stimulsoft.Report.Components.StiText();
this.Text8.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12.7, 34.64, 30.48, 7.62);
this.Text8.Guid = "2a42a3e0dc21479b8489dfd198b6b8e0";
this.Text8.Name = "Text8";
this.Text8.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text8__GetValue);
this.Text8.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text8.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text8.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
this.Text8.Interaction = null;
this.Text8.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text8.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text8.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text9
//
this.Text9 = new Stimulsoft.Report.Components.StiText();
this.Text9.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 34.64, 12.7, 3.62);
this.Text9.Guid = "e14b6b6fe06348d39c8e65802871ac6e";
this.Text9.Name = "Text9";
this.Text9.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text9__GetValue);
this.Text9.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text9.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text9.Font = new System.Drawing.Font("Arial", 8F);
this.Text9.Interaction = null;
this.Text9.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text9.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text9.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text17
//
this.Text17 = new Stimulsoft.Report.Components.StiText();
this.Text17.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(17.78, 40.26, 21.24, 5.08);
this.Text17.Guid = "d38e6acd08054b61bc3d828fa6088eb4";
this.Text17.Name = "Text17";
this.Text17.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text17__GetValue);
this.Text17.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text17.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text17.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
this.Text17.Interaction = null;
this.Text17.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text17.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text17.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text18
//
this.Text18 = new Stimulsoft.Report.Components.StiText();
this.Text18.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 40.26, 17.78, 5.08);
this.Text18.Guid = "cc62eac5b6c44d509e978059b600d71c";
this.Text18.Name = "Text18";
this.Text18.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text18__GetValue);
this.Text18.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text18.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text18.Font = new System.Drawing.Font("Arial", 8F);
this.Text18.Interaction = null;
this.Text18.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text18.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text18.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text19
//
this.Text19 = new Stimulsoft.Report.Components.StiText();
this.Text19.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(41.18, 40.26, 30.48, 5.08);
this.Text19.Guid = "c2add4a1c314408bb2bbaae8a04da9c1";
this.Text19.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text19.Name = "Text19";
this.Text19.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text19__GetValue);
this.Text19.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text19.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text19.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text19.Interaction = null;
this.Text19.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text19.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text19.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text20
//
this.Text20 = new Stimulsoft.Report.Components.StiText();
this.Text20.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(71.66, 40, 22.86, 5.08);
this.Text20.Guid = "a214a404c80749dda3c3866cfa7bad0d";
this.Text20.Name = "Text20";
this.Text20.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text20__GetValue);
this.Text20.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text20.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text20.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text20.Interaction = null;
this.Text20.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text20.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text20.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(true, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text21
//
this.Text21 = new Stimulsoft.Report.Components.StiText();
this.Text21.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(10.16, 45.34, 25.24, 5.62);
this.Text21.Guid = "e702f4c3d12d41d089c891d4ca0917f2";
this.Text21.Name = "Text21";
this.Text21.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text21__GetValue);
this.Text21.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text21.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text21.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
this.Text21.Interaction = null;
this.Text21.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text21.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text21.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text22
//
this.Text22 = new Stimulsoft.Report.Components.StiText();
this.Text22.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 45.34, 10.16, 7.62);
this.Text22.Guid = "cdbf38be712d40aabf0d3ed47c3356bc";
this.Text22.Name = "Text22";
this.Text22.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text22__GetValue);
this.Text22.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text22.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text22.Font = new System.Drawing.Font("Arial", 8F);
this.Text22.Interaction = null;
this.Text22.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text22.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text22.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text23
//
this.Text23 = new Stimulsoft.Report.Components.StiText();
this.Text23.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.24, 50.96, 23.24, 5.08);
this.Text23.Guid = "eb35aee7e1154c07afd11fb40995b214";
this.Text23.Name = "Text23";
this.Text23.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text23__GetValue);
this.Text23.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text23.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text23.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold);
this.Text23.Interaction = null;
this.Text23.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text23.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text23.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text24
//
this.Text24 = new Stimulsoft.Report.Components.StiText();
this.Text24.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 50.96, 15.24, 5.08);
this.Text24.Guid = "d769c79df96e425faf5b61ddf22edd6b";
this.Text24.Name = "Text24";
this.Text24.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text24__GetValue);
this.Text24.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text24.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text24.Font = new System.Drawing.Font("Arial", 8F);
this.Text24.Interaction = null;
this.Text24.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text24.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text24.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text25
//
this.Text25 = new Stimulsoft.Report.Components.StiText();
this.Text25.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(47.34, 45.34, 40.48, 5.62);
this.Text25.Guid = "da7ea781f4a84936bd12284fdbf5103f";
this.Text25.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text25.Name = "Text25";
this.Text25.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text25__GetValue);
this.Text25.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text25.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text25.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text25.Interaction = null;
this.Text25.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text25.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text25.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text26
//
this.Text26 = new Stimulsoft.Report.Components.StiText();
this.Text26.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(84.36, 45.34, 10.16, 7.62);
this.Text26.Guid = "b1b2a361885a4559ba907186d74832ea";
this.Text26.Name = "Text26";
this.Text26.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text26__GetValue);
this.Text26.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text26.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text26.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text26.Interaction = null;
this.Text26.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text26.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text26.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(true, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text27
//
this.Text27 = new Stimulsoft.Report.Components.StiText();
this.Text27.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(53.34, 50, 30.48, 5.08);
this.Text27.Guid = "c9e923bae5274f49b22ca929b700a0b4";
this.Text27.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text27.Name = "Text27";
this.Text27.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text27__GetValue);
this.Text27.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text27.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text27.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text27.Interaction = null;
this.Text27.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text27.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text27.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text28
//
this.Text28 = new Stimulsoft.Report.Components.StiText();
this.Text28.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(84.36, 50, 10.16, 5.08);
this.Text28.Guid = "cc0dba047a8b489b8078fbbe271d2afb";
this.Text28.Name = "Text28";
this.Text28.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text28__GetValue);
this.Text28.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text28.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text28.Font = new System.Drawing.Font("B Nazanin", 10F, System.Drawing.FontStyle.Bold);
this.Text28.Interaction = null;
this.Text28.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text28.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.DarkGoldenrod);
this.Text28.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(true, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text29
//
this.Text29 = new Stimulsoft.Report.Components.StiText();
this.Text29.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22, 13.24, 40.1, 5.62);
this.Text29.Guid = "6b9c6a66205b46bea763c2f5896c6cb1";
this.Text29.Name = "Text29";
this.Text29.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text29__GetValue);
this.Text29.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text29.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text29.Font = new System.Drawing.Font("Verdana", 14F, System.Drawing.FontStyle.Bold);
this.Text29.Interaction = null;
this.Text29.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text29.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.BurlyWood);
this.Text29.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text11
//
this.Text11 = new Stimulsoft.Report.Components.StiText();
this.Text11.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(67, 18.86, 25.4, 7.62);
this.Text11.Guid = "703e2056ab6a4501bfc5a29944253dd7";
this.Text11.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text11.Name = "Text11";
this.Text11.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text11__GetValue);
this.Text11.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text11.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text11.Font = new System.Drawing.Font("B Nazanin", 14F, System.Drawing.FontStyle.Bold);
this.Text11.Interaction = null;
this.Text11.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text11.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Red);
this.Text11.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text30
//
this.Text30 = new Stimulsoft.Report.Components.StiText();
this.Text30.AllowHtmlTags = true;
this.Text30.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21, 19, 44, 6);
this.Text30.Name = "Text30";
this.Text30.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text30__GetValue);
this.Text30.TextQuality = Stimulsoft.Report.Components.StiTextQuality.Wysiwyg;
this.Text30.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text30.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text30.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Bold);
this.Text30.Guid = null;
this.Text30.Interaction = null;
this.Text30.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text30.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.White);
this.Text30.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text31
//
this.Text31 = new Stimulsoft.Report.Components.StiText();
this.Text31.AllowHtmlTags = true;
this.Text31.CanGrow = true;
this.Text31.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 55, 95.2, 5);
this.Text31.Guid = "870910e073684b8fa35f9d6eadd0004c";
this.Text31.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text31.Name = "Text31";
this.Text31.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text31__GetValue);
this.Text31.TextQuality = Stimulsoft.Report.Components.StiTextQuality.Wysiwyg;
this.Text31.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text31.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text31.Font = new System.Drawing.Font("Times New Roman", 13F, System.Drawing.FontStyle.Bold);
this.Text31.Interaction = null;
this.Text31.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text31.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.White);
this.Text31.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Image2
//
this.Image2 = new Stimulsoft.Report.Components.StiImage();
this.Image2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(23, 2, 38, 12);
this.Image2.Image = StiImageConverter.StringToImage("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");
this.Image2.Name = "Image2";
this.Image2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Image2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Image2.Guid = null;
this.Image2.Interaction = null;
//
// Text33
//
this.Text33 = new Stimulsoft.Report.Components.StiText();
this.Text33.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(128, 2, 16, 6);
this.Text33.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text33.Name = "Text33";
this.Text33.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text33__GetValue);
this.Text33.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text33.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text33.Font = new System.Drawing.Font("Arial", 12F);
this.Text33.Guid = null;
this.Text33.Interaction = null;
this.Text33.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text33.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Red);
this.Text33.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text34
//
this.Text34 = new Stimulsoft.Report.Components.StiText();
this.Text34.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(102, 4, 14, 10);
this.Text34.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text34.Name = "Text34";
this.Text34.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text34__GetValue);
this.Text34.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.Text34.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text34.Font = new System.Drawing.Font("B Nazanin", 8F, System.Drawing.FontStyle.Bold);
this.Text34.Guid = null;
this.Text34.Interaction = null;
this.Text34.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text34.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text34.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(true, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// BarCode1
//
this.BarCode1 = new Stimulsoft.Report.BarCodes.StiBarCode();
this.BarCode1.AutoScale = true;
this.BarCode1.BackColor = System.Drawing.Color.Transparent;
this.BarCode1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(62, 2, 32, 14);
this.BarCode1.GetBarCode += new Stimulsoft.Report.Events.StiValueEventHandler(this.BarCode1__GetBarCode);
this.BarCode1.ForeColor = System.Drawing.Color.Black;
this.BarCode1.HorAlignment = Stimulsoft.Base.Drawing.StiHorAlignment.Center;
this.BarCode1.Name = "BarCode1";
this.BarCode1.BarCodeType = new Stimulsoft.Report.BarCodes.StiCode39BarCodeType(13F, 1F, 2.2F, Stimulsoft.Report.BarCodes.StiCheckSum.Yes);
this.BarCode1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.BarCode1.Font = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Pixel);
this.BarCode1.Guid = null;
this.BarCode1.Interaction = null;
//
// StartPointPrimitive1
//
this.StartPointPrimitive1 = new Stimulsoft.Report.Components.StiStartPointPrimitive();
this.StartPointPrimitive1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 0, 0);
this.StartPointPrimitive1.Name = "StartPointPrimitive1";
this.StartPointPrimitive1.ReferenceToGuid = "4d619cae6c2e4b0d9afc084b6c9a46a8";
this.StartPointPrimitive1.Guid = null;
this.StartPointPrimitive1.Interaction = null;
//
// EndPointPrimitive2
//
this.EndPointPrimitive2 = new Stimulsoft.Report.Components.StiEndPointPrimitive();
this.EndPointPrimitive2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(95.1, 60, 0, 0);
this.EndPointPrimitive2.Name = "EndPointPrimitive2";
this.EndPointPrimitive2.ReferenceToGuid = "4d619cae6c2e4b0d9afc084b6c9a46a8";
this.EndPointPrimitive2.Guid = null;
this.EndPointPrimitive2.Interaction = null;
//
// HorizontalLinePrimitive1
//
this.HorizontalLinePrimitive1 = new Stimulsoft.Report.Components.StiHorizontalLinePrimitive();
this.HorizontalLinePrimitive1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 24.48, 94.52, 0.254);
this.HorizontalLinePrimitive1.Color = System.Drawing.Color.Black;
this.HorizontalLinePrimitive1.Name = "HorizontalLinePrimitive1";
this.HorizontalLinePrimitive1.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLinePrimitive1.Guid = null;
this.HorizontalLinePrimitive1.Interaction = null;
this.HorizontalLinePrimitive1.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
//
// StartPointPrimitive2
//
this.StartPointPrimitive2 = new Stimulsoft.Report.Components.StiStartPointPrimitive();
this.StartPointPrimitive2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(96, 0, 0, 0);
this.StartPointPrimitive2.Name = "StartPointPrimitive2";
this.StartPointPrimitive2.ReferenceToGuid = "29cbbe961f884a929ae9b4782a5db06c";
this.StartPointPrimitive2.Guid = null;
this.StartPointPrimitive2.Interaction = null;
//
// EndPointPrimitive4
//
this.EndPointPrimitive4 = new Stimulsoft.Report.Components.StiEndPointPrimitive();
this.EndPointPrimitive4.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(190, 60, 0, 0);
this.EndPointPrimitive4.Name = "EndPointPrimitive4";
this.EndPointPrimitive4.ReferenceToGuid = "29cbbe961f884a929ae9b4782a5db06c";
this.EndPointPrimitive4.Guid = null;
this.EndPointPrimitive4.Interaction = null;
//
// HorizontalLinePrimitive2
//
this.HorizontalLinePrimitive2 = new Stimulsoft.Report.Components.StiHorizontalLinePrimitive();
this.HorizontalLinePrimitive2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(100, 31, 84, 0.254);
this.HorizontalLinePrimitive2.Color = System.Drawing.Color.Black;
this.HorizontalLinePrimitive2.Name = "HorizontalLinePrimitive2";
this.HorizontalLinePrimitive2.Style = Stimulsoft.Base.Drawing.StiPenStyle.Dash;
this.HorizontalLinePrimitive2.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLinePrimitive2.Guid = null;
this.HorizontalLinePrimitive2.Interaction = null;
this.HorizontalLinePrimitive2.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
//
// StartPointPrimitive3
//
this.StartPointPrimitive3 = new Stimulsoft.Report.Components.StiStartPointPrimitive();
this.StartPointPrimitive3.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21, 0, 0, 0);
this.StartPointPrimitive3.Name = "StartPointPrimitive3";
this.StartPointPrimitive3.ReferenceToGuid = "1a71ab4f7bbb4cbf858ab7e86af93c64";
this.StartPointPrimitive3.Guid = null;
this.StartPointPrimitive3.Interaction = null;
//
// EndPointPrimitive6
//
this.EndPointPrimitive6 = new Stimulsoft.Report.Components.StiEndPointPrimitive();
this.EndPointPrimitive6.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.25, 24.48, 0, 0);
this.EndPointPrimitive6.Name = "EndPointPrimitive6";
this.EndPointPrimitive6.ReferenceToGuid = "1a71ab4f7bbb4cbf858ab7e86af93c64";
this.EndPointPrimitive6.Guid = null;
this.EndPointPrimitive6.Interaction = null;
this.DataBand1.DataRelationName = null;
this.DataBand1.Guid = null;
this.DataBand1.Interaction = null;
this.DataBand1.MasterComponent = null;
//
// StartPointPrimitive4
//
this.StartPointPrimitive4 = new Stimulsoft.Report.Components.StiStartPointPrimitive();
this.StartPointPrimitive4.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(609.6, 10.16, 0, 0);
this.StartPointPrimitive4.Name = "StartPointPrimitive4";
this.StartPointPrimitive4.ReferenceToGuid = "9dcff7f729b44d7aacd9cdd47a2c1c0f";
this.StartPointPrimitive4.Guid = null;
this.StartPointPrimitive4.Interaction = null;
//
// EndPointPrimitive5
//
this.EndPointPrimitive5 = new Stimulsoft.Report.Components.StiEndPointPrimitive();
this.EndPointPrimitive5.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(609.6, 35.05, 0, 0);
this.EndPointPrimitive5.Name = "EndPointPrimitive5";
this.EndPointPrimitive5.ReferenceToGuid = "9dcff7f729b44d7aacd9cdd47a2c1c0f";
this.EndPointPrimitive5.Guid = null;
this.EndPointPrimitive5.Interaction = null;
//
// EndPointPrimitive3
//
this.EndPointPrimitive3 = new Stimulsoft.Report.Components.StiEndPointPrimitive();
this.EndPointPrimitive3.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(609.85, 34.04, 0, 0);
this.EndPointPrimitive3.Guid = "fde370d0845b454f80f7e0d9a7c90fdf";
this.EndPointPrimitive3.Name = "EndPointPrimitive3";
this.EndPointPrimitive3.ReferenceToGuid = "9dcff7f729b44d7aacd9cdd47a2c1c0f";
this.EndPointPrimitive3.Interaction = null;
//
// StartPointPrimitive7
//
this.StartPointPrimitive7 = new Stimulsoft.Report.Components.StiStartPointPrimitive();
this.StartPointPrimitive7.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(609.6, 10.16, 0, 0);
this.StartPointPrimitive7.Name = "StartPointPrimitive7";
this.StartPointPrimitive7.ReferenceToGuid = "cdf004e79baa4302a126f1232dd9cb6f";
this.StartPointPrimitive7.Guid = null;
this.StartPointPrimitive7.Interaction = null;
//
// EndPointPrimitive9
//
this.EndPointPrimitive9 = new Stimulsoft.Report.Components.StiEndPointPrimitive();
this.EndPointPrimitive9.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(609.6, 35.05, 0, 0);
this.EndPointPrimitive9.Name = "EndPointPrimitive9";
this.EndPointPrimitive9.ReferenceToGuid = "cdf004e79baa4302a126f1232dd9cb6f";
this.EndPointPrimitive9.Guid = null;
this.EndPointPrimitive9.Interaction = null;
//
// EndPointPrimitive1
//
this.EndPointPrimitive1 = new Stimulsoft.Report.Components.StiEndPointPrimitive();
this.EndPointPrimitive1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(609.85, 34.04, 0, 0);
this.EndPointPrimitive1.Guid = "986bc363c60b4605b56e76d9e624009d";
this.EndPointPrimitive1.Name = "EndPointPrimitive1";
this.EndPointPrimitive1.ReferenceToGuid = "cdf004e79baa4302a126f1232dd9cb6f";
this.EndPointPrimitive1.Interaction = null;
//
// RectanglePrimitive1
//
this.RectanglePrimitive1 = new Stimulsoft.Report.Components.StiRectanglePrimitive();
this.RectanglePrimitive1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 4, 95.1, 60);
this.RectanglePrimitive1.Color = System.Drawing.Color.Black;
this.RectanglePrimitive1.Guid = "4d619cae6c2e4b0d9afc084b6c9a46a8";
this.RectanglePrimitive1.Name = "RectanglePrimitive1";
this.RectanglePrimitive1.Interaction = null;
//
// RectanglePrimitive2
//
this.RectanglePrimitive2 = new Stimulsoft.Report.Components.StiRectanglePrimitive();
this.RectanglePrimitive2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(96, 4, 94, 60);
this.RectanglePrimitive2.Color = System.Drawing.Color.Black;
this.RectanglePrimitive2.Guid = "29cbbe961f884a929ae9b4782a5db06c";
this.RectanglePrimitive2.Name = "RectanglePrimitive2";
this.RectanglePrimitive2.Interaction = null;
//
// VerticalLinePrimitive1
//
this.VerticalLinePrimitive1 = new Stimulsoft.Report.Components.StiVerticalLinePrimitive();
this.VerticalLinePrimitive1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21, 4, 0.254, 24.48);
this.VerticalLinePrimitive1.Color = System.Drawing.Color.Black;
this.VerticalLinePrimitive1.Guid = "1a71ab4f7bbb4cbf858ab7e86af93c64";
this.VerticalLinePrimitive1.Name = "VerticalLinePrimitive1";
this.VerticalLinePrimitive1.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.VerticalLinePrimitive1.Interaction = null;
this.VerticalLinePrimitive1.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.Page1.ExcelSheetValue = null;
this.Page1.Interaction = null;
this.Page1.Margins = new Stimulsoft.Report.Components.StiMargins(10, 10, 10, 10);
this.Page1_Watermark = new Stimulsoft.Report.Components.StiWatermark();
this.Page1_Watermark.Font = new System.Drawing.Font("Arial", 100F);
this.Page1_Watermark.Image = null;
this.Page1_Watermark.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.FromArgb(50, 0, 0, 0));
this.Report_PrinterSettings = new Stimulsoft.Report.Print.StiPrinterSettings();
//
// StyleStyle1
//
this.StyleStyle1 = new Stimulsoft.Report.StiStyle();
this.StyleStyle1.Name = "Style1";
this.StyleStyle1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black));
this.StyleStyle1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.StyleStyle1.Font = new System.Drawing.Font("Arial", 8F);
this.StyleStyle1.Image = null;
this.StyleStyle1.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.PrinterSettings = this.Report_PrinterSettings;
this.Page1.Report = this;
this.Page1.Watermark = this.Page1_Watermark;
this.DataBand1.Page = this.Page1;
this.DataBand1.Parent = this.Page1;
this.Image1.Page = this.Page1;
this.Image1.Parent = this.DataBand1;
this.Text1.Page = this.Page1;
this.Text1.Parent = this.DataBand1;
this.Text4.Page = this.Page1;
this.Text4.Parent = this.DataBand1;
this.Text5.Page = this.Page1;
this.Text5.Parent = this.DataBand1;
this.Text10.Page = this.Page1;
this.Text10.Parent = this.DataBand1;
this.Text12.Page = this.Page1;
this.Text12.Parent = this.DataBand1;
this.Text13.Page = this.Page1;
this.Text13.Parent = this.DataBand1;
this.Text14.Page = this.Page1;
this.Text14.Parent = this.DataBand1;
this.Text15.Page = this.Page1;
this.Text15.Parent = this.DataBand1;
this.Text16.Page = this.Page1;
this.Text16.Parent = this.DataBand1;
this.Text2.Page = this.Page1;
this.Text2.Parent = this.DataBand1;
this.Text3.Page = this.Page1;
this.Text3.Parent = this.DataBand1;
this.Text6.Page = this.Page1;
this.Text6.Parent = this.DataBand1;
this.Text7.Page = this.Page1;
this.Text7.Parent = this.DataBand1;
this.Text8.Page = this.Page1;
this.Text8.Parent = this.DataBand1;
this.Text9.Page = this.Page1;
this.Text9.Parent = this.DataBand1;
this.Text17.Page = this.Page1;
this.Text17.Parent = this.DataBand1;
this.Text18.Page = this.Page1;
this.Text18.Parent = this.DataBand1;
this.Text19.Page = this.Page1;
this.Text19.Parent = this.DataBand1;
this.Text20.Page = this.Page1;
this.Text20.Parent = this.DataBand1;
this.Text21.Page = this.Page1;
this.Text21.Parent = this.DataBand1;
this.Text22.Page = this.Page1;
this.Text22.Parent = this.DataBand1;
this.Text23.Page = this.Page1;
this.Text23.Parent = this.DataBand1;
this.Text24.Page = this.Page1;
this.Text24.Parent = this.DataBand1;
this.Text25.Page = this.Page1;
this.Text25.Parent = this.DataBand1;
this.Text26.Page = this.Page1;
this.Text26.Parent = this.DataBand1;
this.Text27.Page = this.Page1;
this.Text27.Parent = this.DataBand1;
this.Text28.Page = this.Page1;
this.Text28.Parent = this.DataBand1;
this.Text29.Page = this.Page1;
this.Text29.Parent = this.DataBand1;
this.Text11.Page = this.Page1;
this.Text11.Parent = this.DataBand1;
this.Text30.Page = this.Page1;
this.Text30.Parent = this.DataBand1;
this.Text31.Page = this.Page1;
this.Text31.Parent = this.DataBand1;
this.Image2.Page = this.Page1;
this.Image2.Parent = this.DataBand1;
this.Text33.Page = this.Page1;
this.Text33.Parent = this.DataBand1;
this.Text34.Page = this.Page1;
this.Text34.Parent = this.DataBand1;
this.BarCode1.Page = this.Page1;
this.BarCode1.Parent = this.DataBand1;
this.StartPointPrimitive1.Page = this.Page1;
this.StartPointPrimitive1.Parent = this.DataBand1;
this.EndPointPrimitive2.Page = this.Page1;
this.EndPointPrimitive2.Parent = this.DataBand1;
this.HorizontalLinePrimitive1.Page = this.Page1;
this.HorizontalLinePrimitive1.Parent = this.DataBand1;
this.StartPointPrimitive2.Page = this.Page1;
this.StartPointPrimitive2.Parent = this.DataBand1;
this.EndPointPrimitive4.Page = this.Page1;
this.EndPointPrimitive4.Parent = this.DataBand1;
this.HorizontalLinePrimitive2.Page = this.Page1;
this.HorizontalLinePrimitive2.Parent = this.DataBand1;
this.StartPointPrimitive3.Page = this.Page1;
this.StartPointPrimitive3.Parent = this.DataBand1;
this.EndPointPrimitive6.Page = this.Page1;
this.EndPointPrimitive6.Parent = this.DataBand1;
this.StartPointPrimitive4.Page = this.Page1;
this.StartPointPrimitive4.Parent = this.Page1;
this.EndPointPrimitive5.Page = this.Page1;
this.EndPointPrimitive5.Parent = this.Page1;
this.EndPointPrimitive3.Page = this.Page1;
this.EndPointPrimitive3.Parent = this.Page1;
this.StartPointPrimitive7.Page = this.Page1;
this.StartPointPrimitive7.Parent = this.Page1;
this.EndPointPrimitive9.Page = this.Page1;
this.EndPointPrimitive9.Parent = this.Page1;
this.EndPointPrimitive1.Page = this.Page1;
this.EndPointPrimitive1.Parent = this.Page1;
this.RectanglePrimitive1.Page = this.Page1;
this.RectanglePrimitive1.Parent = this.Page1;
this.RectanglePrimitive2.Page = this.Page1;
this.RectanglePrimitive2.Parent = this.Page1;
this.VerticalLinePrimitive1.Page = this.Page1;
this.VerticalLinePrimitive1.Parent = this.Page1;
//
// Add to DataBand1.Components
//
this.DataBand1.Components.Clear();
this.DataBand1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Image1,
this.Text1,
this.Text4,
this.Text5,
this.Text10,
this.Text12,
this.Text13,
this.Text14,
this.Text15,
this.Text16,
this.Text2,
this.Text3,
this.Text6,
this.Text7,
this.Text8,
this.Text9,
this.Text17,
this.Text18,
this.Text19,
this.Text20,
this.Text21,
this.Text22,
this.Text23,
this.Text24,
this.Text25,
this.Text26,
this.Text27,
this.Text28,
this.Text29,
this.Text11,
this.Text30,
this.Text31,
this.Image2,
this.Text33,
this.Text34,
this.BarCode1,
this.StartPointPrimitive1,
this.EndPointPrimitive2,
this.HorizontalLinePrimitive1,
this.StartPointPrimitive2,
this.EndPointPrimitive4,
this.HorizontalLinePrimitive2,
this.StartPointPrimitive3,
this.EndPointPrimitive6});
//
// Add to Page1.Components
//
this.Page1.Components.Clear();
this.Page1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.DataBand1,
this.StartPointPrimitive4,
this.EndPointPrimitive5,
this.EndPointPrimitive3,
this.StartPointPrimitive7,
this.EndPointPrimitive9,
this.EndPointPrimitive1,
this.RectanglePrimitive1,
this.RectanglePrimitive2,
this.VerticalLinePrimitive1});
//
// Add to Pages
//
this.Pages.Clear();
this.Pages.AddRange(new Stimulsoft.Report.Components.StiPage[] {
this.Page1});
//
// Add to Styles
//
this.Styles.Clear();
this.Styles.AddRange(new Stimulsoft.Report.StiBaseStyle[] {
this.StyleStyle1});
this.v_FullPersonnel.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
new Stimulsoft.Report.Dictionary.StiDataColumn("Address", "Address", "Address", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("BirthPlace", "BirthPlace", "BirthPlace", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("BloodType", "BloodType", "BloodType", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Camp", "Camp", "Camp", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CampFa", "CampFa", "CampFa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CampId", "CampId", "CampId", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CardType", "CardType", "CardType", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CodePer", "CodePer", "CodePer", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CompanyID", "CompanyID", "CompanyID", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CompanyNameEn", "CompanyNameEn", "CompanyNameEn", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CompanyNameFa", "CompanyNameFa", "CompanyNameFa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CreateDate", "CreateDate", "CreateDate", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("createdatetime", "createdatetime", "createdatetime", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DismissReason", "DismissReason", "DismissReason", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("education", "education", "education", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ExpireDate", "ExpireDate", "ExpireDate", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("FatherName", "FatherName", "FatherName", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("FirstName", "FirstName", "FirstName", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("FirstNameFa", "FirstNameFa", "FirstNameFa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("GatePassSN", "GatePassSN", "GatePassSN", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("IDNumber", "IDNumber", "IDNumber", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("JobId", "JobId", "JobId", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("JobTitleEn", "JobTitleEn", "JobTitleEn", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("JobTitleFa", "JobTitleFa", "JobTitleFa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("LastExpire", "LastExpire", "LastExpire", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("LastName", "LastName", "LastName", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("LastNameFa", "LastNameFa", "LastNameFa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Marriage", "Marriage", "Marriage", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("military", "military", "military", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Nationallity", "Nationallity", "Nationallity", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Owner_id", "Owner_id", "Owner_id", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Per_Id", "Per_Id", "Per_Id", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Photo", "Photo", "Photo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Project_Id", "Project_Id", "Project_Id", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Project_nameEn", "Project_nameEn", "Project_nameEn", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Project_nameFa", "Project_nameFa", "Project_nameFa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("religion", "religion", "religion", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ShSh", "ShSh", "ShSh", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("StatusCode", "StatusCode", "StatusCode", typeof(long)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TasviehDate", "TasviehDate", "TasviehDate", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Modify_user", "Modify_user", "Modify_user", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CompanyCode", "CompanyCode", "CompanyCode", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("path", "path", "path", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("textcolor", "textcolor", "textcolor", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("GatePassImage", "GatePassImage", "GatePassImage", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Description", "Description", "Description", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("hst_id", "hst_id", "hst_id", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("color", "color", "color", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TitleColor", "TitleColor", "TitleColor", typeof(string))});
this.v_FullPersonnel.Parameters.AddRange(new Stimulsoft.Report.Dictionary.StiDataParameter[] {
new Stimulsoft.Report.Dictionary.StiDataParameter("hst_id", 8, 0)});
this.DataSources.Add(this.v_FullPersonnel);
this.Dictionary.Databases.Add(new Stimulsoft.Report.Dictionary.StiSqlDatabase("Connection", "Connection", "Data Source=oiecSERVER\\InternalDB;Initial Catalog=SPEntDB;Integrated Security=SSP" +
"I; Persist Security Info=False;", false));
this.v_FullPersonnel.Connecting += new System.EventHandler(this.Getv_FullPersonnel_SqlCommand);
}
public void Getv_FullPersonnel_SqlCommand(object sender, System.EventArgs e)
{
this.v_FullPersonnel.SqlCommand = ToString(@"SELECT v_fullPersonnel.GatePassSN, v_fullPersonnel.JobId,
v_fullPersonnel.CampId, v_fullPersonnel.CreateDate,
v_fullPersonnel.ExpireDate, v_fullPersonnel.TasviehDate,
v_fullPersonnel.CardType, v_fullPersonnel.DismissReason,
v_fullPersonnel.Modify_user, v_fullPersonnel.LastExpire,
v_fullPersonnel.Project_Id, v_fullPersonnel.Owner_id,
v_fullPersonnel.JobTitleEn, v_fullPersonnel.JobTitleFa, v_fullPersonnel.Camp,
v_fullPersonnel.Project_nameFa, v_fullPersonnel.Project_nameEn,
v_fullPersonnel.CompanyCode, v_fullPersonnel.CompanyNameEn,
v_fullPersonnel.CompanyNameFa, v_fullPersonnel.path,
v_fullPersonnel.textcolor, v_fullPersonnel.GatePassImage,
v_fullPersonnel.FirstName, v_fullPersonnel.LastName,
v_fullPersonnel.FirstNameFa, v_fullPersonnel.LastNameFa,
v_fullPersonnel.IDNumber, v_fullPersonnel.BirthPlace, v_fullPersonnel.Photo,
v_fullPersonnel.ShSh, v_fullPersonnel.FatherName,
v_fullPersonnel.createdatetime, v_fullPersonnel.CodePer,
v_fullPersonnel.Nationallity, v_fullPersonnel.Address,
v_fullPersonnel.religion, v_fullPersonnel.BloodType, v_fullPersonnel.Marriage,
v_fullPersonnel.military, v_fullPersonnel.education, v_fullPersonnel.Per_Id,
v_fullPersonnel.Description, v_fullPersonnel.hst_id,
v_fullPersonnel.StatusCode, v_fullPersonnel.CompanyID, v_fullPersonnel.color,
v_fullPersonnel.CampFa, v_fullPersonnel.TitleColor
FROM v_fullPersonnel
Where v_fullPersonnel.hst_id=@hst_id");
this.v_FullPersonnel.Parameters["hst_id"].ParameterValue = hst_id;
}
#region DataSource v_FullPersonnel
public class v_FullPersonnelDataSource : Stimulsoft.Report.Dictionary.StiSqlSource
{
public v_FullPersonnelDataSource() :
base("Connection", "v_FullPersonnel", "v_FullPersonnel", "", true, false, 30)
{
}
public virtual string Address
{
get
{
return ((string)(StiReport.ChangeType(this["Address"], typeof(string), true)));
}
}
public virtual string BirthPlace
{
get
{
return ((string)(StiReport.ChangeType(this["BirthPlace"], typeof(string), true)));
}
}
public virtual string BloodType
{
get
{
return ((string)(StiReport.ChangeType(this["BloodType"], typeof(string), true)));
}
}
public virtual string Camp
{
get
{
return ((string)(StiReport.ChangeType(this["Camp"], typeof(string), true)));
}
}
public virtual string CampFa
{
get
{
return ((string)(StiReport.ChangeType(this["CampFa"], typeof(string), true)));
}
}
public virtual long CampId
{
get
{
return ((long)(StiReport.ChangeType(this["CampId"], typeof(long), true)));
}
}
public virtual long CardType
{
get
{
return ((long)(StiReport.ChangeType(this["CardType"], typeof(long), true)));
}
}
public virtual string CodePer
{
get
{
return ((string)(StiReport.ChangeType(this["CodePer"], typeof(string), true)));
}
}
public virtual long CompanyID
{
get
{
return ((long)(StiReport.ChangeType(this["CompanyID"], typeof(long), true)));
}
}
public virtual string CompanyNameEn
{
get
{
return ((string)(StiReport.ChangeType(this["CompanyNameEn"], typeof(string), true)));
}
}
public virtual string CompanyNameFa
{
get
{
return ((string)(StiReport.ChangeType(this["CompanyNameFa"], typeof(string), true)));
}
}
public virtual string CreateDate
{
get
{
return ((string)(StiReport.ChangeType(this["CreateDate"], typeof(string), true)));
}
}
public virtual DateTime createdatetime
{
get
{
return ((DateTime)(StiReport.ChangeType(this["createdatetime"], typeof(DateTime), true)));
}
}
public virtual string DismissReason
{
get
{
return ((string)(StiReport.ChangeType(this["DismissReason"], typeof(string), true)));
}
}
public virtual long education
{
get
{
return ((long)(StiReport.ChangeType(this["education"], typeof(long), true)));
}
}
public virtual string ExpireDate
{
get
{
return ((string)(StiReport.ChangeType(this["ExpireDate"], typeof(string), true)));
}
}
public virtual string FatherName
{
get
{
return ((string)(StiReport.ChangeType(this["FatherName"], typeof(string), true)));
}
}
public virtual string FirstName
{
get
{
return ((string)(StiReport.ChangeType(this["FirstName"], typeof(string), true)));
}
}
public virtual string FirstNameFa
{
get
{
return ((string)(StiReport.ChangeType(this["FirstNameFa"], typeof(string), true)));
}
}
public virtual long GatePassSN
{
get
{
return ((long)(StiReport.ChangeType(this["GatePassSN"], typeof(long), true)));
}
}
public virtual string IDNumber
{
get
{
return ((string)(StiReport.ChangeType(this["IDNumber"], typeof(string), true)));
}
}
public virtual long JobId
{
get
{
return ((long)(StiReport.ChangeType(this["JobId"], typeof(long), true)));
}
}
public virtual string JobTitleEn
{
get
{
return ((string)(StiReport.ChangeType(this["JobTitleEn"], typeof(string), true)));
}
}
public virtual string JobTitleFa
{
get
{
return ((string)(StiReport.ChangeType(this["JobTitleFa"], typeof(string), true)));
}
}
public virtual string LastExpire
{
get
{
return ((string)(StiReport.ChangeType(this["LastExpire"], typeof(string), true)));
}
}
public virtual string LastName
{
get
{
return ((string)(StiReport.ChangeType(this["LastName"], typeof(string), true)));
}
}
public virtual string LastNameFa
{
get
{
return ((string)(StiReport.ChangeType(this["LastNameFa"], typeof(string), true)));
}
}
public virtual long Marriage
{
get
{
return ((long)(StiReport.ChangeType(this["Marriage"], typeof(long), true)));
}
}
public virtual long military
{
get
{
return ((long)(StiReport.ChangeType(this["military"], typeof(long), true)));
}
}
public virtual string Nationallity
{
get
{
return ((string)(StiReport.ChangeType(this["Nationallity"], typeof(string), true)));
}
}
public virtual long Owner_id
{
get
{
return ((long)(StiReport.ChangeType(this["Owner_id"], typeof(long), true)));
}
}
public virtual long Per_Id
{
get
{
return ((long)(StiReport.ChangeType(this["Per_Id"], typeof(long), true)));
}
}
public virtual string Photo
{
get
{
return ((string)(StiReport.ChangeType(this["Photo"], typeof(string), true)));
}
}
public virtual long Project_Id
{
get
{
return ((long)(StiReport.ChangeType(this["Project_Id"], typeof(long), true)));
}
}
public virtual string Project_nameEn
{
get
{
return ((string)(StiReport.ChangeType(this["Project_nameEn"], typeof(string), true)));
}
}
public virtual string Project_nameFa
{
get
{
return ((string)(StiReport.ChangeType(this["Project_nameFa"], typeof(string), true)));
}
}
public virtual long religion
{
get
{
return ((long)(StiReport.ChangeType(this["religion"], typeof(long), true)));
}
}
public virtual string ShSh
{
get
{
return ((string)(StiReport.ChangeType(this["ShSh"], typeof(string), true)));
}
}
public virtual long StatusCode
{
get
{
return ((long)(StiReport.ChangeType(this["StatusCode"], typeof(long), true)));
}
}
public virtual string TasviehDate
{
get
{
return ((string)(StiReport.ChangeType(this["TasviehDate"], typeof(string), true)));
}
}
public virtual string Modify_user
{
get
{
return ((string)(StiReport.ChangeType(this["Modify_user"], typeof(string), true)));
}
}
public virtual string CompanyCode
{
get
{
return ((string)(StiReport.ChangeType(this["CompanyCode"], typeof(string), true)));
}
}
public virtual string path
{
get
{
return ((string)(StiReport.ChangeType(this["path"], typeof(string), true)));
}
}
public virtual string textcolor
{
get
{
return ((string)(StiReport.ChangeType(this["textcolor"], typeof(string), true)));
}
}
public virtual int GatePassImage
{
get
{
return ((int)(StiReport.ChangeType(this["GatePassImage"], typeof(int), true)));
}
}
public virtual string Description
{
get
{
return ((string)(StiReport.ChangeType(this["Description"], typeof(string), true)));
}
}
public virtual int hst_id
{
get
{
return ((int)(StiReport.ChangeType(this["hst_id"], typeof(int), true)));
}
}
public virtual string color
{
get
{
return ((string)(StiReport.ChangeType(this["color"], typeof(string), true)));
}
}
public virtual string TitleColor
{
get
{
return ((string)(StiReport.ChangeType(this["TitleColor"], typeof(string), true)));
}
}
}
#endregion DataSource v_FullPersonnel
#endregion StiReport Designer generated code - do not modify
}
}
///////////////////////////////////////////////////////////////
///////////////// aspx file code ////////////////////////
/////////////////////////////////////////////////////////
/////////////////////////////////////////////////////
//////////////// cs code file /////////////////////
StiReport report = new StiReport();
//StiReport report = new Reports.Report();
report.Load(appDirectory + "\\report_sp1718\\card_per\\card.mrt");
DataSourceSelectArguments Arg = new DataSourceSelectArguments();
DataView view = (DataView)sdsSelectedCard.Select(Arg);
DataTable table = view.ToTable();
report.Dictionary.Variables.Add("hst_id", Convert.ToInt32(grv_PrintList.SelectedDataKey.Value));
report.RegData(table);
// View report
StiWebViewerFx1.Style.Add(HtmlTextWriterStyle.Direction, "RTL");
StiWebViewerFx1.Report = report;
StiWebViewerFx1.DataBind();