Page 1 of 1

Retrieve a field value of the previous line.

Posted: Sat Dec 24, 2011 12:10 pm
by Danilo Grasso
Good evening, using the DataBand and I need to retrieve a field value of the previous line.
The last function I returns the last value of the full set but I need to retrieve only the previous line to compare with another field.
Thank you for your help and happy holidays.
Danilo

Retrieve a field value of the previous line.

Posted: Mon Dec 26, 2011 6:53 am
by HighAley
Hello, Danilo.
hakjon wrote:Good evening, using the DataBand and I need to retrieve a field value of the previous line.
The last function I returns the last value of the full set but I need to retrieve only the previous line to compare with another field.
You should use a variable.

Thank you.

Retrieve a field value of the previous line.

Posted: Mon Dec 26, 2011 7:21 am
by Danilo Grasso
Hello Aleksey, thanks for the reply.
Can you explain how to use the variable.
I tried the guide but I did not understand much.
Thank you for your support.
Danilo

Retrieve a field value of the previous line.

Posted: Mon Dec 26, 2011 7:56 am
by HighAley
Hello, Danilo.
hakjon wrote:Can you explain how to use the variable.
I tried the guide but I did not understand much.
You could set the variable value in the After Print event and then use it.
Please, see the attached report template.

Thank you.

Retrieve a field value of the previous line.

Posted: Mon Dec 26, 2011 4:13 pm
by Danilo Grasso
Thanks so much for the reply.
I modified the report as attached to me but I still have this error 2 times:

-------------------------------------------------- ---------------------------
The error of compilation
The error of compilation is found in the 'Report' report:
The name 'variable1' does not exist in the current context.
-------------------------------------------------- ---------------------------

Have a suggestion on this?
Thank you for your support.

The code of my report.

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.ReportControls;
using Stimulsoft.Report.Components;

namespace Reports
{

public class Report : Stimulsoft.Report.StiReport
{

public Report()
{
this.InitializeComponent();
}
#region StiReport Designer generated code - do not modify
public int Ore;
public int Minuti;
public Stimulsoft.Report.Components.StiPage Page1;
public Stimulsoft.Report.Components.StiPageFooterBand PageFooterBand1;
public Stimulsoft.Report.Components.StiText Text10;
public Stimulsoft.Report.Components.StiGroupHeaderBand IntestazioneGruppo1;
public Stimulsoft.Report.Components.StiText Testo51;
public Stimulsoft.Report.Components.StiText Text38;
public Stimulsoft.Report.Components.StiText Text39;
public Stimulsoft.Report.Components.StiText Text40;
public Stimulsoft.Report.Components.StiText Text41;
public Stimulsoft.Report.Components.StiText Text42;
public Stimulsoft.Report.Components.StiText Text43;
public Stimulsoft.Report.Components.StiText Text44;
public Stimulsoft.Report.Components.StiText Text46;
public Stimulsoft.Report.Components.StiText Text47;
public Stimulsoft.Report.Components.StiText Text48;
public Stimulsoft.Report.Components.StiText Text2;
public Stimulsoft.Report.Components.StiDataBand DataBand1;
public Stimulsoft.Report.Components.StiText Text15;
public Stimulsoft.Report.Components.StiText Text16;
public Stimulsoft.Report.Components.StiText Text45;
public Stimulsoft.Report.Components.StiText Text50;
public Stimulsoft.Report.Components.StiText Text51;
public Stimulsoft.Report.Components.StiText Text52;
public Stimulsoft.Report.Components.StiText Text54;
public Stimulsoft.Report.Components.StiText Text55;
public Stimulsoft.Report.Components.StiText Text56;
public Stimulsoft.Report.Components.StiText Text57;
public Stimulsoft.Report.Components.StiText Text7;
public Stimulsoft.Report.Components.StiGroupFooterBand PièPaginaGruppo1;
public Stimulsoft.Report.Components.StiText Testo18;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Testo18_Sum;
public Stimulsoft.Report.Components.StiText Testo19;
public Stimulsoft.Report.Components.StiText Text1;
public Stimulsoft.Report.Components.StiText Text3;
public Stimulsoft.Report.Dictionary.StiCountFunctionService Text3_Count;
public Stimulsoft.Report.Components.StiReportSummaryBand ReportSummaryBand1;
public Stimulsoft.Report.Components.StiText Text9;
public Stimulsoft.Report.Components.StiText Text12;
public Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService Text12_Sum;
public Stimulsoft.Report.Components.StiText Text13;
public Stimulsoft.Report.Components.StiText Text14;
public Stimulsoft.Report.Dictionary.StiCountFunctionService Text14_Count;
public Stimulsoft.Report.Components.StiHorizontalLinePrimitive HorizontalLinePrimitive1;
public Stimulsoft.Report.Components.StiWatermark Page1_Watermark;
public Stimulsoft.Report.Print.StiPrinterSettings Report_PrinterSettings;
public ST_VIAGGIDataSource ST_VIAGGI;
public TABACARICODIDataSource TABACARICODI;
public CONTATTIDataSource CONTATTI;
public TABTIPOINTERVENTODataSource TABTIPOINTERVENTO;
public VIAGGIDataSource VIAGGI;
public PARAMETRIDataSource PARAMETRI;
public AZIENDADataSource AZIENDA;

public override void SaveState(System.String stateName)
{
base.SaveState(stateName);
this.States.PushInt(stateName, this, "Ore", this.Ore);
this.States.PushInt(stateName, this, "Minuti", this.Minuti);
}

public override void RestoreState(System.String stateName)
{
base.RestoreState(stateName);
this.Ore = this.States.PopInt(stateName, this, "Ore");
this.Minuti = this.States.PopInt(stateName, this, "Minuti");
}

public void Text10__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Format(\"{0:dd/MM/yyyy}\", Today)} - Pagina {PageNumber} di {TotalPageCount}";
e.StoreToPrinted = true;
}

public System.String Text10_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return ToString(sender, Format("{0:dd/MM/yyyy}", Today), true) + " - Pagina " + ToString(sender, PageNumber, true) + " di " + ToString(sender, TotalPageCount, true);
}

public void IntestazioneGruppo1__GetValue(object sender, Stimulsoft.Report.Events.StiValueEventArgs e)
{
e.Value = VIAGGI.Mezzo;
}

public void Testo51__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "CROCE VERDE \r\nGENOVA SESTRI PONENTE";
}

public void Text38__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "KM arrivo";
}

public void Text39__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "KM";
}

public void Text40__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Ora arrivo";
}

public void Text41__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "KM partenza";
}

public void Text42__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Data";
}

public void Text43__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Località di arrivo";
}

public void Text44__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Località di partenza";
}

public void Text46__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Ora partenza";
}

public void Text47__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Nominativo";
}

public void Text48__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Tipo intervento";
}

public void Text2__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Riepilogo conta kilometri\r\nAmbulanza codice radio n. " + ToString(sender, VIAGGI.SIGLARADIO, true) + " targa " + ToString(sender, VIAGGI.TARGA, true);
}

public void DataBand1__GetFilter(object sender, Stimulsoft.Report.Events.StiFilterEventArgs e)
{
e.Value = (((decimal)(StiReport.ChangeType(this.VIAGGI.Mezzo, typeof(decimal), true))) != 0m);
}

public void Text15__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, Format("{0:dd/MM/yyyy}", VIAGGI.DataDocumento), true);
}

public void Text16__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, (VIAGGI.KMArrivo - VIAGGI.KMPartenza), true);
}

public void Text45__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, VIAGGI.Paziente, true);
}

public void Text50__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, VIAGGI.KMArrivo, true);
}

public void Text51__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, VIAGGI.KMPartenza, true);
}

public void Text52__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, VIAGGI.Trasportato, true);
}

private void Text54_Conditions(object sender, System.EventArgs e)
{
if (((((this.VIAGGI.TABTIPOINTERVENTODESCRIZIONE.ToString().ToLower() == this.ToString("ospedaliero").ToLower())
&& (this.VIAGGI.TABTIPOINTERVENTODESCRIZIONE.ToString().ToLower() == this.ToString("dialisi").ToLower()))
&& (this.VIAGGI.TABTIPOINTERVENTODESCRIZIONE.ToString().ToLower() == this.ToString("ordinario").ToLower()))
&& (this.VIAGGI.ACaricoDi.ToString().ToLower() == this.ToString("2").ToLower())))
{
((Stimulsoft.Report.Components.IStiTextBrush)(sender)).TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Red);
((Stimulsoft.Report.Components.IStiBrush)(sender)).Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
Stimulsoft.Report.Components.StiConditionHelper.ApplyFont(sender, new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold), Stimulsoft.Report.Components.StiConditionPermissions.All);
((Stimulsoft.Report.Components.IStiBorder)(sender)).Border = ((Stimulsoft.Base.Drawing.StiBorder)(((Stimulsoft.Report.Components.IStiBorder)(sender)).Border.Clone()));
((Stimulsoft.Report.Components.IStiBorder)(sender)).Border.Side = Stimulsoft.Base.Drawing.StiBorderSides.All;
((Stimulsoft.Report.Components.StiComponent)(sender)).Enabled = true;
return;
}
if (((this.VIAGGI.TABTIPOINTERVENTODESCRIZIONE.ToString().ToLower() == this.ToString("urgenza").ToLower())
&& (this.VIAGGI.ACaricoDi.ToString().ToLower() == this.ToString("1").ToLower())))
{
((Stimulsoft.Report.Components.IStiTextBrush)(sender)).TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Red);
((Stimulsoft.Report.Components.IStiBrush)(sender)).Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
Stimulsoft.Report.Components.StiConditionHelper.ApplyFont(sender, new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Bold), Stimulsoft.Report.Components.StiConditionPermissions.All);
((Stimulsoft.Report.Components.IStiBorder)(sender)).Border = ((Stimulsoft.Base.Drawing.StiBorder)(((Stimulsoft.Report.Components.IStiBorder)(sender)).Border.Clone()));
((Stimulsoft.Report.Components.IStiBorder)(sender)).Border.Side = Stimulsoft.Base.Drawing.StiBorderSides.All;
((Stimulsoft.Report.Components.StiComponent)(sender)).Enabled = true;
return;
}
}

public void Text54__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, VIAGGI.TABTIPOINTERVENTODESCRIZIONE, true);
}

public void Text55__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, VIAGGI.Prelevato, true);
}

public void Text56__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, VIAGGI.DaOra, true);
}

public void Text57__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, VIAGGI.AOra, true);
}

public void Text7__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, IIF(Variable1 != VIAGGI.KMArrivo, "more", "less" ), true);
}

public void Text7_AfterPrint(object sender, System.EventArgs e)
{
Variable1 = VIAGGI.KMArrivo;
}

public void Testo18__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum((VIAGGI.KMPartenza - VIAGGI.KMArrivo) * -1)}";
e.StoreToPrinted = true;
}

public System.String Testo18_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return ToString(sender, ((decimal)(StiReport.ChangeType(this.Testo18_Sum.GetValue(), typeof(decimal), true))), true);
}

public void Testo19__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Totale Km:";
}

public void Text1__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Totale servizi:";
}

public void Text3__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{CountRunning(IntestazioneGruppo1,VIAGGI.Codice)}";
e.StoreToPrinted = true;
}

public System.String Text3_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return ToString(sender, ((long)(StiReport.ChangeType(this.Text3_Count.GetValue(), typeof(long), true))), true);
}

public void Text9__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Totale km:";
}

public void Text12__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Sum(VIAGGI.KMArrivo - VIAGGI.KMPartenza)}";
e.StoreToPrinted = true;
}

public System.String Text12_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return ToString(sender, ((decimal)(StiReport.ChangeType(this.Text12_Sum.GetValue(), typeof(decimal), true))), true);
}

public void Text13__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "Totale rapportini:";
}

public void Text14__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = "#%#{Count()}";
e.StoreToPrinted = true;
}

public System.String Text14_GetValue_End(Stimulsoft.Report.Components.StiComponent sender)
{
return ToString(sender, ((long)(StiReport.ChangeType(this.Text14_Count.GetValue(), typeof(long), true))), true);
}

public void IntestazioneGruppo1__BeginRender(object sender, System.EventArgs e)
{
this.Testo18_Sum.Init();
this.Testo18.TextValue = "";
this.Text3_Count.Init();
this.Text3.TextValue = "";
}

public void IntestazioneGruppo1__EndRender(object sender, System.EventArgs e)
{
this.Testo18.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Testo18_GetValue_End));
this.Text3.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text3_GetValue_End));
}

public void DataBand1__BeginRender(object sender, System.EventArgs e)
{
this.Text12_Sum.Init();
this.Text12.TextValue = "";
this.Text14_Count.Init();
this.Text14.TextValue = "";
}

public void DataBand1__EndRender(object sender, System.EventArgs e)
{
this.Text12.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text12_GetValue_End));
this.Text14.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text14_GetValue_End));
}

public void IntestazioneGruppo1__Rendering(object sender, System.EventArgs e)
{
this.Testo18_Sum.CalcItem((VIAGGI.KMPartenza-VIAGGI.KMArrivo)*-1);
this.Text3_Count.CalcItem(null);
}

public void DataBand1__Rendering(object sender, System.EventArgs e)
{
this.Text12_Sum.CalcItem(VIAGGI.KMArrivo-VIAGGI.KMPartenza);
this.Text14_Count.CalcItem(null);
}

public void ReportWordsToEnd__EndRender(object sender, System.EventArgs e)
{
this.Text10.SetText(new Stimulsoft.Report.Components.StiGetValue(this.Text10_GetValue_End));
}

private void InitializeComponent()
{
this.AZIENDA = new AZIENDADataSource();
this.PARAMETRI = new PARAMETRIDataSource();
this.VIAGGI = new VIAGGIDataSource();
this.TABTIPOINTERVENTO = new TABTIPOINTERVENTODataSource();
this.CONTATTI = new CONTATTIDataSource();
this.TABACARICODI = new TABACARICODIDataSource();
this.ST_VIAGGI = new ST_VIAGGIDataSource();
this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "Ore", "Ore", "", typeof(int), "", false, Stimulsoft.Report.Dictionary.StiVariableInitBy.Value, false));
this.Dictionary.Variables.Add(new Stimulsoft.Report.Dictionary.StiVariable("", "Minuti", "Minuti", "", typeof(int), "", false, Stimulsoft.Report.Dictionary.StiVariableInitBy.Value, false));
this.NeedsCompiling = false;
this.Text14_Count = new Stimulsoft.Report.Dictionary.StiCountFunctionService();
this.Text12_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
this.Testo18_Sum = new Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService();
//
// Variables init
//
this.Ore = 0;
this.Minuti = 0;
this.EngineVersion = Stimulsoft.Report.Engine.StiEngineVersion.EngineV1;
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, 12, 26, 22, 5, 32, 957);
//
// ReportCreated
//
this.ReportCreated = new DateTime(2006, 10, 9, 13, 42, 23, 0);
this.ReportFile = "D:\\INSTALLAZIONI.D\\RONDINE\\CROCEVERDEGENOVASESTRIPONENTE\\SVILUPPO\\REPORT\\ContaKilometri.mrt";
this.ReportGuid = "5271cf07993e4f9880c31d8e72da2845";
this.ReportName = "Report";
this.ReportUnit = Stimulsoft.Report.StiReportUnitType.Centimeters;
this.ReportVersion = "2011.2.1100";
this.ScriptLanguage = Stimulsoft.Report.StiReportLanguageType.CSharp;
//
// Page1
//
this.Page1 = new Stimulsoft.Report.Components.StiPage();
this.Page1.Guid = "b95a1146f6584e88aa5a47393075d873";
this.Page1.Name = "Page1";
this.Page1.Orientation = Stimulsoft.Report.Components.StiPageOrientation.Landscape;
this.Page1.PageHeight = 21;
this.Page1.PageWidth = 29.7;
this.Page1.PaperSize = System.Drawing.Printing.PaperKind.A4;
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), false);
this.Page1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// PageFooterBand1
//
this.PageFooterBand1 = new Stimulsoft.Report.Components.StiPageFooterBand();
this.PageFooterBand1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 19.2, 28.7, 0.8);
this.PageFooterBand1.Name = "PageFooterBand1";
this.PageFooterBand1.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), false);
this.PageFooterBand1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Text10
//
this.Text10 = new Stimulsoft.Report.Components.StiText();
this.Text10.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(21.4, 0.1, 7.2, 0.6);
this.Text10.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text10.Name = "Text10";
this.Text10.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text10__GetValue);
this.Text10.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text10.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
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), false);
this.Text10.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text10.Font = new System.Drawing.Font("Arial", 8F);
this.Text10.Guid = null;
this.Text10.Indicator = null;
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, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
this.PageFooterBand1.Guid = null;
this.PageFooterBand1.Interaction = null;
//
// IntestazioneGruppo1
//
this.IntestazioneGruppo1 = new Stimulsoft.Report.Components.StiGroupHeaderBand();
this.IntestazioneGruppo1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.4, 28.7, 2.2);
this.IntestazioneGruppo1.GetValue += new Stimulsoft.Report.Events.StiValueEventHandler(this.IntestazioneGruppo1__GetValue);
this.IntestazioneGruppo1.Name = "IntestazioneGruppo1";
this.IntestazioneGruppo1.StartNewPage = true;
this.IntestazioneGruppo1.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), false);
this.IntestazioneGruppo1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Testo51
//
this.Testo51 = new Stimulsoft.Report.Components.StiText();
this.Testo51.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.2, 13.2, 1);
this.Testo51.Name = "Testo51";
this.Testo51.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Testo51__GetValue);
this.Testo51.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Testo51.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Testo51.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Testo51.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
this.Testo51.Guid = null;
this.Testo51.Indicator = null;
this.Testo51.Interaction = null;
this.Testo51.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Testo51.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Testo51.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text38
//
this.Text38 = new Stimulsoft.Report.Components.StiText();
this.Text38.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25, 1.4, 2.2, 0.8);
this.Text38.Guid = "af5678adecc94064bb98b8915d192f95";
this.Text38.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text38.Name = "Text38";
this.Text38.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text38__GetValue);
this.Text38.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text38.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text38.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text38.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text38.Font = new System.Drawing.Font("Arial", 9F);
this.Text38.Indicator = null;
this.Text38.Interaction = null;
this.Text38.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text38.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text38.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text39
//
this.Text39 = new Stimulsoft.Report.Components.StiText();
this.Text39.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.2, 1.4, 1.4, 0.8);
this.Text39.Guid = "ac8a1fbd4bb141f0a1e5a7c79917eef4";
this.Text39.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text39.Name = "Text39";
this.Text39.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text39__GetValue);
this.Text39.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text39.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text39.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text39.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text39.Font = new System.Drawing.Font("Arial", 9F);
this.Text39.Indicator = null;
this.Text39.Interaction = null;
this.Text39.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text39.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text39.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text40
//
this.Text40 = new Stimulsoft.Report.Components.StiText();
this.Text40.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(20.6, 1.4, 2.2, 0.8);
this.Text40.Guid = "b1f6d59dd042436abad9f03487540d54";
this.Text40.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text40.Name = "Text40";
this.Text40.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text40__GetValue);
this.Text40.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text40.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text40.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text40.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text40.Font = new System.Drawing.Font("Arial", 9F);
this.Text40.Indicator = null;
this.Text40.Interaction = null;
this.Text40.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text40.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text40.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text41
//
this.Text41 = new Stimulsoft.Report.Components.StiText();
this.Text41.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.8, 1.4, 2.2, 0.8);
this.Text41.Guid = "e7449fc1666741c8af984090b97cd971";
this.Text41.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text41.Name = "Text41";
this.Text41.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text41__GetValue);
this.Text41.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text41.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text41.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text41.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text41.Font = new System.Drawing.Font("Arial", 9F);
this.Text41.Indicator = null;
this.Text41.Interaction = null;
this.Text41.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text41.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text41.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text42
//
this.Text42 = new Stimulsoft.Report.Components.StiText();
this.Text42.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 1.4, 2.4, 0.8);
this.Text42.Guid = "ecb72eb2e6174a7f94db2c0d3399479c";
this.Text42.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text42.Name = "Text42";
this.Text42.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text42__GetValue);
this.Text42.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text42.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text42.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text42.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text42.Font = new System.Drawing.Font("Arial", 9F);
this.Text42.Indicator = null;
this.Text42.Interaction = null;
this.Text42.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text42.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text42.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text43
//
this.Text43 = new Stimulsoft.Report.Components.StiText();
this.Text43.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.2, 1.4, 3.2, 0.8);
this.Text43.Guid = "00d19dffe1204c1184b5f9c3148a9e84";
this.Text43.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text43.Name = "Text43";
this.Text43.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text43__GetValue);
this.Text43.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text43.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text43.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text43.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text43.Font = new System.Drawing.Font("Arial", 9F);
this.Text43.Indicator = null;
this.Text43.Interaction = null;
this.Text43.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text43.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text43.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text44
//
this.Text44 = new Stimulsoft.Report.Components.StiText();
this.Text44.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12, 1.4, 3.2, 0.8);
this.Text44.Guid = "b5ee69dbc7df4ed4b99a912707d93cc9";
this.Text44.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text44.Name = "Text44";
this.Text44.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text44__GetValue);
this.Text44.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text44.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text44.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text44.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text44.Font = new System.Drawing.Font("Arial", 9F);
this.Text44.Indicator = null;
this.Text44.Interaction = null;
this.Text44.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text44.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text44.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text46
//
this.Text46 = new Stimulsoft.Report.Components.StiText();
this.Text46.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.4, 1.4, 2.2, 0.8);
this.Text46.Guid = "a0fc0ce30db94495a79bc0312a293a61";
this.Text46.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text46.Name = "Text46";
this.Text46.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text46__GetValue);
this.Text46.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text46.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text46.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text46.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text46.Font = new System.Drawing.Font("Arial", 9F);
this.Text46.Indicator = null;
this.Text46.Interaction = null;
this.Text46.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text46.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text46.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text47
//
this.Text47 = new Stimulsoft.Report.Components.StiText();
this.Text47.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(2.4, 1.4, 6.2, 0.8);
this.Text47.Guid = "b9b8230979cc42fe90aa22529a3a3dc8";
this.Text47.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text47.Name = "Text47";
this.Text47.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text47__GetValue);
this.Text47.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text47.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text47.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text47.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text47.Font = new System.Drawing.Font("Arial", 9F);
this.Text47.Indicator = null;
this.Text47.Interaction = null;
this.Text47.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text47.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text47.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text48
//
this.Text48 = new Stimulsoft.Report.Components.StiText();
this.Text48.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(8.6, 1.4, 3.4, 0.8);
this.Text48.Guid = "11c0fe86cde345c6866586e79b9290a6";
this.Text48.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text48.Name = "Text48";
this.Text48.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text48__GetValue);
this.Text48.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text48.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text48.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text48.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text48.Font = new System.Drawing.Font("Arial", 9F);
this.Text48.Indicator = null;
this.Text48.Interaction = null;
this.Text48.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text48.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text48.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text2
//
this.Text2 = new Stimulsoft.Report.Components.StiText();
this.Text2.CanGrow = true;
this.Text2.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(13.2, 0.2, 15.4, 1);
this.Text2.Guid = "f16465033e674eb5b40de227ea7b9d37";
this.Text2.Name = "Text2";
this.Text2.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text2__GetValue);
this.Text2.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text2.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text2.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text2.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text2.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold);
this.Text2.Indicator = null;
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, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
this.IntestazioneGruppo1.Guid = null;
this.IntestazioneGruppo1.Interaction = null;
//
// DataBand1
//
this.DataBand1 = new Stimulsoft.Report.Components.StiDataBand();
this.DataBand1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 3.4, 28.7, 2.4);
this.DataBand1.DataSourceName = "VIAGGI";
this.DataBand1.Name = "DataBand1";
this.DataBand1.Sort = new System.String[] {
"ASC",
"DataDocumento",
"ASC",
"TARGA",
"ASC",
"DaOra",
"ASC",
"KMPartenza"};
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), false);
this.DataBand1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.DataBand1.BusinessObjectGuid = null;
//
// Text15
//
this.Text15 = new Stimulsoft.Report.Components.StiText();
this.Text15.CanGrow = true;
this.Text15.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0, 2.4, 0.6);
this.Text15.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text15.Name = "Text15";
this.Text15.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text15__GetValue);
this.Text15.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text15.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text15.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text15.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text15.Font = new System.Drawing.Font("Arial", 9F);
this.Text15.Guid = null;
this.Text15.Indicator = null;
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, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text16
//
this.Text16 = new Stimulsoft.Report.Components.StiText();
this.Text16.CanGrow = true;
this.Text16.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.2, 0, 1.4, 0.6);
this.Text16.Guid = "891e6d8eb5e64262820d1ba4acd8e77e";
this.Text16.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text16.Name = "Text16";
this.Text16.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text16__GetValue);
this.Text16.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text16.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text16.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text16.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text16.Font = new System.Drawing.Font("Arial", 9F);
this.Text16.Indicator = null;
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.Black);
this.Text16.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text45
//
this.Text45 = new Stimulsoft.Report.Components.StiText();
this.Text45.CanGrow = true;
this.Text45.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(2.4, 0, 6.2, 0.6);
this.Text45.Guid = "a470f746547f415fa608a309d8f9002d";
this.Text45.Name = "Text45";
this.Text45.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text45__GetValue);
this.Text45.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text45.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text45.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text45.Font = new System.Drawing.Font("Arial", 9F);
this.Text45.Indicator = null;
this.Text45.Interaction = null;
this.Text45.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text45.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text45.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text50
//
this.Text50 = new Stimulsoft.Report.Components.StiText();
this.Text50.CanGrow = true;
this.Text50.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25, 0, 2.2, 0.6);
this.Text50.Guid = "bf5f168a115e49d9a1f710e561960ffa";
this.Text50.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text50.Name = "Text50";
this.Text50.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text50__GetValue);
this.Text50.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
this.Text50.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text50.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text50.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text50.Font = new System.Drawing.Font("Arial", 9F);
this.Text50.Indicator = null;
this.Text50.Interaction = null;
this.Text50.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text50.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text50.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text51
//
this.Text51 = new Stimulsoft.Report.Components.StiText();
this.Text51.CanGrow = true;
this.Text51.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.8, 0, 2.2, 0.6);
this.Text51.Guid = "ebe03905699a4cdeb3a1405b8f3437b3";
this.Text51.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text51.Name = "Text51";
this.Text51.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text51__GetValue);
this.Text51.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
this.Text51.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text51.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text51.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text51.Font = new System.Drawing.Font("Arial", 9F);
this.Text51.Indicator = null;
this.Text51.Interaction = null;
this.Text51.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text51.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text51.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text52
//
this.Text52 = new Stimulsoft.Report.Components.StiText();
this.Text52.CanGrow = true;
this.Text52.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(15.2, 0, 3.2, 0.6);
this.Text52.Guid = "705f7bc64d634a71b23934c6039beaed";
this.Text52.Name = "Text52";
this.Text52.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text52__GetValue);
this.Text52.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
this.Text52.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text52.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text52.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text52.Font = new System.Drawing.Font("Arial", 9F);
this.Text52.Indicator = null;
this.Text52.Interaction = null;
this.Text52.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text52.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text52.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text54
//
this.Text54 = new Stimulsoft.Report.Components.StiText();
this.Text54.CanGrow = true;
this.Text54.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(8.6, 0, 3.4, 0.6);
this.Text54.BeforePrint += new System.EventHandler(this.Text54_Conditions);
this.Text54.Guid = "0715aaeeedd14b1cbb8e92cd8391ffc0";
this.Text54.Name = "Text54";
this.Text54.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text54__GetValue);
this.Text54.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
this.Text54.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text54.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text54.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text54.Font = new System.Drawing.Font("Arial", 9F);
this.Text54.Indicator = null;
this.Text54.Interaction = null;
this.Text54.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text54.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text54.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text55
//
this.Text55 = new Stimulsoft.Report.Components.StiText();
this.Text55.CanGrow = true;
this.Text55.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(12, 0, 3.2, 0.6);
this.Text55.Guid = "8157bed1aaaf48b39845a7293a95b01f";
this.Text55.Name = "Text55";
this.Text55.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text55__GetValue);
this.Text55.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text55.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text55.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text55.Font = new System.Drawing.Font("Arial", 9F);
this.Text55.Indicator = null;
this.Text55.Interaction = null;
this.Text55.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text55.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text55.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text56
//
this.Text56 = new Stimulsoft.Report.Components.StiText();
this.Text56.CanGrow = true;
this.Text56.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(18.4, 0, 2.2, 0.6);
this.Text56.Guid = "35b2e31c1eb14f8a86466fa276de28e1";
this.Text56.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text56.Name = "Text56";
this.Text56.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text56__GetValue);
this.Text56.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
this.Text56.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text56.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text56.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text56.Font = new System.Drawing.Font("Arial", 9F);
this.Text56.Indicator = null;
this.Text56.Interaction = null;
this.Text56.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text56.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text56.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text57
//
this.Text57 = new Stimulsoft.Report.Components.StiText();
this.Text57.CanGrow = true;
this.Text57.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(20.6, 0, 2.2, 0.6);
this.Text57.Guid = "58b55803747b46b5895fff2b13367a22";
this.Text57.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text57.Name = "Text57";
this.Text57.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text57__GetValue);
this.Text57.Type = Stimulsoft.Report.Components.StiSystemTextType.DataColumn;
this.Text57.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text57.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text57.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text57.Font = new System.Drawing.Font("Arial", 9F);
this.Text57.Indicator = null;
this.Text57.Interaction = null;
this.Text57.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Text57.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text57.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text7
//
this.Text7 = new Stimulsoft.Report.Components.StiText();
this.Text7.CanGrow = true;
this.Text7.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(25.2, 1.2, 1.4, 0.6);
this.Text7.Guid = "53307c0dc27d44e185c38fa0f9b1225b";
this.Text7.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text7.Name = "Text7";
this.Text7.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text7__GetValue);
this.Text7.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text7.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text7.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text7.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text7.Font = new System.Drawing.Font("Arial", 9F);
this.Text7.Indicator = null;
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.Black);
this.Text7.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
this.Text7.AfterPrint += new System.EventHandler(this.Text7_AfterPrint);
this.DataBand1.DataRelationName = null;
this.DataBand1.Guid = null;
this.DataBand1.Interaction = null;
this.DataBand1.MasterComponent = null;
//
// PièPaginaGruppo1
//
this.PièPaginaGruppo1 = new Stimulsoft.Report.Components.StiGroupFooterBand();
this.PièPaginaGruppo1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 6.6, 28.7, 1.8);
this.PièPaginaGruppo1.Name = "PièPaginaGruppo1";
this.PièPaginaGruppo1.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), false);
this.PièPaginaGruppo1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Testo18
//
this.Testo18 = new Stimulsoft.Report.Components.StiText();
this.Testo18.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(27.2, 0.2, 1.4, 0.6);
this.Testo18.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Testo18.Name = "Testo18";
//
// Testo18_Sum
//
this.Testo18.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Testo18__GetValue);
this.Testo18.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Testo18.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Testo18.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Testo18.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Testo18.Font = new System.Drawing.Font("Arial", 10F);
this.Testo18.Guid = null;
this.Testo18.Indicator = null;
this.Testo18.Interaction = null;
this.Testo18.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Testo18.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Testo18.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Testo19
//
this.Testo19 = new Stimulsoft.Report.Components.StiText();
this.Testo19.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.8, 0.2, 4.4, 0.6);
this.Testo19.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Testo19.Name = "Testo19";
this.Testo19.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Testo19__GetValue);
this.Testo19.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Testo19.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Testo19.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Testo19.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Testo19.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.Testo19.Guid = null;
this.Testo19.Indicator = null;
this.Testo19.Interaction = null;
this.Testo19.Margins = new Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0);
this.Testo19.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Testo19.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// Text1
//
this.Text1 = new Stimulsoft.Report.Components.StiText();
this.Text1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(22.8, 1, 4.4, 0.6);
this.Text1.Guid = "5be87f69d181496888f38e613887e0da";
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.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text1.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text1.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Gainsboro);
this.Text1.Font = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Bold);
this.Text1.Indicator = null;
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(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(27.2, 1, 1.4, 0.6);
this.Text3.Guid = "a55f832cbd0d4e94bce303fc458e8d57";
this.Text3.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text3.Name = "Text3";
// Text3_Count
this.Text3_Count = new Stimulsoft.Report.Dictionary.StiCountFunctionService(true);
this.Text3.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text3__GetValue);
this.Text3.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals;
this.Text3.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
this.Text3.Border = new Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.All, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black), false);
this.Text3.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text3.Font = new System.Drawing.Font("Arial", 10F);
this.Text3.Indicator = null;
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.Black);
this.Text3.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
this.PièPaginaGruppo1.Guid = null;
this.PièPaginaGruppo1.Interaction = null;
//
// ReportSummaryBand1
//
this.ReportSummaryBand1 = new Stimulsoft.Report.Components.StiReportSummaryBand();
this.ReportSummaryBand1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 9.2, 28.7, 2);
this.ReportSummaryBand1.Guid = "4b00bf924bf241d5acde9cac47fd436e";
this.ReportSummaryBand1.Name = "ReportSummaryBand1";
this.ReportSummaryBand1.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), false);
this.ReportSummaryBand1.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
//
// Text9
//
this.Text9 = new Stimulsoft.Report.Components.StiText();
this.Text9.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(23.2, 0.4, 3.6, 0.6);
this.Text9.Guid = "ad4c52128df84029ab7d16a275756467";
this.Text9.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text9.Name = "Text9";
this.Text9.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text9__GetValue);
this.Text9.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text9.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
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), false);
this.Text9.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text9.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
this.Text9.Indicator = null;
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.Black);
this.Text9.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 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(26.8, 0.4, 1.8, 0.6);
this.Text12.Guid = "aade27d9b066485caf090695fd5891c0";
this.Text12.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text12.Name = "Text12";
//
// Text12_Sum
//
this.Text12.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text12__GetValue);
this.Text12.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text12.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
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), false);
this.Text12.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text12.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
this.Text12.Indicator = null;
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(false, 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(23.2, 1.2, 3.6, 0.6);
this.Text13.Guid = "f0a765c23112463f9d895cb7ebf60b21";
this.Text13.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right;
this.Text13.Name = "Text13";
this.Text13.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text13__GetValue);
this.Text13.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression;
this.Text13.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
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), false);
this.Text13.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text13.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
this.Text13.Indicator = null;
this.Text13.Interaction = null;
this.Text13.Margins = new Stimulsoft.Report.Components.StiMargins(2, 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(26.8, 1.2, 1.8, 0.6);
this.Text14.Guid = "8906721f77d24662a2e35a5b614b585c";
this.Text14.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center;
this.Text14.Name = "Text14";
//
// Text14_Count
//
this.Text14.GetValue += new Stimulsoft.Report.Events.StiGetValueEventHandler(this.Text14__GetValue);
this.Text14.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center;
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), false);
this.Text14.Brush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent);
this.Text14.Font = new System.Drawing.Font("Arial", 11F, System.Drawing.FontStyle.Bold);
this.Text14.Indicator = null;
this.Text14.Interaction = null;
this.Text14.Margins = new Stimulsoft.Report.Components.StiMargins(2, 0, 0, 0);
this.Text14.TextBrush = new Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black);
this.Text14.TextOptions = new Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0F, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None);
//
// HorizontalLinePrimitive1
//
this.HorizontalLinePrimitive1 = new Stimulsoft.Report.Components.StiHorizontalLinePrimitive();
this.HorizontalLinePrimitive1.ClientRectangle = new Stimulsoft.Base.Drawing.RectangleD(0, 0.2, 28.6, 0.0254);
this.HorizontalLinePrimitive1.Color = System.Drawing.Color.Black;
this.HorizontalLinePrimitive1.Guid = "ca9fa1ae8a104b49b4095e1c714c4760";
this.HorizontalLinePrimitive1.Name = "HorizontalLinePrimitive1";
this.HorizontalLinePrimitive1.Style = Stimulsoft.Base.Drawing.StiPenStyle.Double;
this.HorizontalLinePrimitive1.EndCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.HorizontalLinePrimitive1.Interaction = null;
this.HorizontalLinePrimitive1.StartCap = new Stimulsoft.Base.Drawing.StiCap(10, Stimulsoft.Base.Drawing.StiCapStyle.None, 10, true, System.Drawing.Color.Black);
this.ReportSummaryBand1.Interaction = null;
this.Page1.ExcelSheetValue = null;
this.Page1.Interaction = null;
this.Page1.Margins = new Stimulsoft.Report.Components.StiMargins(0.5, 0.5, 0.5, 0.5);
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();
this.PrinterSettings = this.Report_PrinterSettings;
this.Page1.Report = this;
this.Page1.Watermark = this.Page1_Watermark;
this.PageFooterBand1.Page = this.Page1;
this.PageFooterBand1.Parent = this.Page1;
this.Text10.Page = this.Page1;
this.Text10.Parent = this.PageFooterBand1;
this.IntestazioneGruppo1.Page = this.Page1;
this.IntestazioneGruppo1.Parent = this.Page1;
this.Testo51.Page = this.Page1;
this.Testo51.Parent = this.IntestazioneGruppo1;
this.Text38.Page = this.Page1;
this.Text38.Parent = this.IntestazioneGruppo1;
this.Text39.Page = this.Page1;
this.Text39.Parent = this.IntestazioneGruppo1;
this.Text40.Page = this.Page1;
this.Text40.Parent = this.IntestazioneGruppo1;
this.Text41.Page = this.Page1;
this.Text41.Parent = this.IntestazioneGruppo1;
this.Text42.Page = this.Page1;
this.Text42.Parent = this.IntestazioneGruppo1;
this.Text43.Page = this.Page1;
this.Text43.Parent = this.IntestazioneGruppo1;
this.Text44.Page = this.Page1;
this.Text44.Parent = this.IntestazioneGruppo1;
this.Text46.Page = this.Page1;
this.Text46.Parent = this.IntestazioneGruppo1;
this.Text47.Page = this.Page1;
this.Text47.Parent = this.IntestazioneGruppo1;
this.Text48.Page = this.Page1;
this.Text48.Parent = this.IntestazioneGruppo1;
this.Text2.Page = this.Page1;
this.Text2.Parent = this.IntestazioneGruppo1;
this.DataBand1.Page = this.Page1;
this.DataBand1.Parent = this.Page1;
this.Text15.Page = this.Page1;
this.Text15.Parent = this.DataBand1;
this.Text16.Page = this.Page1;
this.Text16.Parent = this.DataBand1;
this.Text45.Page = this.Page1;
this.Text45.Parent = this.DataBand1;
this.Text50.Page = this.Page1;
this.Text50.Parent = this.DataBand1;
this.Text51.Page = this.Page1;
this.Text51.Parent = this.DataBand1;
this.Text52.Page = this.Page1;
this.Text52.Parent = this.DataBand1;
this.Text54.Page = this.Page1;
this.Text54.Parent = this.DataBand1;
this.Text55.Page = this.Page1;
this.Text55.Parent = this.DataBand1;
this.Text56.Page = this.Page1;
this.Text56.Parent = this.DataBand1;
this.Text57.Page = this.Page1;
this.Text57.Parent = this.DataBand1;
this.Text7.Page = this.Page1;
this.Text7.Parent = this.DataBand1;
this.PièPaginaGruppo1.Page = this.Page1;
this.PièPaginaGruppo1.Parent = this.Page1;
this.Testo18.Page = this.Page1;
this.Testo18.Parent = this.PièPaginaGruppo1;
this.Testo19.Page = this.Page1;
this.Testo19.Parent = this.PièPaginaGruppo1;
this.Text1.Page = this.Page1;
this.Text1.Parent = this.PièPaginaGruppo1;
this.Text3.Page = this.Page1;
this.Text3.Parent = this.PièPaginaGruppo1;
this.ReportSummaryBand1.Page = this.Page1;
this.ReportSummaryBand1.Parent = this.Page1;
this.Text9.Page = this.Page1;
this.Text9.Parent = this.ReportSummaryBand1;
this.Text12.Page = this.Page1;
this.Text12.Parent = this.ReportSummaryBand1;
this.Text13.Page = this.Page1;
this.Text13.Parent = this.ReportSummaryBand1;
this.Text14.Page = this.Page1;
this.Text14.Parent = this.ReportSummaryBand1;
this.HorizontalLinePrimitive1.Page = this.Page1;
this.HorizontalLinePrimitive1.Parent = this.ReportSummaryBand1;
this.IntestazioneGruppo1.BeginRender += new System.EventHandler(this.IntestazioneGruppo1__BeginRender);
this.IntestazioneGruppo1.EndRender += new System.EventHandler(this.IntestazioneGruppo1__EndRender);
this.DataBand1.BeginRender += new System.EventHandler(this.DataBand1__BeginRender);
this.DataBand1.EndRender += new System.EventHandler(this.DataBand1__EndRender);
this.IntestazioneGruppo1.Rendering += new System.EventHandler(this.IntestazioneGruppo1__Rendering);
this.DataBand1.Rendering += new System.EventHandler(this.DataBand1__Rendering);
this.EndRender += new System.EventHandler(this.ReportWordsToEnd__EndRender);
this.AggregateFunctions = new object[] {
this.Testo18_Sum,
this.Text3_Count,
this.Text12_Sum,
this.Text14_Count};
//
// Add to PageFooterBand1.Components
//
this.PageFooterBand1.Components.Clear();
this.PageFooterBand1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text10});
//
// Add to IntestazioneGruppo1.Components
//
this.IntestazioneGruppo1.Components.Clear();
this.IntestazioneGruppo1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Testo51,
this.Text38,
this.Text39,
this.Text40,
this.Text41,
this.Text42,
this.Text43,
this.Text44,
this.Text46,
this.Text47,
this.Text48,
this.Text2});
//
// Add to DataBand1.Components
//
this.DataBand1.Components.Clear();
this.DataBand1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text15,
this.Text16,
this.Text45,
this.Text50,
this.Text51,
this.Text52,
this.Text54,
this.Text55,
this.Text56,
this.Text57,
this.Text7});
//
// Add to PièPaginaGruppo1.Components
//
this.PièPaginaGruppo1.Components.Clear();
this.PièPaginaGruppo1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Testo18,
this.Testo19,
this.Text1,
this.Text3});
//
// Add to ReportSummaryBand1.Components
//
this.ReportSummaryBand1.Components.Clear();
this.ReportSummaryBand1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.Text9,
this.Text12,
this.Text13,
this.Text14,
this.HorizontalLinePrimitive1});
//
// Add to Page1.Components
//
this.Page1.Components.Clear();
this.Page1.Components.AddRange(new Stimulsoft.Report.Components.StiComponent[] {
this.PageFooterBand1,
this.IntestazioneGruppo1,
this.DataBand1,
this.PièPaginaGruppo1,
this.ReportSummaryBand1});
//
// Add to Pages
//
this.Pages.Clear();
this.Pages.AddRange(new Stimulsoft.Report.Components.StiPage[] {
this.Page1});
this.ST_VIAGGI.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
new Stimulsoft.Report.Dictionary.StiDataColumn("Mezzo", "Mezzo", "Mezzo", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TipoIntervento", "TipoIntervento", "TipoIntervento", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Tariffa", "Tariffa", "Tariffa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Targa", "Targa", "Targa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Marca", "Marca", "Marca", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Tipo", "Tipo", "Tipo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SiglaRadio", "SiglaRadio", "SiglaRadio", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DescrIntervento", "DescrIntervento", "DescrIntervento", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NumeroUscite", "NumeroUscite", "NumeroUscite", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TariffaUscita", "TariffaUscita", "TariffaUscita", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("KM", "KM", "KM", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TariffaKm", "TariffaKm", "TariffaKm", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Totale", "Totale", "Totale", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Sosta", "Sosta", "Sosta", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TariffaSosta", "TariffaSosta", "TariffaSosta", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SostaM", "SostaM", "SostaM", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SostaH", "SostaH", "SostaH", typeof(int))});
this.DataSources.Add(this.ST_VIAGGI);
this.TABACARICODI.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
new Stimulsoft.Report.Dictionary.StiDataColumn("Codice", "Codice", "Codice", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Descrizione", "Descrizione", "Descrizione", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Notes", "Notes", "Notes", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Cap", "Cap", "Cap", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Comune", "Comune", "Comune", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Indirizzo", "Indirizzo", "Indirizzo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PartitaIva", "PartitaIva", "PartitaIva", typeof(string))});
this.DataSources.Add(this.TABACARICODI);
this.CONTATTI.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
new Stimulsoft.Report.Dictionary.StiDataColumn("Codice", "Codice", "Codice", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Nominativo", "Nominativo", "Nominativo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Indirizzo", "Indirizzo", "Indirizzo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DataNascita", "DataNascita", "DataNascita", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CodiceFiscale", "CodiceFiscale", "CodiceFiscale", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PartitaIva", "PartitaIva", "PartitaIva", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Sesso", "Sesso", "Sesso", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Telefono", "Telefono", "Telefono", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TelefonoUfficio", "TelefonoUfficio", "TelefonoUfficio", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TelefonoCellulare", "TelefonoCellulare", "TelefonoCellulare", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TelefonoAbitazione", "TelefonoAbitazione", "TelefonoAbitazione", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TelefonoAlternativo", "TelefonoAlternativo", "TelefonoAlternativo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NInterno", "NInterno", "NInterno", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Fax", "Fax", "Fax", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CercaPersone", "CercaPersone", "CercaPersone", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("EMail", "EMail", "EMail", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SitoWeb", "SitoWeb", "SitoWeb", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Carica", "Carica", "Carica", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("RepartoCommerciale", "RepartoCommerciale", "RepartoCommerciale", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TipoContatto", "TipoContatto", "TipoContatto", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Frequenza", "Frequenza", "Frequenza", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("InvioMateriale", "InvioMateriale", "InvioMateriale", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Trattamento", "Trattamento", "Trattamento", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Attivo", "Attivo", "Attivo", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Notes", "Notes", "Notes", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Presentato", "Presentato", "Presentato", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Fatturato", "Fatturato", "Fatturato", typeof(double)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PersonaRiferimento", "PersonaRiferimento", "PersonaRiferimento", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DataPrimoContatto", "DataPrimoContatto", "DataPrimoContatto", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DataProssimoContatto", "DataProssimoContatto", "DataProssimoContatto", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DaContattare", "DaContattare", "DaContattare", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Raggruppamento", "Raggruppamento", "Raggruppamento", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Provvigione", "Provvigione", "Provvigione", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NumeroSolleciti", "NumeroSolleciti", "NumeroSolleciti", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NumeroInsoluti", "NumeroInsoluti", "NumeroInsoluti", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ImportoInsoluti", "ImportoInsoluti", "ImportoInsoluti", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Valuta", "Valuta", "Valuta", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("IntraCEE", "IntraCEE", "IntraCEE", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Professione", "Professione", "Professione", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DataAcquisizione", "DataAcquisizione", "DataAcquisizione", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Attivita", "Attivita", "Attivita", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Attivita2", "Attivita2", "Attivita2", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NoteMarketing", "NoteMarketing", "NoteMarketing", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Comune", "Comune", "Comune", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Banca", "Banca", "Banca", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CondPag", "CondPag", "CondPag", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Resa", "Resa", "Resa", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("LuogoResa", "LuogoResa", "LuogoResa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Porto", "Porto", "Porto", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Spedizione", "Spedizione", "Spedizione", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Vettore", "Vettore", "Vettore", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CodIva", "CodIva", "CodIva", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("FormatRagSoc", "FormatRagSoc", "FormatRagSoc", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("FormatIndirizzo", "FormatIndirizzo", "FormatIndirizzo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NoteQualita", "NoteQualita", "NoteQualita", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NDal", "NDal", "NDal", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Nal", "Nal", "Nal", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NFattura", "NFattura", "NFattura", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NFatturaDel", "NFatturaDel", "NFatturaDel", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NOrdine", "NOrdine", "NOrdine", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NFornitore", "NFornitore", "NFornitore", typeof(string))});
this.DataSources.Add(this.CONTATTI);
this.TABTIPOINTERVENTO.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
new Stimulsoft.Report.Dictionary.StiDataColumn("Codice", "Codice", "Codice", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Descrizione", "Descrizione", "Descrizione", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Notes", "Notes", "Notes", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Urgenza", "Urgenza", "Urgenza", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("UTIF", "UTIF", "UTIF", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Num", "Num", "Num", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NumT", "NumT", "NumT", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("KM", "KM", "KM", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("KMT", "KMT", "KMT", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Sosta", "Sosta", "Sosta", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SostaT", "SostaT", "SostaT", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SostaH", "SostaH", "SostaH", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SostaM", "SostaM", "SostaM", typeof(int))});
this.DataSources.Add(this.TABTIPOINTERVENTO);
this.VIAGGI.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
new Stimulsoft.Report.Dictionary.StiDataColumn("Anno", "Anno", "Anno", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Mese", "Mese", "Mese", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Codice", "Codice", "Codice", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DataDocumento", "DataDocumento", "DataDocumento", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DaOra", "DaOra", "DaOra", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("AOra", "AOra", "AOra", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Mezzo", "Mezzo", "Mezzo", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("KMPartenza", "KMPartenza", "KMPartenza", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("KMArrivo", "KMArrivo", "KMArrivo", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Comune", "Comune", "Comune", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Paziente", "Paziente", "Paziente", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Indirizzo", "Indirizzo", "Indirizzo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Eta", "Eta", "Eta", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Prelevato", "Prelevato", "Prelevato", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ComunePrelevato", "ComunePrelevato", "ComunePrelevato", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Trasportato", "Trasportato", "Trasportato", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ComuneTrasportato", "ComuneTrasportato", "ComuneTrasportato", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("KMPercorsi", "KMPercorsi", "KMPercorsi", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Tariffa", "Tariffa", "Tariffa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ACaricoDi", "ACaricoDi", "ACaricoDi", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("RichiestoDa", "RichiestoDa", "RichiestoDa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Area", "Area", "Area", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Trasporto", "Trasporto", "Trasporto", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("UTIF", "UTIF", "UTIF", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TipoIntervento", "TipoIntervento", "TipoIntervento", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NumeroPersone", "NumeroPersone", "NumeroPersone", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("FreqRespiro", "FreqRespiro", "FreqRespiro", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PresArt", "PresArt", "PresArt", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("FreqCardiaca", "FreqCardiaca", "FreqCardiaca", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NoteIntervento", "NoteIntervento", "NoteIntervento", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("LuogoIntervento", "LuogoIntervento", "LuogoIntervento", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("AltraPatologia", "AltraPatologia", "AltraPatologia", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Patologia", "Patologia", "Patologia", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Gravita", "Gravita", "Gravita", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("GravitaPosto", "GravitaPosto", "GravitaPosto", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("GravitaPS", "GravitaPS", "GravitaPS", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("AutoMedicale", "AutoMedicale", "AutoMedicale", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NumeroMissione", "NumeroMissione", "NumeroMissione", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Urgenza", "Urgenza", "Urgenza", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Notes", "Notes", "Notes", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Oblazione", "Oblazione", "Oblazione", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("AnnoOblazione", "AnnoOblazione", "AnnoOblazione", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CodiceOblazione", "CodiceOblazione", "CodiceOblazione", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("InterventoDi", "InterventoDi", "InterventoDi", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SostaOraria", "SostaOraria", "SostaOraria", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TariffaUscita", "TariffaUscita", "TariffaUscita", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TariffaUscitaKm", "TariffaUscitaKm", "TariffaUscitaKm", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TariffaSosta", "TariffaSosta", "TariffaSosta", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TariffaVitto", "TariffaVitto", "TariffaVitto", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TariffaForfettaria", "TariffaForfettaria", "TariffaForfettaria", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Altri1", "Altri1", "Altri1", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Altri2", "Altri2", "Altri2", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Totale", "Totale", "Totale", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NominativoFatturazione", "NominativoFatturazione", "NominativoFatturazione", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CodiceFiscale", "CodiceFiscale", "CodiceFiscale", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Sosta", "Sosta", "Sosta", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Oblazione2", "Oblazione2", "Oblazione2", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("MedicoCodice", "MedicoCodice", "MedicoCodice", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("StrutturaCodice", "StrutturaCodice", "StrutturaCodice", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PazienteCodice", "PazienteCodice", "PazienteCodice", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("EnteCodice", "EnteCodice", "EnteCodice", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TRASPORTATOCAP", "TRASPORTATOCAP", "TRASPORTATOCAP", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TRASPORTATOCOMUNE", "TRASPORTATOCOMUNE", "TRASPORTATOCOMUNE", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PAZIENTECAP", "PAZIENTECAP", "PAZIENTECAP", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PAZIENTECOMUNE", "PAZIENTECOMUNE", "PAZIENTECOMUNE", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PRELEVATOCAP", "PRELEVATOCAP", "PRELEVATOCAP", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PRELEVATOCOMUNE", "PRELEVATOCOMUNE", "PRELEVATOCOMUNE", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ACARICONOMINATIVO", "ACARICONOMINATIVO", "ACARICONOMINATIVO", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("AREADESCRIZIONE", "AREADESCRIZIONE", "AREADESCRIZIONE", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TABTIPOINTERVENTODESCRIZIONE", "TABTIPOINTERVENTODESCRIZIONE", "TABTIPOINTERVENTODESCRIZIONE", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Tipo", "Tipo", "Tipo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Marca", "Marca", "Marca", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Attivo", "Attivo", "Attivo", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Cilindrata", "Cilindrata", "Cilindrata", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Potenza", "Potenza", "Potenza", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Combustibile", "Combustibile", "Combustibile", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("AnnoImmatricolazione", "AnnoImmatricolazione", "AnnoImmatricolazione", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Targa", "Targa", "Targa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TipoAmbulanza", "TipoAmbulanza", "TipoAmbulanza", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SiglaRadio", "SiglaRadio", "SiglaRadio", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("UltimaRevisione", "UltimaRevisione", "UltimaRevisione", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ContaChilometri", "ContaChilometri", "ContaChilometri", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("UltimaUscita", "UltimaUscita", "UltimaUscita", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Codice1", "Codice1", "Codice1", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("UTIF1", "UTIF1", "UTIF1", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Notes1", "Notes1", "Notes1", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NOMINATIVOMILITE", "NOMINATIVOMILITE", "NOMINATIVOMILITE", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("POSIZIONE", "POSIZIONE", "POSIZIONE", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TIPO", "TIPO", "TIPO", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("MARCA", "MARCA", "MARCA", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CILINDRATA", "CILINDRATA", "CILINDRATA", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("POTENZA", "POTENZA", "POTENZA", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("COMBUSTIBILE", "COMBUSTIBILE", "COMBUSTIBILE", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TARGA", "TARGA", "TARGA", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SIGLARADIO", "SIGLARADIO", "SIGLARADIO", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DESCRINTERVENTO", "DESCRINTERVENTO", "DESCRINTERVENTO", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("HH", "HH", "HH", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("MM", "MM", "MM", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DESCRCARBURANTE", "DESCRCARBURANTE", "DESCRCARBURANTE", typeof(string))});
this.DataSources.Add(this.VIAGGI);
this.PARAMETRI.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
new Stimulsoft.Report.Dictionary.StiDataColumn("DAL", "DAL", "DAL", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("AL", "AL", "AL", typeof(DateTime))});
this.DataSources.Add(this.PARAMETRI);
this.AZIENDA.Columns.AddRange(new Stimulsoft.Report.Dictionary.StiDataColumn[] {
new Stimulsoft.Report.Dictionary.StiDataColumn("Codice", "Codice", "Codice", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Nominativo", "Nominativo", "Nominativo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Indirizzo", "Indirizzo", "Indirizzo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DataNascita", "DataNascita", "DataNascita", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CodiceFiscale", "CodiceFiscale", "CodiceFiscale", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PartitaIva", "PartitaIva", "PartitaIva", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Sesso", "Sesso", "Sesso", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Telefono", "Telefono", "Telefono", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TelefonoUfficio", "TelefonoUfficio", "TelefonoUfficio", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TelefonoCellulare", "TelefonoCellulare", "TelefonoCellulare", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TelefonoAbitazione", "TelefonoAbitazione", "TelefonoAbitazione", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TelefonoAlternativo", "TelefonoAlternativo", "TelefonoAlternativo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NInterno", "NInterno", "NInterno", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Fax", "Fax", "Fax", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CercaPersone", "CercaPersone", "CercaPersone", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("EMail", "EMail", "EMail", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("SitoWeb", "SitoWeb", "SitoWeb", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Carica", "Carica", "Carica", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("RepartoCommerciale", "RepartoCommerciale", "RepartoCommerciale", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("TipoContatto", "TipoContatto", "TipoContatto", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Frequenza", "Frequenza", "Frequenza", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("InvioMateriale", "InvioMateriale", "InvioMateriale", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Trattamento", "Trattamento", "Trattamento", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Attivo", "Attivo", "Attivo", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Notes", "Notes", "Notes", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Presentato", "Presentato", "Presentato", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Fatturato", "Fatturato", "Fatturato", typeof(double)),
new Stimulsoft.Report.Dictionary.StiDataColumn("PersonaRiferimento", "PersonaRiferimento", "PersonaRiferimento", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DataPrimoContatto", "DataPrimoContatto", "DataPrimoContatto", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DataProssimoContatto", "DataProssimoContatto", "DataProssimoContatto", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DaContattare", "DaContattare", "DaContattare", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Raggruppamento", "Raggruppamento", "Raggruppamento", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Provvigione", "Provvigione", "Provvigione", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NumeroSolleciti", "NumeroSolleciti", "NumeroSolleciti", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NumeroInsoluti", "NumeroInsoluti", "NumeroInsoluti", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ImportoInsoluti", "ImportoInsoluti", "ImportoInsoluti", typeof(decimal)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Valuta", "Valuta", "Valuta", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("IntraCEE", "IntraCEE", "IntraCEE", typeof(bool)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Professione", "Professione", "Professione", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DataAcquisizione", "DataAcquisizione", "DataAcquisizione", typeof(DateTime)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Attivita", "Attivita", "Attivita", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Attivita2", "Attivita2", "Attivita2", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NoteMarketing", "NoteMarketing", "NoteMarketing", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Comune", "Comune", "Comune", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Banca", "Banca", "Banca", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CondPag", "CondPag", "CondPag", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Resa", "Resa", "Resa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("LuogoResa", "LuogoResa", "LuogoResa", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Porto", "Porto", "Porto", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Spedizione", "Spedizione", "Spedizione", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Vettore", "Vettore", "Vettore", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CodIva", "CodIva", "CodIva", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("FormatRagSoc", "FormatRagSoc", "FormatRagSoc", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("FormatIndirizzo", "FormatIndirizzo", "FormatIndirizzo", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NoteQualita", "NoteQualita", "NoteQualita", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Logo", "Logo", "Logo", typeof(byte[])),
new Stimulsoft.Report.Dictionary.StiDataColumn("Magazzino", "Magazzino", "Magazzino", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Sezionario", "Sezionario", "Sezionario", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("Magazzino2", "Magazzino2", "Magazzino2", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CodiceEnte", "CodiceEnte", "CodiceEnte", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CodiceAzienda", "CodiceAzienda", "CodiceAzienda", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("MaxKm", "MaxKm", "MaxKm", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("ABICODE", "ABICODE", "ABICODE", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CABCODE", "CABCODE", "CABCODE", typeof(int)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DESCRIZIONEBANCA", "DESCRIZIONEBANCA", "DESCRIZIONEBANCA", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CONTOCORRENTE", "CONTOCORRENTE", "CONTOCORRENTE", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("DESCRIZIONECOMUNE", "DESCRIZIONECOMUNE", "DESCRIZIONECOMUNE", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("CAPCOMUNE", "CAPCOMUNE", "CAPCOMUNE", typeof(string)),
new Stimulsoft.Report.Dictionary.StiDataColumn("NAZIONECOMUNE", "NAZIONECOMUNE", "NAZIONECOMUNE", typeof(string))});
this.DataSources.Add(this.AZIENDA);
}

#region DataSource ST_VIAGGI
public class ST_VIAGGIDataSource : Stimulsoft.Report.Dictionary.StiDataTableSource
{

public ST_VIAGGIDataSource() :
base("NewDataSet.ST_VIAGGI", "ST_VIAGGI")
{
}

public virtual int Mezzo
{
get
{
return ((int)(StiReport.ChangeType(this["Mezzo"], typeof(int), true)));
}
}

public virtual string TipoIntervento
{
get
{
return ((string)(StiReport.ChangeType(this["TipoIntervento"], typeof(string), true)));
}
}

public virtual string Tariffa
{
get
{
return ((string)(StiReport.ChangeType(this["Tariffa"], typeof(string), true)));
}
}

public virtual string Targa
{
get
{
return ((string)(StiReport.ChangeType(this["Targa"], typeof(string), true)));
}
}

public virtual string Marca
{
get
{
return ((string)(StiReport.ChangeType(this["Marca"], typeof(string), true)));
}
}

public virtual string Tipo
{
get
{
return ((string)(StiReport.ChangeType(this["Tipo"], typeof(string), true)));
}
}

public virtual string SiglaRadio
{
get
{
return ((string)(StiReport.ChangeType(this["SiglaRadio"], typeof(string), true)));
}
}

public virtual string DescrIntervento
{
get
{
return ((string)(StiReport.ChangeType(this["DescrIntervento"], typeof(string), true)));
}
}

public virtual int NumeroUscite
{
get
{
return ((int)(StiReport.ChangeType(this["NumeroUscite"], typeof(int), true)));
}
}

public virtual decimal TariffaUscita
{
get
{
return ((decimal)(StiReport.ChangeType(this["TariffaUscita"], typeof(decimal), true)));
}
}

public virtual int KM
{
get
{
return ((int)(StiReport.ChangeType(this["KM"], typeof(int), true)));
}
}

public virtual decimal TariffaKm
{
get
{
return ((decimal)(StiReport.ChangeType(this["TariffaKm"], typeof(decimal), true)));
}
}

public virtual decimal Totale
{
get
{
return ((decimal)(StiReport.ChangeType(this["Totale"], typeof(decimal), true)));
}
}

public virtual decimal Sosta
{
get
{
return ((decimal)(StiReport.ChangeType(this["Sosta"], typeof(decimal), true)));
}
}

public virtual decimal TariffaSosta
{
get
{
return ((decimal)(StiReport.ChangeType(this["TariffaSosta"], typeof(decimal), true)));
}
}

public virtual int SostaM
{
get
{
return ((int)(StiReport.ChangeType(this["SostaM"], typeof(int), true)));
}
}

public virtual int SostaH
{
get
{
return ((int)(StiReport.ChangeType(this["SostaH"], typeof(int), true)));
}
}
}
#endregion DataSource ST_VIAGGI

#region DataSource TABACARICODI
public class TABACARICODIDataSource : Stimulsoft.Report.Dictionary.StiDataTableSource
{

public TABACARICODIDataSource() :
base("NewDataSet.TABACARICODI", "TABACARICODI")
{
}

public virtual string Codice
{
get
{
return ((string)(StiReport.ChangeType(this["Codice"], typeof(string), true)));
}
}

public virtual string Descrizione
{
get
{
return ((string)(StiReport.ChangeType(this["Descrizione"], typeof(string), true)));
}
}

public virtual string Notes
{
get
{
return ((string)(StiReport.ChangeType(this["Notes"], typeof(string), true)));
}
}

public virtual string Cap
{
get
{
return ((string)(StiReport.ChangeType(this["Cap"], typeof(string), true)));
}
}

public virtual string Comune
{
get
{
return ((string)(StiReport.ChangeType(this["Comune"], typeof(string), true)));
}
}

public virtual string Indirizzo
{
get
{
return ((string)(StiReport.ChangeType(this["Indirizzo"], typeof(string), true)));
}
}

public virtual string PartitaIva
{
get
{
return ((string)(StiReport.ChangeType(this["PartitaIva"], typeof(string), true)));
}
}
}
#endregion DataSource TABACARICODI

#region DataSource CONTATTI
public class CONTATTIDataSource : Stimulsoft.Report.Dictionary.StiDataTableSource
{

public CONTATTIDataSource() :
base("NewDataSet.CONTATTI", "CONTATTI")
{
}

public virtual int Codice
{
get
{
return ((int)(StiReport.ChangeType(this["Codice"], typeof(int), true)));
}
}

public virtual string Nominativo
{
get
{
return ((string)(StiReport.ChangeType(this["Nominativo"], typeof(string), true)));
}
}

public virtual string Indirizzo
{
get
{
return ((string)(StiReport.ChangeType(this["Indirizzo"], typeof(string), true)));
}
}

public virtual DateTime DataNascita
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DataNascita"], typeof(DateTime), true)));
}
}

public virtual string CodiceFiscale
{
get
{
return ((string)(StiReport.ChangeType(this["CodiceFiscale"], typeof(string), true)));
}
}

public virtual string PartitaIva
{
get
{
return ((string)(StiReport.ChangeType(this["PartitaIva"], typeof(string), true)));
}
}

public virtual int Sesso
{
get
{
return ((int)(StiReport.ChangeType(this["Sesso"], typeof(int), true)));
}
}

public virtual string Telefono
{
get
{
return ((string)(StiReport.ChangeType(this["Telefono"], typeof(string), true)));
}
}

public virtual string TelefonoUfficio
{
get
{
return ((string)(StiReport.ChangeType(this["TelefonoUfficio"], typeof(string), true)));
}
}

public virtual string TelefonoCellulare
{
get
{
return ((string)(StiReport.ChangeType(this["TelefonoCellulare"], typeof(string), true)));
}
}

public virtual string TelefonoAbitazione
{
get
{
return ((string)(StiReport.ChangeType(this["TelefonoAbitazione"], typeof(string), true)));
}
}

public virtual string TelefonoAlternativo
{
get
{
return ((string)(StiReport.ChangeType(this["TelefonoAlternativo"], typeof(string), true)));
}
}

public virtual string NInterno
{
get
{
return ((string)(StiReport.ChangeType(this["NInterno"], typeof(string), true)));
}
}

public virtual string Fax
{
get
{
return ((string)(StiReport.ChangeType(this["Fax"], typeof(string), true)));
}
}

public virtual string CercaPersone
{
get
{
return ((string)(StiReport.ChangeType(this["CercaPersone"], typeof(string), true)));
}
}

public virtual string EMail
{
get
{
return ((string)(StiReport.ChangeType(this["EMail"], typeof(string), true)));
}
}

public virtual string SitoWeb
{
get
{
return ((string)(StiReport.ChangeType(this["SitoWeb"], typeof(string), true)));
}
}

public virtual int Carica
{
get
{
return ((int)(StiReport.ChangeType(this["Carica"], typeof(int), true)));
}
}

public virtual int RepartoCommerciale
{
get
{
return ((int)(StiReport.ChangeType(this["RepartoCommerciale"], typeof(int), true)));
}
}

public virtual int TipoContatto
{
get
{
return ((int)(StiReport.ChangeType(this["TipoContatto"], typeof(int), true)));
}
}

public virtual int Frequenza
{
get
{
return ((int)(StiReport.ChangeType(this["Frequenza"], typeof(int), true)));
}
}

public virtual bool InvioMateriale
{
get
{
return ((bool)(StiReport.ChangeType(this["InvioMateriale"], typeof(bool), true)));
}
}

public virtual bool Trattamento
{
get
{
return ((bool)(StiReport.ChangeType(this["Trattamento"], typeof(bool), true)));
}
}

public virtual bool Attivo
{
get
{
return ((bool)(StiReport.ChangeType(this["Attivo"], typeof(bool), true)));
}
}

public virtual string Notes
{
get
{
return ((string)(StiReport.ChangeType(this["Notes"], typeof(string), true)));
}
}

public virtual int Presentato
{
get
{
return ((int)(StiReport.ChangeType(this["Presentato"], typeof(int), true)));
}
}

public virtual double Fatturato
{
get
{
return ((double)(StiReport.ChangeType(this["Fatturato"], typeof(double), true)));
}
}

public virtual string PersonaRiferimento
{
get
{
return ((string)(StiReport.ChangeType(this["PersonaRiferimento"], typeof(string), true)));
}
}

public virtual DateTime DataPrimoContatto
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DataPrimoContatto"], typeof(DateTime), true)));
}
}

public virtual DateTime DataProssimoContatto
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DataProssimoContatto"], typeof(DateTime), true)));
}
}

public virtual bool DaContattare
{
get
{
return ((bool)(StiReport.ChangeType(this["DaContattare"], typeof(bool), true)));
}
}

public virtual int Raggruppamento
{
get
{
return ((int)(StiReport.ChangeType(this["Raggruppamento"], typeof(int), true)));
}
}

public virtual decimal Provvigione
{
get
{
return ((decimal)(StiReport.ChangeType(this["Provvigione"], typeof(decimal), true)));
}
}

public virtual int NumeroSolleciti
{
get
{
return ((int)(StiReport.ChangeType(this["NumeroSolleciti"], typeof(int), true)));
}
}

public virtual int NumeroInsoluti
{
get
{
return ((int)(StiReport.ChangeType(this["NumeroInsoluti"], typeof(int), true)));
}
}

public virtual decimal ImportoInsoluti
{
get
{
return ((decimal)(StiReport.ChangeType(this["ImportoInsoluti"], typeof(decimal), true)));
}
}

public virtual int Valuta
{
get
{
return ((int)(StiReport.ChangeType(this["Valuta"], typeof(int), true)));
}
}

public virtual bool IntraCEE
{
get
{
return ((bool)(StiReport.ChangeType(this["IntraCEE"], typeof(bool), true)));
}
}

public virtual string Professione
{
get
{
return ((string)(StiReport.ChangeType(this["Professione"], typeof(string), true)));
}
}

public virtual DateTime DataAcquisizione
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DataAcquisizione"], typeof(DateTime), true)));
}
}

public virtual int Attivita
{
get
{
return ((int)(StiReport.ChangeType(this["Attivita"], typeof(int), true)));
}
}

public virtual int Attivita2
{
get
{
return ((int)(StiReport.ChangeType(this["Attivita2"], typeof(int), true)));
}
}

public virtual string NoteMarketing
{
get
{
return ((string)(StiReport.ChangeType(this["NoteMarketing"], typeof(string), true)));
}
}

public virtual int Comune
{
get
{
return ((int)(StiReport.ChangeType(this["Comune"], typeof(int), true)));
}
}

public virtual string Banca
{
get
{
return ((string)(StiReport.ChangeType(this["Banca"], typeof(string), true)));
}
}

public virtual string CondPag
{
get
{
return ((string)(StiReport.ChangeType(this["CondPag"], typeof(string), true)));
}
}

public virtual int Resa
{
get
{
return ((int)(StiReport.ChangeType(this["Resa"], typeof(int), true)));
}
}

public virtual string LuogoResa
{
get
{
return ((string)(StiReport.ChangeType(this["LuogoResa"], typeof(string), true)));
}
}

public virtual int Porto
{
get
{
return ((int)(StiReport.ChangeType(this["Porto"], typeof(int), true)));
}
}

public virtual int Spedizione
{
get
{
return ((int)(StiReport.ChangeType(this["Spedizione"], typeof(int), true)));
}
}

public virtual int Vettore
{
get
{
return ((int)(StiReport.ChangeType(this["Vettore"], typeof(int), true)));
}
}

public virtual string CodIva
{
get
{
return ((string)(StiReport.ChangeType(this["CodIva"], typeof(string), true)));
}
}

public virtual string FormatRagSoc
{
get
{
return ((string)(StiReport.ChangeType(this["FormatRagSoc"], typeof(string), true)));
}
}

public virtual string FormatIndirizzo
{
get
{
return ((string)(StiReport.ChangeType(this["FormatIndirizzo"], typeof(string), true)));
}
}

public virtual string NoteQualita
{
get
{
return ((string)(StiReport.ChangeType(this["NoteQualita"], typeof(string), true)));
}
}

public virtual DateTime NDal
{
get
{
return ((DateTime)(StiReport.ChangeType(this["NDal"], typeof(DateTime), true)));
}
}

public virtual DateTime Nal
{
get
{
return ((DateTime)(StiReport.ChangeType(this["Nal"], typeof(DateTime), true)));
}
}

public virtual int NFattura
{
get
{
return ((int)(StiReport.ChangeType(this["NFattura"], typeof(int), true)));
}
}

public virtual DateTime NFatturaDel
{
get
{
return ((DateTime)(StiReport.ChangeType(this["NFatturaDel"], typeof(DateTime), true)));
}
}

public virtual int NOrdine
{
get
{
return ((int)(StiReport.ChangeType(this["NOrdine"], typeof(int), true)));
}
}

public virtual string NFornitore
{
get
{
return ((string)(StiReport.ChangeType(this["NFornitore"], typeof(string), true)));
}
}
}
#endregion DataSource CONTATTI

#region DataSource TABTIPOINTERVENTO
public class TABTIPOINTERVENTODataSource : Stimulsoft.Report.Dictionary.StiDataTableSource
{

public TABTIPOINTERVENTODataSource() :
base("NewDataSet.TABTIPOINTERVENTO", "TABTIPOINTERVENTO")
{
}

public virtual string Codice
{
get
{
return ((string)(StiReport.ChangeType(this["Codice"], typeof(string), true)));
}
}

public virtual string Descrizione
{
get
{
return ((string)(StiReport.ChangeType(this["Descrizione"], typeof(string), true)));
}
}

public virtual string Notes
{
get
{
return ((string)(StiReport.ChangeType(this["Notes"], typeof(string), true)));
}
}

public virtual bool Urgenza
{
get
{
return ((bool)(StiReport.ChangeType(this["Urgenza"], typeof(bool), true)));
}
}

public virtual bool UTIF
{
get
{
return ((bool)(StiReport.ChangeType(this["UTIF"], typeof(bool), true)));
}
}

public virtual decimal Num
{
get
{
return ((decimal)(StiReport.ChangeType(this["Num"], typeof(decimal), true)));
}
}

public virtual decimal NumT
{
get
{
return ((decimal)(StiReport.ChangeType(this["NumT"], typeof(decimal), true)));
}
}

public virtual decimal KM
{
get
{
return ((decimal)(StiReport.ChangeType(this["KM"], typeof(decimal), true)));
}
}

public virtual decimal KMT
{
get
{
return ((decimal)(StiReport.ChangeType(this["KMT"], typeof(decimal), true)));
}
}

public virtual decimal Sosta
{
get
{
return ((decimal)(StiReport.ChangeType(this["Sosta"], typeof(decimal), true)));
}
}

public virtual decimal SostaT
{
get
{
return ((decimal)(StiReport.ChangeType(this["SostaT"], typeof(decimal), true)));
}
}

public virtual int SostaH
{
get
{
return ((int)(StiReport.ChangeType(this["SostaH"], typeof(int), true)));
}
}

public virtual int SostaM
{
get
{
return ((int)(StiReport.ChangeType(this["SostaM"], typeof(int), true)));
}
}
}
#endregion DataSource TABTIPOINTERVENTO

#region DataSource VIAGGI
public class VIAGGIDataSource : Stimulsoft.Report.Dictionary.StiDataTableSource
{

public VIAGGIDataSource() :
base("NewDataSet.VIAGGI", "VIAGGI")
{
}

public virtual int Anno
{
get
{
return ((int)(StiReport.ChangeType(this["Anno"], typeof(int), true)));
}
}

public virtual int Mese
{
get
{
return ((int)(StiReport.ChangeType(this["Mese"], typeof(int), true)));
}
}

public virtual int Codice
{
get
{
return ((int)(StiReport.ChangeType(this["Codice"], typeof(int), true)));
}
}

public virtual DateTime DataDocumento
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DataDocumento"], typeof(DateTime), true)));
}
}

public virtual string DaOra
{
get
{
return ((string)(StiReport.ChangeType(this["DaOra"], typeof(string), true)));
}
}

public virtual string AOra
{
get
{
return ((string)(StiReport.ChangeType(this["AOra"], typeof(string), true)));
}
}

public virtual int Mezzo
{
get
{
return ((int)(StiReport.ChangeType(this["Mezzo"], typeof(int), true)));
}
}

public virtual int KMPartenza
{
get
{
return ((int)(StiReport.ChangeType(this["KMPartenza"], typeof(int), true)));
}
}

public virtual int KMArrivo
{
get
{
return ((int)(StiReport.ChangeType(this["KMArrivo"], typeof(int), true)));
}
}

public virtual int Comune
{
get
{
return ((int)(StiReport.ChangeType(this["Comune"], typeof(int), true)));
}
}

public virtual string Paziente
{
get
{
return ((string)(StiReport.ChangeType(this["Paziente"], typeof(string), true)));
}
}

public virtual string Indirizzo
{
get
{
return ((string)(StiReport.ChangeType(this["Indirizzo"], typeof(string), true)));
}
}

public virtual int Eta
{
get
{
return ((int)(StiReport.ChangeType(this["Eta"], typeof(int), true)));
}
}

public virtual string Prelevato
{
get
{
return ((string)(StiReport.ChangeType(this["Prelevato"], typeof(string), true)));
}
}

public virtual int ComunePrelevato
{
get
{
return ((int)(StiReport.ChangeType(this["ComunePrelevato"], typeof(int), true)));
}
}

public virtual string Trasportato
{
get
{
return ((string)(StiReport.ChangeType(this["Trasportato"], typeof(string), true)));
}
}

public virtual int ComuneTrasportato
{
get
{
return ((int)(StiReport.ChangeType(this["ComuneTrasportato"], typeof(int), true)));
}
}

public virtual int KMPercorsi
{
get
{
return ((int)(StiReport.ChangeType(this["KMPercorsi"], typeof(int), true)));
}
}

public virtual string Tariffa
{
get
{
return ((string)(StiReport.ChangeType(this["Tariffa"], typeof(string), true)));
}
}

public virtual string ACaricoDi
{
get
{
return ((string)(StiReport.ChangeType(this["ACaricoDi"], typeof(string), true)));
}
}

public virtual string RichiestoDa
{
get
{
return ((string)(StiReport.ChangeType(this["RichiestoDa"], typeof(string), true)));
}
}

public virtual string Area
{
get
{
return ((string)(StiReport.ChangeType(this["Area"], typeof(string), true)));
}
}

public virtual string Trasporto
{
get
{
return ((string)(StiReport.ChangeType(this["Trasporto"], typeof(string), true)));
}
}

public virtual bool UTIF
{
get
{
return ((bool)(StiReport.ChangeType(this["UTIF"], typeof(bool), true)));
}
}

public virtual string TipoIntervento
{
get
{
return ((string)(StiReport.ChangeType(this["TipoIntervento"], typeof(string), true)));
}
}

public virtual int NumeroPersone
{
get
{
return ((int)(StiReport.ChangeType(this["NumeroPersone"], typeof(int), true)));
}
}

public virtual string FreqRespiro
{
get
{
return ((string)(StiReport.ChangeType(this["FreqRespiro"], typeof(string), true)));
}
}

public virtual string PresArt
{
get
{
return ((string)(StiReport.ChangeType(this["PresArt"], typeof(string), true)));
}
}

public virtual string FreqCardiaca
{
get
{
return ((string)(StiReport.ChangeType(this["FreqCardiaca"], typeof(string), true)));
}
}

public virtual string NoteIntervento
{
get
{
return ((string)(StiReport.ChangeType(this["NoteIntervento"], typeof(string), true)));
}
}

public virtual string LuogoIntervento
{
get
{
return ((string)(StiReport.ChangeType(this["LuogoIntervento"], typeof(string), true)));
}
}

public virtual string AltraPatologia
{
get
{
return ((string)(StiReport.ChangeType(this["AltraPatologia"], typeof(string), true)));
}
}

public virtual string Patologia
{
get
{
return ((string)(StiReport.ChangeType(this["Patologia"], typeof(string), true)));
}
}

public virtual string Gravita
{
get
{
return ((string)(StiReport.ChangeType(this["Gravita"], typeof(string), true)));
}
}

public virtual string GravitaPosto
{
get
{
return ((string)(StiReport.ChangeType(this["GravitaPosto"], typeof(string), true)));
}
}

public virtual string GravitaPS
{
get
{
return ((string)(StiReport.ChangeType(this["GravitaPS"], typeof(string), true)));
}
}

public virtual bool AutoMedicale
{
get
{
return ((bool)(StiReport.ChangeType(this["AutoMedicale"], typeof(bool), true)));
}
}

public virtual string NumeroMissione
{
get
{
return ((string)(StiReport.ChangeType(this["NumeroMissione"], typeof(string), true)));
}
}

public virtual bool Urgenza
{
get
{
return ((bool)(StiReport.ChangeType(this["Urgenza"], typeof(bool), true)));
}
}

public virtual string Notes
{
get
{
return ((string)(StiReport.ChangeType(this["Notes"], typeof(string), true)));
}
}

public virtual bool Oblazione
{
get
{
return ((bool)(StiReport.ChangeType(this["Oblazione"], typeof(bool), true)));
}
}

public virtual int AnnoOblazione
{
get
{
return ((int)(StiReport.ChangeType(this["AnnoOblazione"], typeof(int), true)));
}
}

public virtual int CodiceOblazione
{
get
{
return ((int)(StiReport.ChangeType(this["CodiceOblazione"], typeof(int), true)));
}
}

public virtual string InterventoDi
{
get
{
return ((string)(StiReport.ChangeType(this["InterventoDi"], typeof(string), true)));
}
}

public virtual decimal SostaOraria
{
get
{
return ((decimal)(StiReport.ChangeType(this["SostaOraria"], typeof(decimal), true)));
}
}

public virtual decimal TariffaUscita
{
get
{
return ((decimal)(StiReport.ChangeType(this["TariffaUscita"], typeof(decimal), true)));
}
}

public virtual decimal TariffaUscitaKm
{
get
{
return ((decimal)(StiReport.ChangeType(this["TariffaUscitaKm"], typeof(decimal), true)));
}
}

public virtual decimal TariffaSosta
{
get
{
return ((decimal)(StiReport.ChangeType(this["TariffaSosta"], typeof(decimal), true)));
}
}

public virtual decimal TariffaVitto
{
get
{
return ((decimal)(StiReport.ChangeType(this["TariffaVitto"], typeof(decimal), true)));
}
}

public virtual decimal TariffaForfettaria
{
get
{
return ((decimal)(StiReport.ChangeType(this["TariffaForfettaria"], typeof(decimal), true)));
}
}

public virtual string Altri1
{
get
{
return ((string)(StiReport.ChangeType(this["Altri1"], typeof(string), true)));
}
}

public virtual string Altri2
{
get
{
return ((string)(StiReport.ChangeType(this["Altri2"], typeof(string), true)));
}
}

public virtual decimal Totale
{
get
{
return ((decimal)(StiReport.ChangeType(this["Totale"], typeof(decimal), true)));
}
}

public virtual string NominativoFatturazione
{
get
{
return ((string)(StiReport.ChangeType(this["NominativoFatturazione"], typeof(string), true)));
}
}

public virtual string CodiceFiscale
{
get
{
return ((string)(StiReport.ChangeType(this["CodiceFiscale"], typeof(string), true)));
}
}

public virtual string Sosta
{
get
{
return ((string)(StiReport.ChangeType(this["Sosta"], typeof(string), true)));
}
}

public virtual bool Oblazione2
{
get
{
return ((bool)(StiReport.ChangeType(this["Oblazione2"], typeof(bool), true)));
}
}

public virtual string MedicoCodice
{
get
{
return ((string)(StiReport.ChangeType(this["MedicoCodice"], typeof(string), true)));
}
}

public virtual string StrutturaCodice
{
get
{
return ((string)(StiReport.ChangeType(this["StrutturaCodice"], typeof(string), true)));
}
}

public virtual string PazienteCodice
{
get
{
return ((string)(StiReport.ChangeType(this["PazienteCodice"], typeof(string), true)));
}
}

public virtual int EnteCodice
{
get
{
return ((int)(StiReport.ChangeType(this["EnteCodice"], typeof(int), true)));
}
}

public virtual string TRASPORTATOCAP
{
get
{
return ((string)(StiReport.ChangeType(this["TRASPORTATOCAP"], typeof(string), true)));
}
}

public virtual string TRASPORTATOCOMUNE
{
get
{
return ((string)(StiReport.ChangeType(this["TRASPORTATOCOMUNE"], typeof(string), true)));
}
}

public virtual string PAZIENTECAP
{
get
{
return ((string)(StiReport.ChangeType(this["PAZIENTECAP"], typeof(string), true)));
}
}

public virtual string PAZIENTECOMUNE
{
get
{
return ((string)(StiReport.ChangeType(this["PAZIENTECOMUNE"], typeof(string), true)));
}
}

public virtual string PRELEVATOCAP
{
get
{
return ((string)(StiReport.ChangeType(this["PRELEVATOCAP"], typeof(string), true)));
}
}

public virtual string PRELEVATOCOMUNE
{
get
{
return ((string)(StiReport.ChangeType(this["PRELEVATOCOMUNE"], typeof(string), true)));
}
}

public virtual string ACARICONOMINATIVO
{
get
{
return ((string)(StiReport.ChangeType(this["ACARICONOMINATIVO"], typeof(string), true)));
}
}

public virtual string AREADESCRIZIONE
{
get
{
return ((string)(StiReport.ChangeType(this["AREADESCRIZIONE"], typeof(string), true)));
}
}

public virtual string TABTIPOINTERVENTODESCRIZIONE
{
get
{
return ((string)(StiReport.ChangeType(this["TABTIPOINTERVENTODESCRIZIONE"], typeof(string), true)));
}
}

public virtual string Tipo
{
get
{
return ((string)(StiReport.ChangeType(this["Tipo"], typeof(string), true)));
}
}

public virtual string Marca
{
get
{
return ((string)(StiReport.ChangeType(this["Marca"], typeof(string), true)));
}
}

public virtual bool Attivo
{
get
{
return ((bool)(StiReport.ChangeType(this["Attivo"], typeof(bool), true)));
}
}

public virtual string Cilindrata
{
get
{
return ((string)(StiReport.ChangeType(this["Cilindrata"], typeof(string), true)));
}
}

public virtual string Potenza
{
get
{
return ((string)(StiReport.ChangeType(this["Potenza"], typeof(string), true)));
}
}

public virtual int Combustibile
{
get
{
return ((int)(StiReport.ChangeType(this["Combustibile"], typeof(int), true)));
}
}

public virtual int AnnoImmatricolazione
{
get
{
return ((int)(StiReport.ChangeType(this["AnnoImmatricolazione"], typeof(int), true)));
}
}

public virtual string Targa
{
get
{
return ((string)(StiReport.ChangeType(this["Targa"], typeof(string), true)));
}
}

public virtual int TipoAmbulanza
{
get
{
return ((int)(StiReport.ChangeType(this["TipoAmbulanza"], typeof(int), true)));
}
}

public virtual string SiglaRadio
{
get
{
return ((string)(StiReport.ChangeType(this["SiglaRadio"], typeof(string), true)));
}
}

public virtual DateTime UltimaRevisione
{
get
{
return ((DateTime)(StiReport.ChangeType(this["UltimaRevisione"], typeof(DateTime), true)));
}
}

public virtual decimal ContaChilometri
{
get
{
return ((decimal)(StiReport.ChangeType(this["ContaChilometri"], typeof(decimal), true)));
}
}

public virtual decimal UltimaUscita
{
get
{
return ((decimal)(StiReport.ChangeType(this["UltimaUscita"], typeof(decimal), true)));
}
}

public virtual int Codice1
{
get
{
return ((int)(StiReport.ChangeType(this["Codice1"], typeof(int), true)));
}
}

public virtual bool UTIF1
{
get
{
return ((bool)(StiReport.ChangeType(this["UTIF1"], typeof(bool), true)));
}
}

public virtual string Notes1
{
get
{
return ((string)(StiReport.ChangeType(this["Notes1"], typeof(string), true)));
}
}

public virtual string NOMINATIVOMILITE
{
get
{
return ((string)(StiReport.ChangeType(this["NOMINATIVOMILITE"], typeof(string), true)));
}
}

public virtual int POSIZIONE
{
get
{
return ((int)(StiReport.ChangeType(this["POSIZIONE"], typeof(int), true)));
}
}

public virtual string TIPO
{
get
{
return ((string)(StiReport.ChangeType(this["TIPO"], typeof(string), true)));
}
}

public virtual string MARCA
{
get
{
return ((string)(StiReport.ChangeType(this["MARCA"], typeof(string), true)));
}
}

public virtual string CILINDRATA
{
get
{
return ((string)(StiReport.ChangeType(this["CILINDRATA"], typeof(string), true)));
}
}

public virtual string POTENZA
{
get
{
return ((string)(StiReport.ChangeType(this["POTENZA"], typeof(string), true)));
}
}

public virtual int COMBUSTIBILE
{
get
{
return ((int)(StiReport.ChangeType(this["COMBUSTIBILE"], typeof(int), true)));
}
}

public virtual string TARGA
{
get
{
return ((string)(StiReport.ChangeType(this["TARGA"], typeof(string), true)));
}
}

public virtual string SIGLARADIO
{
get
{
return ((string)(StiReport.ChangeType(this["SIGLARADIO"], typeof(string), true)));
}
}

public virtual string DESCRINTERVENTO
{
get
{
return ((string)(StiReport.ChangeType(this["DESCRINTERVENTO"], typeof(string), true)));
}
}

public virtual string HH
{
get
{
return ((string)(StiReport.ChangeType(this["HH"], typeof(string), true)));
}
}

public virtual string MM
{
get
{
return ((string)(StiReport.ChangeType(this["MM"], typeof(string), true)));
}
}

public virtual string DESCRCARBURANTE
{
get
{
return ((string)(StiReport.ChangeType(this["DESCRCARBURANTE"], typeof(string), true)));
}
}
}
#endregion DataSource VIAGGI

#region DataSource PARAMETRI
public class PARAMETRIDataSource : Stimulsoft.Report.Dictionary.StiDataTableSource
{

public PARAMETRIDataSource() :
base("NewDataSet.PARAMETRI", "PARAMETRI")
{
}

public virtual DateTime DAL
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DAL"], typeof(DateTime), true)));
}
}

public virtual DateTime AL
{
get
{
return ((DateTime)(StiReport.ChangeType(this["AL"], typeof(DateTime), true)));
}
}
}
#endregion DataSource PARAMETRI

#region DataSource AZIENDA
public class AZIENDADataSource : Stimulsoft.Report.Dictionary.StiDataTableSource
{

public AZIENDADataSource() :
base("NewDataSet.AZIENDA", "AZIENDA")
{
}

public virtual int Codice
{
get
{
return ((int)(StiReport.ChangeType(this["Codice"], typeof(int), true)));
}
}

public virtual string Nominativo
{
get
{
return ((string)(StiReport.ChangeType(this["Nominativo"], typeof(string), true)));
}
}

public virtual string Indirizzo
{
get
{
return ((string)(StiReport.ChangeType(this["Indirizzo"], typeof(string), true)));
}
}

public virtual DateTime DataNascita
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DataNascita"], typeof(DateTime), true)));
}
}

public virtual string CodiceFiscale
{
get
{
return ((string)(StiReport.ChangeType(this["CodiceFiscale"], typeof(string), true)));
}
}

public virtual string PartitaIva
{
get
{
return ((string)(StiReport.ChangeType(this["PartitaIva"], typeof(string), true)));
}
}

public virtual int Sesso
{
get
{
return ((int)(StiReport.ChangeType(this["Sesso"], typeof(int), true)));
}
}

public virtual string Telefono
{
get
{
return ((string)(StiReport.ChangeType(this["Telefono"], typeof(string), true)));
}
}

public virtual string TelefonoUfficio
{
get
{
return ((string)(StiReport.ChangeType(this["TelefonoUfficio"], typeof(string), true)));
}
}

public virtual string TelefonoCellulare
{
get
{
return ((string)(StiReport.ChangeType(this["TelefonoCellulare"], typeof(string), true)));
}
}

public virtual string TelefonoAbitazione
{
get
{
return ((string)(StiReport.ChangeType(this["TelefonoAbitazione"], typeof(string), true)));
}
}

public virtual string TelefonoAlternativo
{
get
{
return ((string)(StiReport.ChangeType(this["TelefonoAlternativo"], typeof(string), true)));
}
}

public virtual string NInterno
{
get
{
return ((string)(StiReport.ChangeType(this["NInterno"], typeof(string), true)));
}
}

public virtual string Fax
{
get
{
return ((string)(StiReport.ChangeType(this["Fax"], typeof(string), true)));
}
}

public virtual string CercaPersone
{
get
{
return ((string)(StiReport.ChangeType(this["CercaPersone"], typeof(string), true)));
}
}

public virtual string EMail
{
get
{
return ((string)(StiReport.ChangeType(this["EMail"], typeof(string), true)));
}
}

public virtual string SitoWeb
{
get
{
return ((string)(StiReport.ChangeType(this["SitoWeb"], typeof(string), true)));
}
}

public virtual int Carica
{
get
{
return ((int)(StiReport.ChangeType(this["Carica"], typeof(int), true)));
}
}

public virtual int RepartoCommerciale
{
get
{
return ((int)(StiReport.ChangeType(this["RepartoCommerciale"], typeof(int), true)));
}
}

public virtual int TipoContatto
{
get
{
return ((int)(StiReport.ChangeType(this["TipoContatto"], typeof(int), true)));
}
}

public virtual int Frequenza
{
get
{
return ((int)(StiReport.ChangeType(this["Frequenza"], typeof(int), true)));
}
}

public virtual bool InvioMateriale
{
get
{
return ((bool)(StiReport.ChangeType(this["InvioMateriale"], typeof(bool), true)));
}
}

public virtual bool Trattamento
{
get
{
return ((bool)(StiReport.ChangeType(this["Trattamento"], typeof(bool), true)));
}
}

public virtual bool Attivo
{
get
{
return ((bool)(StiReport.ChangeType(this["Attivo"], typeof(bool), true)));
}
}

public virtual string Notes
{
get
{
return ((string)(StiReport.ChangeType(this["Notes"], typeof(string), true)));
}
}

public virtual int Presentato
{
get
{
return ((int)(StiReport.ChangeType(this["Presentato"], typeof(int), true)));
}
}

public virtual double Fatturato
{
get
{
return ((double)(StiReport.ChangeType(this["Fatturato"], typeof(double), true)));
}
}

public virtual string PersonaRiferimento
{
get
{
return ((string)(StiReport.ChangeType(this["PersonaRiferimento"], typeof(string), true)));
}
}

public virtual DateTime DataPrimoContatto
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DataPrimoContatto"], typeof(DateTime), true)));
}
}

public virtual DateTime DataProssimoContatto
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DataProssimoContatto"], typeof(DateTime), true)));
}
}

public virtual bool DaContattare
{
get
{
return ((bool)(StiReport.ChangeType(this["DaContattare"], typeof(bool), true)));
}
}

public virtual int Raggruppamento
{
get
{
return ((int)(StiReport.ChangeType(this["Raggruppamento"], typeof(int), true)));
}
}

public virtual decimal Provvigione
{
get
{
return ((decimal)(StiReport.ChangeType(this["Provvigione"], typeof(decimal), true)));
}
}

public virtual int NumeroSolleciti
{
get
{
return ((int)(StiReport.ChangeType(this["NumeroSolleciti"], typeof(int), true)));
}
}

public virtual int NumeroInsoluti
{
get
{
return ((int)(StiReport.ChangeType(this["NumeroInsoluti"], typeof(int), true)));
}
}

public virtual decimal ImportoInsoluti
{
get
{
return ((decimal)(StiReport.ChangeType(this["ImportoInsoluti"], typeof(decimal), true)));
}
}

public virtual int Valuta
{
get
{
return ((int)(StiReport.ChangeType(this["Valuta"], typeof(int), true)));
}
}

public virtual bool IntraCEE
{
get
{
return ((bool)(StiReport.ChangeType(this["IntraCEE"], typeof(bool), true)));
}
}

public virtual string Professione
{
get
{
return ((string)(StiReport.ChangeType(this["Professione"], typeof(string), true)));
}
}

public virtual DateTime DataAcquisizione
{
get
{
return ((DateTime)(StiReport.ChangeType(this["DataAcquisizione"], typeof(DateTime), true)));
}
}

public virtual int Attivita
{
get
{
return ((int)(StiReport.ChangeType(this["Attivita"], typeof(int), true)));
}
}

public virtual int Attivita2
{
get
{
return ((int)(StiReport.ChangeType(this["Attivita2"], typeof(int), true)));
}
}

public virtual string NoteMarketing
{
get
{
return ((string)(StiReport.ChangeType(this["NoteMarketing"], typeof(string), true)));
}
}

public virtual int Comune
{
get
{
return ((int)(StiReport.ChangeType(this["Comune"], typeof(int), true)));
}
}

public virtual string Banca
{
get
{
return ((string)(StiReport.ChangeType(this["Banca"], typeof(string), true)));
}
}

public virtual string CondPag
{
get
{
return ((string)(StiReport.ChangeType(this["CondPag"], typeof(string), true)));
}
}

public virtual string Resa
{
get
{
return ((string)(StiReport.ChangeType(this["Resa"], typeof(string), true)));
}
}

public virtual string LuogoResa
{
get
{
return ((string)(StiReport.ChangeType(this["LuogoResa"], typeof(string), true)));
}
}

public virtual string Porto
{
get
{
return ((string)(StiReport.ChangeType(this["Porto"], typeof(string), true)));
}
}

public virtual int Spedizione
{
get
{
return ((int)(StiReport.ChangeType(this["Spedizione"], typeof(int), true)));
}
}

public virtual int Vettore
{
get
{
return ((int)(StiReport.ChangeType(this["Vettore"], typeof(int), true)));
}
}

public virtual string CodIva
{
get
{
return ((string)(StiReport.ChangeType(this["CodIva"], typeof(string), true)));
}
}

public virtual string FormatRagSoc
{
get
{
return ((string)(StiReport.ChangeType(this["FormatRagSoc"], typeof(string), true)));
}
}

public virtual string FormatIndirizzo
{
get
{
return ((string)(StiReport.ChangeType(this["FormatIndirizzo"], typeof(string), true)));
}
}

public virtual string NoteQualita
{
get
{
return ((string)(StiReport.ChangeType(this["NoteQualita"], typeof(string), true)));
}
}

public virtual byte[] Logo
{
get
{
return ((byte[])(StiReport.ChangeType(this["Logo"], typeof(byte[]), true)));
}
}

public virtual string Magazzino
{
get
{
return ((string)(StiReport.ChangeType(this["Magazzino"], typeof(string), true)));
}
}

public virtual int Sezionario
{
get
{
return ((int)(StiReport.ChangeType(this["Sezionario"], typeof(int), true)));
}
}

public virtual string Magazzino2
{
get
{
return ((string)(StiReport.ChangeType(this["Magazzino2"], typeof(string), true)));
}
}

public virtual int CodiceEnte
{
get
{
return ((int)(StiReport.ChangeType(this["CodiceEnte"], typeof(int), true)));
}
}

public virtual int CodiceAzienda
{
get
{
return ((int)(StiReport.ChangeType(this["CodiceAzienda"], typeof(int), true)));
}
}

public virtual int MaxKm
{
get
{
return ((int)(StiReport.ChangeType(this["MaxKm"], typeof(int), true)));
}
}

public virtual int ABICODE
{
get
{
return ((int)(StiReport.ChangeType(this["ABICODE"], typeof(int), true)));
}
}

public virtual int CABCODE
{
get
{
return ((int)(StiReport.ChangeType(this["CABCODE"], typeof(int), true)));
}
}

public virtual string DESCRIZIONEBANCA
{
get
{
return ((string)(StiReport.ChangeType(this["DESCRIZIONEBANCA"], typeof(string), true)));
}
}

public virtual string CONTOCORRENTE
{
get
{
return ((string)(StiReport.ChangeType(this["CONTOCORRENTE"], typeof(string), true)));
}
}

public virtual string DESCRIZIONECOMUNE
{
get
{
return ((string)(StiReport.ChangeType(this["DESCRIZIONECOMUNE"], typeof(string), true)));
}
}

public virtual string CAPCOMUNE
{
get
{
return ((string)(StiReport.ChangeType(this["CAPCOMUNE"], typeof(string), true)));
}
}

public virtual string NAZIONECOMUNE
{
get
{
return ((string)(StiReport.ChangeType(this["NAZIONECOMUNE"], typeof(string), true)));
}
}
}
#endregion DataSource AZIENDA
#endregion StiReport Designer generated code - do not modify
}
}

Retrieve a field value of the previous line.

Posted: Tue Dec 27, 2011 2:07 am
by HighAley
hakjon wrote:Thanks so much for the reply.
I modified the report as attached to me but I still have this error 2 times:

-------------------------------------------------- ---------------------------
The error of compilation
The error of compilation is found in the 'Report' report:
The name 'variable1' does not exist in the current context.
-------------------------------------------------- ---------------------------
You've created variables with names 'Ore' and 'Minuti' and tries to call variable with name 'Variable1'.
You should either create 'Variable1' variable or use 'Ore' and 'Minuti' variables.

Thank you.