Data Band linking
Posted: Wed Nov 05, 2008 9:26 pm
by shmuly
Here is the code for the report:
Imports System
Imports System.Drawing
Imports System.Windows.Forms
Imports System.Data
Imports Stimulsoft.Controls
Imports Stimulsoft.Base.Drawing
Imports Stimulsoft.Report
Imports Stimulsoft.Report.Dialogs
Imports Stimulsoft.Report.Components
Namespace Reports
Public Class Report
Inherits Stimulsoft.Report.StiReport
Public Sub New()
MyBase.New
Me.InitializeComponent
End Sub
#Region "StiReport Designer generated code - do not modify"
Public ParentViewFinancial As Stimulsoft.Report.Dictionary.StiDataRelation
Public ParentvAccountsWithPrimaryAndSpouseMemberInfo As Stimulsoft.Report.Dictionary.StiDataRelation
Public PrintBannerPage As Boolean
Public UpdateAccounts As Boolean
Public Copies As Integer
Public AsOfDate As DateTime
Public RegenerateThumbnail As Boolean
Public ReportOptionPage1 As Integer
Public RepID As String
Public RepName As String
Public Page1 As Stimulsoft.Report.Components.StiPage
Public PageHeader1 As Stimulsoft.Report.Components.StiPageHeaderBand
Public Text2 As Stimulsoft.Report.Components.StiText
Public Text1 As Stimulsoft.Report.Components.StiText
Public GroupHeader1 As Stimulsoft.Report.Components.StiGroupHeaderBand
Public Text3 As Stimulsoft.Report.Components.StiText
Public Text4 As Stimulsoft.Report.Components.StiText
Public Text5 As Stimulsoft.Report.Components.StiText
Public Text6 As Stimulsoft.Report.Components.StiText
Public Text7 As Stimulsoft.Report.Components.StiText
Public Text8 As Stimulsoft.Report.Components.StiText
Public Text9 As Stimulsoft.Report.Components.StiText
Public Text10 As Stimulsoft.Report.Components.StiText
Public Text24 As Stimulsoft.Report.Components.StiText
Public DatavCrfAndCrl As Stimulsoft.Report.Components.StiDataBand
Public Text11 As Stimulsoft.Report.Components.StiText
Public Text12 As Stimulsoft.Report.Components.StiText
Public Text13 As Stimulsoft.Report.Components.StiText
Public Text14 As Stimulsoft.Report.Components.StiText
Public Text15 As Stimulsoft.Report.Components.StiText
Public Text16 As Stimulsoft.Report.Components.StiText
Public ClickToViewComponent2 As SDP.Win.QueryBuilder.ClickToViewComponent
Public Text17 As Stimulsoft.Report.Components.StiText
Public Footer1 As Stimulsoft.Report.Components.StiFooterBand
Public GroupFooter1 As Stimulsoft.Report.Components.StiGroupFooterBand
Public Header1 As Stimulsoft.Report.Components.StiHeaderBand
Public Text20 As Stimulsoft.Report.Components.StiText
Public Text21 As Stimulsoft.Report.Components.StiText
Public Text22 As Stimulsoft.Report.Components.StiText
Public Text23 As Stimulsoft.Report.Components.StiText
Public HorizontalLine1 As Stimulsoft.Report.Components.StiHorizontalLinePrimitive
Public GroupHeader2 As Stimulsoft.Report.Components.StiGroupHeaderBand
Public Data2 As Stimulsoft.Report.Components.StiDataBand
Public GroupFooter2 As Stimulsoft.Report.Components.StiGroupFooterBand
Public Text18 As Stimulsoft.Report.Components.StiText
Public Text19 As Stimulsoft.Report.Components.StiText
Public Text19_Sum As Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService
Public Text25 As Stimulsoft.Report.Components.StiText
Public Text26 As Stimulsoft.Report.Components.StiText
Public Text26_Count As Stimulsoft.Report.Dictionary.StiCountFunctionService
Public Data1 As Stimulsoft.Report.Components.StiDataBand
Public Footer2 As Stimulsoft.Report.Components.StiFooterBand
Public Text27 As Stimulsoft.Report.Components.StiText
Public Text27_Sum As Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService
Public Text28 As Stimulsoft.Report.Components.StiText
Public Text29 As Stimulsoft.Report.Components.StiText
Public Text29_Count As Stimulsoft.Report.Dictionary.StiCountFunctionService
Public HorizontalLine2 As Stimulsoft.Report.Components.StiHorizontalLinePrimitive
Public Page1_Watermark As Stimulsoft.Report.Components.StiWatermark
Public Report_PrinterSettings As Stimulsoft.Report.Print.StiPrinterSettings
Public vAccountsWithPrimaryAndSpouseMemberInfo As vAccountsWithPrimaryAndSpouseMemberInfoDataSource
Public ViewFinancial As ViewFinancialDataSource
Public vCrfAndCrl As vCrfAndCrlDataSource
Public Overrides Sub SaveState(ByVal stateName As System.String)
MyBase.SaveState(stateName)
Me.States.PushBool(stateName, Me, "PrintBannerPage", Me.PrintBannerPage)
Me.States.PushBool(stateName, Me, "UpdateAccounts", Me.UpdateAccounts)
Me.States.PushInt(stateName, Me, "Copies", Me.Copies)
Me.States.Push(stateName, Me, "AsOfDate", Me.AsOfDate)
Me.States.PushBool(stateName, Me, "RegenerateThumbnail", Me.RegenerateThumbnail)
Me.States.PushInt(stateName, Me, "ReportOptionPage1", Me.ReportOptionPage1)
Me.States.Push(stateName, Me, "RepID", Me.RepID)
Me.States.Push(stateName, Me, "RepName", Me.RepName)
End Sub
Public Overrides Sub RestoreState(ByVal stateName As System.String)
MyBase.RestoreState(stateName)
Me.PrintBannerPage = Me.States.PopBool(stateName, Me, "PrintBannerPage")
Me.UpdateAccounts = Me.States.PopBool(stateName, Me, "UpdateAccounts")
Me.Copies = Me.States.PopInt(stateName, Me, "Copies")
Me.AsOfDate = CType(Me.States.Pop(stateName, Me, "AsOfDate"),DateTime)
Me.RegenerateThumbnail = Me.States.PopBool(stateName, Me, "RegenerateThumbnail")
Me.ReportOptionPage1 = Me.States.PopInt(stateName, Me, "ReportOptionPage1")
Me.RepID = CType(Me.States.Pop(stateName, Me, "RepID"),String)
Me.RepName = CType(Me.States.Pop(stateName, Me, "RepName"),String)
End Sub
Public Sub Text2__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "#%#{PageNofM}"
e.StoreToPrinted = true
End Sub
Public Function Text2_GetValue_End(ByVal sender As Stimulsoft.Report.Components.StiComponent) As System.String
Return ToString(sender, PageNofM, true)
End Function
Public Sub Text1__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = ToString(sender, Today.ToString("MM/dd/yyyy"), true) + " - " + ToString(sender, Time.ToString("hh:mmm:ss tt"), true)
End Sub
Public Sub GroupHeader1__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiValueEventArgs)
e.Value = vCrfAndCrl.crfbatch
End Sub
Public Sub Text3__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Account #"
End Sub
Public Sub Text4__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Name"
End Sub
Public Sub Text5__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Date"
End Sub
Public Sub Text6__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Code"
End Sub
Public Sub Text7__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Description"
End Sub
Public Sub Text8__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Type"
End Sub
Public Sub Text9__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "$ Amount"
End Sub
Public Sub Text10__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Comment"
End Sub
Public Sub Text24__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Batch # " + ToString(sender, vCrfAndCrl.crfbatch, true)
End Sub
Public Sub Text11__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = ToString(sender, vCrfAndCrl.ViewFinancial.vAccountsWithPrimaryAndSpouseMemberInfo.AmfFirstNamePrimary, true) + " " + ToString(sender, vCrfAndCrl.ViewFinancial.vAccountsWithPrimaryAndSpouseMemberInfo.AmfLastNamePrimary, true)
End Sub
Public Sub Text12__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = System.String.Format("{0:MM/dd/yyyy}", vCrfAndCrl.ViewFinancial.imfplddate)
End Sub
Public Sub Text13__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = ToString(sender, vCrfAndCrl.chfccfcode, true)
End Sub
Public Sub Text14__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = ToString(sender, vCrfAndCrl.ViewFinancial.ccfdesc, true) + " " + ToString(sender, vCrfAndCrl.ViewFinancial.chfyear, true)
End Sub
Public Sub Text15__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = ToString(sender, vCrfAndCrl.ViewFinancial.imftype, true)
End Sub
Public Sub Text16__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = ToString(sender, vCrfAndCrl.ViewFinancial.imfmemo, true) + ToString(sender, IIF(vCrfAndCrl.crfchkno=nothing,"","Chk # "), true) + ToString(sender, vCrfAndCrl.crfchkno, true)
End Sub
Public Sub ClickToViewComponent2__GetHyperlink(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiValueEventArgs)
e.Value = "#vCrfAndCrl.ViewFinancial.vAccountsWithPrimaryAndSpouseMemberInfo.nmfuid"
End Sub
Public Sub ClickToViewComponent2__GetTag(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiValueEventArgs)
e.Value = "vCrfAndCrl.ViewFinancial.vAccountsWithPrimaryAndSpouseMemberInfo.nmfuid"
End Sub
Public Sub ClickToViewComponent2__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = ToString(sender, vCrfAndCrl.ViewFinancial.vAccountsWithPrimaryAndSpouseMemberInfo.nmfuid, true)
End Sub
Public Sub Text17__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = Me.Text17.TextFormat.Format(CheckExcelValue(sender, vCrfAndCrl.crlamt))
End Sub
Public Sub Text20__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Code"
End Sub
Public Sub Text21__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Description"
End Sub
Public Sub Text22__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Total"
End Sub
Public Sub Text23__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "$ Amount"
End Sub
Public Sub GroupHeader2__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiValueEventArgs)
e.Value = vCrfAndCrl.chfid
End Sub
Public Sub Text18__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = ToString(sender, vCrfAndCrl.chfid, true)
End Sub
Public Sub Text19__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "#%#{cSum(GroupHeader2,vCrfAndCrl.crlamt)}"
e.StoreToPrinted = true
End Sub
Public Function Text19_GetValue_End(ByVal sender As Stimulsoft.Report.Components.StiComponent) As System.String
Return ToString(sender, CType(StiReport.ChangeType(Me.Text19_Sum.GetValue, GetType(System.Decimal), true),Decimal), true)
End Function
Public Sub Text25__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = ToString(sender, vCrfAndCrl.ViewFinancial.ccfdesc, true) + " " + ToString(sender, vCrfAndCrl.ViewFinancial.chfyear, true)
End Sub
Public Sub Text26__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "#%#{cCount(GroupHeader2,vCrfAndCrl.crlccfid)}"
e.StoreToPrinted = true
End Sub
Public Function Text26_GetValue_End(ByVal sender As Stimulsoft.Report.Components.StiComponent) As System.String
Return ToString(sender, CType(StiReport.ChangeType(Me.Text26_Count.GetValue, GetType(System.Int64), true),Long), true)
End Function
Public Sub Text27__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "#%#{cSum(Data1,vCrfAndCrl.crlamt)}"
e.StoreToPrinted = true
End Sub
Public Function Text27_GetValue_End(ByVal sender As Stimulsoft.Report.Components.StiComponent) As System.String
Return Me.Text27.TextFormat.Format(CheckExcelValue(sender, CType(StiReport.ChangeType(Me.Text27_Sum.GetValue, GetType(System.Decimal), true),Decimal)))
End Function
Public Sub Text28__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "Grand Total"
End Sub
Public Sub Text29__GetValue(ByVal sender As Object, ByVal e As Stimulsoft.Report.Events.StiGetValueEventArgs)
e.Value = "#%#{cCount(Data1,vCrfAndCrl.crlseq)}"
e.StoreToPrinted = true
End Sub
Public Function Text29_GetValue_End(ByVal sender As Stimulsoft.Report.Components.StiComponent) As System.String
Return ToString(sender, CType(StiReport.ChangeType(Me.Text29_Count.GetValue, GetType(System.Int64), true),Long), true)
End Function
Public Sub GroupHeader2__BeginRender(ByVal sender As Object, ByVal e As System.EventArgs)
Me.Text19_Sum.Init
Me.Text19.TextValue = ""
Me.Text26_Count.Init
Me.Text26.TextValue = ""
End Sub
Public Sub GroupHeader2__EndRender(ByVal sender As Object, ByVal e As System.EventArgs)
Me.Text19.SetText(AddressOf Text19_GetValue_End)
Me.Text26.SetText(AddressOf Text26_GetValue_End)
End Sub
Public Sub Page1__BeforePrint(ByVal sender As Object, ByVal e As System.EventArgs)
Me.Text27_Sum.Init
Me.Text27.TextValue = ""
Me.Text29_Count.Init
Me.Text29.TextValue = ""
End Sub
Public Sub Page1__AfterPrint(ByVal sender As Object, ByVal e As System.EventArgs)
Me.Text27.SetText(AddressOf Text27_GetValue_End)
Me.Text29.SetText(AddressOf Text29_GetValue_End)
End Sub
Public Sub GroupHeader2__Rendering(ByVal sender As Object, ByVal e As System.EventArgs)
Me.Text19_Sum.CalcItem(vCrfAndCrl.crlamt)
Me.Text26_Count.CalcItem(Nothing)
End Sub
Public Sub Data1__Rendering(ByVal sender As Object, ByVal e As System.EventArgs)
Me.Text27_Sum.CalcItem(vCrfAndCrl.crlamt)
Me.Text29_Count.CalcItem(Nothing)
End Sub
Public Sub ReportWordsToEnd__EndRender(ByVal sender As Object, ByVal e As System.EventArgs)
Me.Text2.SetText(AddressOf Text2_GetValue_End)
End Sub
Private Sub InitializeComponent()
Me.vCrfAndCrl = New vCrfAndCrlDataSource
Me.ViewFinancial = New ViewFinancialDataSource
Me.vAccountsWithPrimaryAndSpouseMemberInfo = New vAccountsWithPrimaryAndSpouseMemberInfoDataSource
Me.ParentViewFinancial = New Stimulsoft.Report.Dictionary.StiDataRelation("ViewFinancial_vCrfAndCrl", "ViewFinancial", "Pledge Detail", Me.ViewFinancial, Me.vCrfAndCrl, New System.String() {"imfinvno"}, New System.String() {"crlimfinv"})
Me.ParentvAccountsWithPrimaryAndSpouseMemberInfo = New Stimulsoft.Report.Dictionary.StiDataRelation("vAccountsWithPrimaryAndSpouseMemberInfo_ViewFinancial", "vAccountsWithPrimaryAndSpouseMemberInfo", "Account Info", Me.vAccountsWithPrimaryAndSpouseMemberInfo, Me.ViewFinancial, New System.String() {"nmfuid"}, New System.String() {"imfnmfuid"})
Me.Dictionary.Variables.Add(New Stimulsoft.Report.Dictionary.StiVariable("ReportOptions", "PrintBannerPage", "PrintBannerPage", GetType(Boolean), "", false, false))
Me.Dictionary.Variables.Add(New Stimulsoft.Report.Dictionary.StiVariable("ReportOptions", "UpdateAccounts", "UpdateAccounts", GetType(Boolean), "", false, false))
Me.Dictionary.Variables.Add(New Stimulsoft.Report.Dictionary.StiVariable("ReportOptions", "Copies", "Copies", GetType(Integer), "", false, false))
Me.Dictionary.Variables.Add(New Stimulsoft.Report.Dictionary.StiVariable("ReportOptions", "AsOfDate", "AsOfDate", GetType(DateTime), Nothing, false, false))
Me.Dictionary.Variables.Add(New Stimulsoft.Report.Dictionary.StiVariable("ReportOptions", "RegenerateThumbnail", "RegenerateThumbnail", GetType(Boolean), "", false, false))
Me.Dictionary.Variables.Add(New Stimulsoft.Report.Dictionary.StiVariable("ReportOptions", "ReportOptionPage1", "ReportOptionPage1", GetType(Integer), "", false, false))
Me.Dictionary.Variables.Add(New Stimulsoft.Report.Dictionary.StiVariable("ReportOptions", "RepID", "RepID", GetType(String), "", false, false))
Me.Dictionary.Variables.Add(New Stimulsoft.Report.Dictionary.StiVariable("ReportOptions", "RepName", "RepName", GetType(String), "", false, false))
Me.NeedsCompiling = false
Me.Text29_Count = New Stimulsoft.Report.Dictionary.StiCountFunctionService
Me.Text27_Sum = New Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService
Me.Text26_Count = New Stimulsoft.Report.Dictionary.StiCountFunctionService
Me.Text19_Sum = New Stimulsoft.Report.Dictionary.StiSumDecimalFunctionService
'Variables init
'Variables init
Me.PrintBannerPage = false
Me.UpdateAccounts = false
Me.Copies = 0
Me.AsOfDate = DateTime.Now
Me.RegenerateThumbnail = false
Me.ReportOptionPage1 = 0
Me.RepID = ""
Me.RepName = ""
Me.EngineVersion = Stimulsoft.Report.Engine.StiEngineVersion.EngineV2
Me.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", "QueryBuilderBase.Dll", "QueryBuilderWinControls.dll", "QueryBuilderApp.exe"}
Me.ReportAlias = "Report"
'
'ReportChanged
'
Me.ReportChanged = New DateTime(2008, 11, 5, 17, 4, 17, 0)
'
'ReportCreated
'
Me.ReportCreated = New DateTime(2008, 11, 5, 16, 10, 14, 0)
Me.ReportGuid = "4b49b1f9176a467baec3263137abbc61"
Me.ReportName = "Report"
Me.ReportUnit = Stimulsoft.Report.StiReportUnitType.Inches
Me.ScriptLanguage = Stimulsoft.Report.StiReportLanguageType.VB
'
'Page1
'
Me.Page1 = New Stimulsoft.Report.Components.StiPage
Me.Page1.Guid = "3178aa5de6944bd684d0e2bc3d547a8f"
Me.Page1.Inherited = true
Me.Page1.Name = "Page1"
Me.Page1.PageHeight = 11
Me.Page1.PageWidth = 8.5
Me.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))
Me.Page1.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.White)
'
'PageHeader1
'
Me.PageHeader1 = New Stimulsoft.Report.Components.StiPageHeaderBand
Me.PageHeader1.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 0.2, 8.14, 0.2)
Me.PageHeader1.Inherited = true
Me.PageHeader1.MaxHeight = 0
Me.PageHeader1.MinHeight = 0
Me.PageHeader1.Name = "PageHeader1"
Me.PageHeader1.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))
Me.PageHeader1.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
'
'Text2
'
Me.Text2 = New Stimulsoft.Report.Components.StiText
Me.Text2.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(6.24, 0, 1.9, 0.2)
Me.Text2.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Right
Me.Text2.Inherited = true
Me.Text2.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text2.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text2.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text2.Name = "Text2"
AddHandler Me.Text2.GetValue, AddressOf Me.Text2__GetValue
Me.Text2.Type = Stimulsoft.Report.Components.StiSystemTextType.SystemVariables
Me.Text2.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text2.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text2.Font = New System.Drawing.Font("Arial", 10!)
Me.Text2.Guid = Nothing
Me.Text2.Margins = New Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0)
Me.Text2.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text2.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text2.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text1
'
Me.Text1 = New Stimulsoft.Report.Components.StiText
Me.Text1.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 0, 2.2, 0.2)
Me.Text1.Inherited = true
Me.Text1.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text1.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text1.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text1.Name = "Text1"
AddHandler Me.Text1.GetValue, AddressOf Me.Text1__GetValue
Me.Text1.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text1.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text1.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text1.Font = New System.Drawing.Font("Arial", 10!)
Me.Text1.Guid = Nothing
Me.Text1.Margins = New Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0)
Me.Text1.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text1.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text1.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
Me.PageHeader1.Guid = Nothing
'
'GroupHeader1
'
Me.GroupHeader1 = New Stimulsoft.Report.Components.StiGroupHeaderBand
Me.GroupHeader1.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 0.8, 8.14, 0.5)
AddHandler Me.GroupHeader1.GetValue, AddressOf Me.GroupHeader1__GetValue
Me.GroupHeader1.MaxHeight = 0
Me.GroupHeader1.MinHeight = 0
Me.GroupHeader1.Name = "GroupHeader1"
Me.GroupHeader1.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))
Me.GroupHeader1.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
'
'Text3
'
Me.Text3 = New Stimulsoft.Report.Components.StiText
Me.Text3.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 0.2, 1, 0.3)
Me.Text3.Guid = "753bbbd873e0499cbc2d2e50def31729"
Me.Text3.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text3.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text3.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text3.Name = "Text3"
AddHandler Me.Text3.GetValue, AddressOf Me.Text3__GetValue
Me.Text3.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text3.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.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))
Me.Text3.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text3.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text3.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text3.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text3.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text3.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text4
'
Me.Text4 = New Stimulsoft.Report.Components.StiText
Me.Text4.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(1, 0.2, 1.3, 0.3)
Me.Text4.Guid = "f1c7d3c9a7f34f5e9814e382ff4350a6"
Me.Text4.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text4.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text4.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text4.Name = "Text4"
AddHandler Me.Text4.GetValue, AddressOf Me.Text4__GetValue
Me.Text4.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text4.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text4.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))
Me.Text4.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text4.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text4.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text4.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text4.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text4.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text5
'
Me.Text5 = New Stimulsoft.Report.Components.StiText
Me.Text5.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(2.3, 0.2, 0.8, 0.3)
Me.Text5.Guid = "6b0e452b41c44cc4a5958ce14282a18c"
Me.Text5.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text5.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text5.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text5.Name = "Text5"
AddHandler Me.Text5.GetValue, AddressOf Me.Text5__GetValue
Me.Text5.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text5.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text5.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))
Me.Text5.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text5.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text5.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text5.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text5.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text5.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text6
'
Me.Text6 = New Stimulsoft.Report.Components.StiText
Me.Text6.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.1, 0.2, 0.5, 0.3)
Me.Text6.Guid = "9ebecd2d29274f569f08340369b07feb"
Me.Text6.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text6.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text6.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text6.Name = "Text6"
AddHandler Me.Text6.GetValue, AddressOf Me.Text6__GetValue
Me.Text6.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text6.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text6.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))
Me.Text6.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text6.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text6.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text6.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text6.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text6.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text7
'
Me.Text7 = New Stimulsoft.Report.Components.StiText
Me.Text7.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.6, 0.2, 1.2, 0.3)
Me.Text7.Guid = "a69934602e274ad7a2369589370bb91a"
Me.Text7.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text7.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text7.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text7.Name = "Text7"
AddHandler Me.Text7.GetValue, AddressOf Me.Text7__GetValue
Me.Text7.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text7.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.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))
Me.Text7.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text7.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text7.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text7.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text7.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text7.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text8
'
Me.Text8 = New Stimulsoft.Report.Components.StiText
Me.Text8.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(4.8, 0.2, 0.8, 0.3)
Me.Text8.Guid = "ce42a8fc95d1465eba8a8d6f079a8f3e"
Me.Text8.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text8.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text8.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text8.Name = "Text8"
AddHandler Me.Text8.GetValue, AddressOf Me.Text8__GetValue
Me.Text8.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text8.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text8.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))
Me.Text8.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text8.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text8.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text8.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text8.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text8.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text9
'
Me.Text9 = New Stimulsoft.Report.Components.StiText
Me.Text9.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(5.6, 0.2, 0.9, 0.3)
Me.Text9.Guid = "df822dc734f040eaa753a67027131906"
Me.Text9.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text9.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text9.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text9.Name = "Text9"
AddHandler Me.Text9.GetValue, AddressOf Me.Text9__GetValue
Me.Text9.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text9.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text9.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))
Me.Text9.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text9.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text9.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text9.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text9.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text9.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text10
'
Me.Text10 = New Stimulsoft.Report.Components.StiText
Me.Text10.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(6.5, 0.2, 1.6, 0.3)
Me.Text10.Guid = "68ae3a6a216f4d1393142773ee4715b0"
Me.Text10.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text10.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text10.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text10.Name = "Text10"
AddHandler Me.Text10.GetValue, AddressOf Me.Text10__GetValue
Me.Text10.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text10.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text10.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))
Me.Text10.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text10.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text10.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text10.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text10.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text10.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text24
'
Me.Text24 = New Stimulsoft.Report.Components.StiText
Me.Text24.CanGrow = true
Me.Text24.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 0, 8.1, 0.2)
Me.Text24.Guid = "e25506193c9f492f980e6d1251d7d27e"
Me.Text24.HorAlignment = Stimulsoft.Base.Drawing.StiTextHorAlignment.Center
Me.Text24.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text24.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text24.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text24.Name = "Text24"
AddHandler Me.Text24.GetValue, AddressOf Me.Text24__GetValue
Me.Text24.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text24.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text24.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text24.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text24.Font = New System.Drawing.Font("Arial", 10!)
Me.Text24.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text24.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text24.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text24.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
Me.GroupHeader1.Guid = Nothing
'
'DatavCrfAndCrl
'
Me.DatavCrfAndCrl = New Stimulsoft.Report.Components.StiDataBand
Me.DatavCrfAndCrl.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 1.7, 8.14, 0.15)
Me.DatavCrfAndCrl.DataRelationName = "ViewFinancial_vCrfAndCrl"
Me.DatavCrfAndCrl.DataSourceName = "vCrfAndCrl"
Me.DatavCrfAndCrl.MaxHeight = 0
Me.DatavCrfAndCrl.MinHeight = 0
Me.DatavCrfAndCrl.Name = "DatavCrfAndCrl"
Me.DatavCrfAndCrl.Sort = New System.String(-1) {}
Me.DatavCrfAndCrl.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))
Me.DatavCrfAndCrl.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
'
'Text11
'
Me.Text11 = New Stimulsoft.Report.Components.StiText
Me.Text11.CanGrow = true
Me.Text11.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(1, 0, 1.3, 0.15)
Me.Text11.Guid = "4009d327a2c54b1089bbf23fe4eae33e"
Me.Text11.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text11.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text11.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text11.Name = "Text11"
AddHandler Me.Text11.GetValue, AddressOf Me.Text11__GetValue
Me.Text11.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text11.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text11.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text11.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text11.Font = New System.Drawing.Font("Arial", 8!)
Me.Text11.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text11.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text11.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text11.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text12
'
Me.Text12 = New Stimulsoft.Report.Components.StiText
Me.Text12.CanGrow = true
Me.Text12.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(2.3, 0, 0.8, 0.15)
Me.Text12.Guid = "f015a5056d4f443f8edba6bd5dba4038"
Me.Text12.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text12.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text12.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text12.Name = "Text12"
AddHandler Me.Text12.GetValue, AddressOf Me.Text12__GetValue
Me.Text12.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text12.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.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))
Me.Text12.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text12.Font = New System.Drawing.Font("Arial", 8!)
Me.Text12.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text12.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text12.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiCustomFormatService("MM/dd/yyyy")
Me.Text12.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text13
'
Me.Text13 = New Stimulsoft.Report.Components.StiText
Me.Text13.CanGrow = true
Me.Text13.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.1, 0, 0.5, 0.15)
Me.Text13.Guid = "83737ed18c374807a90b7d353e04d119"
Me.Text13.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text13.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text13.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text13.Name = "Text13"
AddHandler Me.Text13.GetValue, AddressOf Me.Text13__GetValue
Me.Text13.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text13.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.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))
Me.Text13.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text13.Font = New System.Drawing.Font("Arial", 8!)
Me.Text13.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text13.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text13.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text13.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text14
'
Me.Text14 = New Stimulsoft.Report.Components.StiText
Me.Text14.CanGrow = true
Me.Text14.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.6, 0, 1.2, 0.15)
Me.Text14.Guid = "27857cd579af4c009558bc8e6bf12582"
Me.Text14.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text14.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text14.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text14.Name = "Text14"
AddHandler Me.Text14.GetValue, AddressOf Me.Text14__GetValue
Me.Text14.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text14.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.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))
Me.Text14.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text14.Font = New System.Drawing.Font("Arial", 8!)
Me.Text14.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text14.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text14.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text14.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text15
'
Me.Text15 = New Stimulsoft.Report.Components.StiText
Me.Text15.CanGrow = true
Me.Text15.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(4.8, 0, 0.8, 0.15)
Me.Text15.Guid = "dd4c2695200542238eb2f234b5cdf77d"
Me.Text15.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text15.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text15.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text15.Name = "Text15"
AddHandler Me.Text15.GetValue, AddressOf Me.Text15__GetValue
Me.Text15.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text15.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text15.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text15.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text15.Font = New System.Drawing.Font("Arial", 8!)
Me.Text15.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text15.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text15.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text15.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text16
'
Me.Text16 = New Stimulsoft.Report.Components.StiText
Me.Text16.CanGrow = true
Me.Text16.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(6.5, 0, 1.6, 0.15)
Me.Text16.Guid = "7587c36346324a51a9c51579ef845c78"
Me.Text16.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text16.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text16.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text16.Name = "Text16"
AddHandler Me.Text16.GetValue, AddressOf Me.Text16__GetValue
Me.Text16.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text16.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text16.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text16.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text16.Font = New System.Drawing.Font("Arial", 8!)
Me.Text16.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text16.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text16.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text16.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'ClickToViewComponent2
'
Me.ClickToViewComponent2 = New SDP.Win.QueryBuilder.ClickToViewComponent
Me.ClickToViewComponent2.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 0, 1, 0.15)
Me.ClickToViewComponent2.Guid = "8b8e2313aa6a485db79871fb1dd968e1"
AddHandler Me.ClickToViewComponent2.GetHyperlink, AddressOf Me.ClickToViewComponent2__GetHyperlink
Me.ClickToViewComponent2.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.ClickToViewComponent2.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.ClickToViewComponent2.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.ClickToViewComponent2.Name = "ClickToViewComponent2"
AddHandler Me.ClickToViewComponent2.GetTag, AddressOf Me.ClickToViewComponent2__GetTag
AddHandler Me.ClickToViewComponent2.GetValue, AddressOf Me.ClickToViewComponent2__GetValue
Me.ClickToViewComponent2.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.ClickToViewComponent2.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))
Me.ClickToViewComponent2.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.ClickToViewComponent2.Font = New System.Drawing.Font("Arial", 8!, System.Drawing.FontStyle.Underline)
Me.ClickToViewComponent2.Margins = New Stimulsoft.Report.Components.StiMargins(0, 0, 0, 0)
Me.ClickToViewComponent2.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Blue)
Me.ClickToViewComponent2.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.ClickToViewComponent2.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, false, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text17
'
Me.Text17 = New Stimulsoft.Report.Components.StiText
Me.Text17.CanGrow = true
Me.Text17.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(5.6, 0, 0.9, 0.15)
Me.Text17.Guid = "85a2f8149dee4b1daf0d50ae34795fbf"
Me.Text17.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text17.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text17.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text17.Name = "Text17"
AddHandler Me.Text17.GetValue, AddressOf Me.Text17__GetValue
Me.Text17.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text17.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text17.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text17.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text17.Font = New System.Drawing.Font("Arial", 8!)
Me.Text17.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text17.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text17.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, true, " ")
Me.Text17.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
Me.DatavCrfAndCrl.Guid = Nothing
Me.DatavCrfAndCrl.MasterComponent = Nothing
'
'Footer1
'
Me.Footer1 = New Stimulsoft.Report.Components.StiFooterBand
Me.Footer1.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 2.25, 8.14, 0)
Me.Footer1.MaxHeight = 0
Me.Footer1.MinHeight = 0
Me.Footer1.Name = "Footer1"
Me.Footer1.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))
Me.Footer1.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Footer1.Guid = Nothing
'
'GroupFooter1
'
Me.GroupFooter1 = New Stimulsoft.Report.Components.StiGroupFooterBand
Me.GroupFooter1.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 2.65, 8.14, 0)
Me.GroupFooter1.MaxHeight = 0
Me.GroupFooter1.MinHeight = 0
Me.GroupFooter1.Name = "GroupFooter1"
Me.GroupFooter1.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))
Me.GroupFooter1.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.GroupFooter1.Guid = Nothing
'
'Header1
'
Me.Header1 = New Stimulsoft.Report.Components.StiHeaderBand
Me.Header1.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 3.05, 8.14, 0.4)
Me.Header1.MaxHeight = 0
Me.Header1.MinHeight = 0
Me.Header1.Name = "Header1"
Me.Header1.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))
Me.Header1.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
'
'Text20
'
Me.Text20 = New Stimulsoft.Report.Components.StiText
Me.Text20.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 0.1, 1, 0.3)
Me.Text20.Guid = "757219e1e685404bb7a70df0aded6e69"
Me.Text20.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text20.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text20.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text20.Name = "Text20"
AddHandler Me.Text20.GetValue, AddressOf Me.Text20__GetValue
Me.Text20.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text20.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text20.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))
Me.Text20.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text20.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text20.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text20.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text20.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text20.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text21
'
Me.Text21 = New Stimulsoft.Report.Components.StiText
Me.Text21.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(1, 0.1, 2.1, 0.3)
Me.Text21.Guid = "e203f2af943a4988866c2c8732e4443a"
Me.Text21.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text21.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text21.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text21.Name = "Text21"
AddHandler Me.Text21.GetValue, AddressOf Me.Text21__GetValue
Me.Text21.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text21.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text21.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))
Me.Text21.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text21.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text21.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text21.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text21.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text21.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text22
'
Me.Text22 = New Stimulsoft.Report.Components.StiText
Me.Text22.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.1, 0.1, 0.5, 0.3)
Me.Text22.Guid = "c975067675a6446b8bdcc2687ccf8a1d"
Me.Text22.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text22.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text22.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text22.Name = "Text22"
AddHandler Me.Text22.GetValue, AddressOf Me.Text22__GetValue
Me.Text22.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text22.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text22.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))
Me.Text22.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text22.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text22.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text22.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text22.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text22.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text23
'
Me.Text23 = New Stimulsoft.Report.Components.StiText
Me.Text23.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.6, 0.1, 1, 0.3)
Me.Text23.Guid = "f973f73e58354139b14a5f7c163ce68a"
Me.Text23.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text23.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text23.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text23.Name = "Text23"
AddHandler Me.Text23.GetValue, AddressOf Me.Text23__GetValue
Me.Text23.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text23.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text23.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))
Me.Text23.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text23.Font = New System.Drawing.Font("Arial", 10!, System.Drawing.FontStyle.Bold)
Me.Text23.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text23.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text23.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text23.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'HorizontalLine1
'
Me.HorizontalLine1 = New Stimulsoft.Report.Components.StiHorizontalLinePrimitive
Me.HorizontalLine1.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 0.05, 8.15, 0.01)
Me.HorizontalLine1.Color = System.Drawing.Color.Black
Me.HorizontalLine1.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.HorizontalLine1.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.HorizontalLine1.Name = "HorizontalLine1"
Me.HorizontalLine1.Guid = Nothing
Me.Header1.Guid = Nothing
'
'GroupHeader2
'
Me.GroupHeader2 = New Stimulsoft.Report.Components.StiGroupHeaderBand
Me.GroupHeader2.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 3.85, 8.14, 0)
AddHandler Me.GroupHeader2.GetValue, AddressOf Me.GroupHeader2__GetValue
Me.GroupHeader2.Guid = "93eb37c43d5546ad99cc2366446d065d"
Me.GroupHeader2.MaxHeight = 0
Me.GroupHeader2.MinHeight = 0
Me.GroupHeader2.Name = "GroupHeader2"
Me.GroupHeader2.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))
Me.GroupHeader2.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
'
'Data2
'
Me.Data2 = New Stimulsoft.Report.Components.StiDataBand
Me.Data2.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 4.25, 8.14, 0)
Me.Data2.DataRelationName = "ViewFinancial_vCrfAndCrl"
Me.Data2.DataSourceName = "vCrfAndCrl"
Me.Data2.Guid = "68f5d30b6ab24e1e8bfac48b8f5efa93"
Me.Data2.MaxHeight = 0
Me.Data2.MinHeight = 0
Me.Data2.Name = "Data2"
Me.Data2.Sort = New System.String(-1) {}
Me.Data2.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))
Me.Data2.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Data2.MasterComponent = Nothing
'
'GroupFooter2
'
Me.GroupFooter2 = New Stimulsoft.Report.Components.StiGroupFooterBand
Me.GroupFooter2.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 4.65, 8.14, 0.15)
Me.GroupFooter2.Guid = "0371124cd38d48d88fdc30a646cd0fb3"
Me.GroupFooter2.MaxHeight = 0
Me.GroupFooter2.MinHeight = 0
Me.GroupFooter2.Name = "GroupFooter2"
Me.GroupFooter2.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))
Me.GroupFooter2.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
'
'Text18
'
Me.Text18 = New Stimulsoft.Report.Components.StiText
Me.Text18.CanGrow = true
Me.Text18.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 0, 1, 0.15)
Me.Text18.Guid = "f901ad2aa7df492abc5595befc756445"
Me.Text18.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text18.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text18.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text18.Name = "Text18"
AddHandler Me.Text18.GetValue, AddressOf Me.Text18__GetValue
Me.Text18.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text18.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text18.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text18.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text18.Font = New System.Drawing.Font("Arial", 8!)
Me.Text18.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text18.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text18.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text18.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text19
'
Me.Text19 = New Stimulsoft.Report.Components.StiText
Me.Text19.CanGrow = true
Me.Text19.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.6, 0, 1, 0.15)
Me.Text19.Guid = "5599442f845745d49f91ac5917feb841"
Me.Text19.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text19.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text19.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text19.Name = "Text19"
'
'Text19_Sum
'
AddHandler Me.Text19.GetValue, AddressOf Me.Text19__GetValue
Me.Text19.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals
Me.Text19.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text19.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text19.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text19.Font = New System.Drawing.Font("Arial", 8!)
Me.Text19.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text19.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text19.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text19.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text25
'
Me.Text25 = New Stimulsoft.Report.Components.StiText
Me.Text25.CanGrow = true
Me.Text25.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(1, 0, 2.1, 0.15)
Me.Text25.Guid = "fc6df55bed014717bf77fbbb23d37224"
Me.Text25.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text25.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text25.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text25.Name = "Text25"
AddHandler Me.Text25.GetValue, AddressOf Me.Text25__GetValue
Me.Text25.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text25.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text25.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text25.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text25.Font = New System.Drawing.Font("Arial", 8!)
Me.Text25.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text25.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text25.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text25.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text26
'
Me.Text26 = New Stimulsoft.Report.Components.StiText
Me.Text26.CanGrow = true
Me.Text26.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.1, 0, 0.5, 0.15)
Me.Text26.Guid = "188c048007484875998339b786c06d9d"
Me.Text26.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text26.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text26.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text26.Name = "Text26"
'
'Text26_Count
'
AddHandler Me.Text26.GetValue, AddressOf Me.Text26__GetValue
Me.Text26.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals
Me.Text26.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text26.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text26.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text26.Font = New System.Drawing.Font("Arial", 8!)
Me.Text26.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text26.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text26.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text26.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Data1
'
Me.Data1 = New Stimulsoft.Report.Components.StiDataBand
Me.Data1.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 5.2, 8.14, 0)
Me.Data1.DataRelationName = ""
Me.Data1.DataSourceName = "vCrfAndCrl"
Me.Data1.MaxHeight = 0
Me.Data1.MinHeight = 0
Me.Data1.Name = "Data1"
Me.Data1.Sort = New System.String(-1) {}
Me.Data1.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))
Me.Data1.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Data1.Guid = Nothing
Me.Data1.MasterComponent = Nothing
'
'Footer2
'
Me.Footer2 = New Stimulsoft.Report.Components.StiFooterBand
Me.Footer2.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(0, 5.6, 8.14, 0.2)
Me.Footer2.MaxHeight = 0
Me.Footer2.MinHeight = 0
Me.Footer2.Name = "Footer2"
Me.Footer2.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))
Me.Footer2.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
'
'Text27
'
Me.Text27 = New Stimulsoft.Report.Components.StiText
Me.Text27.CanGrow = true
Me.Text27.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.6, 0, 1, 0.2)
Me.Text27.Guid = "d9c3b5ec9708425c89db493bba36ad86"
Me.Text27.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text27.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text27.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text27.Name = "Text27"
'
'Text27_Sum
'
AddHandler Me.Text27.GetValue, AddressOf Me.Text27__GetValue
Me.Text27.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals
Me.Text27.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text27.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text27.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text27.Font = New System.Drawing.Font("Arial", 8!)
Me.Text27.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text27.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text27.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiNumberFormatService(1, ".", 2, ",", 3, true, true, " ")
Me.Text27.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text28
'
Me.Text28 = New Stimulsoft.Report.Components.StiText
Me.Text28.CanGrow = true
Me.Text28.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(1.8, 0, 1, 0.2)
Me.Text28.Guid = "ece450e4c51545938e1dc4cde9e8408a"
Me.Text28.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text28.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text28.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text28.Name = "Text28"
AddHandler Me.Text28.GetValue, AddressOf Me.Text28__GetValue
Me.Text28.Type = Stimulsoft.Report.Components.StiSystemTextType.Expression
Me.Text28.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text28.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text28.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text28.Font = New System.Drawing.Font("Arial", 10!)
Me.Text28.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text28.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text28.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text28.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'Text29
'
Me.Text29 = New Stimulsoft.Report.Components.StiText
Me.Text29.CanGrow = true
Me.Text29.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3.1, 0, 0.5, 0.2)
Me.Text29.Guid = "c440987f62e34caa954009eddfb00cfd"
Me.Text29.LinesOfUnderline = Stimulsoft.Base.Drawing.StiPenStyle.None
Me.Text29.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text29.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.Text29.Name = "Text29"
'
'Text29_Count
'
AddHandler Me.Text29.GetValue, AddressOf Me.Text29__GetValue
Me.Text29.Type = Stimulsoft.Report.Components.StiSystemTextType.Totals
Me.Text29.VertAlignment = Stimulsoft.Base.Drawing.StiVertAlignment.Center
Me.Text29.Border = New Stimulsoft.Base.Drawing.StiBorder(Stimulsoft.Base.Drawing.StiBorderSides.None, System.Drawing.Color.Black, 1, Stimulsoft.Base.Drawing.StiPenStyle.Solid, false, 4, New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black))
Me.Text29.Brush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Transparent)
Me.Text29.Font = New System.Drawing.Font("Arial", 10!)
Me.Text29.Margins = New Stimulsoft.Report.Components.StiMargins(2, 2, 2, 2)
Me.Text29.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.Black)
Me.Text29.TextFormat = New Stimulsoft.Report.Components.TextFormats.StiGeneralFormatService
Me.Text29.TextOptions = New Stimulsoft.Base.Drawing.StiTextOptions(false, false, true, 0!, System.Drawing.Text.HotkeyPrefix.None, System.Drawing.StringTrimming.None)
'
'HorizontalLine2
'
Me.HorizontalLine2 = New Stimulsoft.Report.Components.StiHorizontalLinePrimitive
Me.HorizontalLine2.ClientRectangle = New Stimulsoft.Base.Drawing.RectangleD(3, 0, 1.7, 0.01)
Me.HorizontalLine2.Color = System.Drawing.Color.Black
Me.HorizontalLine2.MaxSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.HorizontalLine2.MinSize = New Stimulsoft.Base.Drawing.SizeD(0, 0)
Me.HorizontalLine2.Name = "HorizontalLine2"
Me.HorizontalLine2.Guid = Nothing
Me.Footer2.Guid = Nothing
Me.Page1.ExcelSheetValue = Nothing
Me.Page1.Margins = New Stimulsoft.Report.Components.StiMargins(0.18, 0.18, 0.2, 0.2)
Me.Page1_Watermark = New Stimulsoft.Report.Components.StiWatermark
Me.Page1_Watermark.Font = New System.Drawing.Font("Arial", 100!)
Me.Page1_Watermark.Image = Nothing
Me.Page1_Watermark.TextBrush = New Stimulsoft.Base.Drawing.StiSolidBrush(System.Drawing.Color.FromArgb(50, 0, 0, 0))
Me.Report_PrinterSettings = New Stimulsoft.Report.Print.StiPrinterSettings
Me.PrinterSettings = me.Report_PrinterSettings
Me.Page1.Page = me.Page1
Me.Page1.Report = Me
Me.Page1.Watermark = me.Page1_Watermark
Me.PageHeader1.Page = me.Page1
Me.PageHeader1.Parent = me.Page1
Me.Text2.Page = me.Page1
Me.Text2.Parent = me.PageHeader1
Me.Text1.Page = me.Page1
Me.Text1.Parent = me.PageHeader1
Me.GroupHeader1.Page = me.Page1
Me.GroupHeader1.Parent = me.Page1
Me.Text3.Page = me.Page1
Me.Text3.Parent = me.GroupHeader1
Me.Text4.Page = me.Page1
Me.Text4.Parent = me.GroupHeader1
Me.Text5.Page = me.Page1
Me.Text5.Parent = me.GroupHeader1
Me.Text6.Page = me.Page1
Me.Text6.Parent = me.GroupHeader1
Me.Text7.Page = me.Page1
Me.Text7.Parent = me.GroupHeader1
Me.Text8.Page = me.Page1
Me.Text8.Parent = me.GroupHeader1
Me.Text9.Page = me.Page1
Me.Text9.Parent = me.GroupHeader1
Me.Text10.Page = me.Page1
Me.Text10.Parent = me.GroupHeader1
Me.Text24.Page = me.Page1
Me.Text24.Parent = me.GroupHeader1
Me.DatavCrfAndCrl.Page = me.Page1
Me.DatavCrfAndCrl.Parent = me.Page1
Me.Text11.Page = me.Page1
Me.Text11.Parent = me.DatavCrfAndCrl
Me.Text12.Page = me.Page1
Me.Text12.Parent = me.DatavCrfAndCrl
Me.Text13.Page = me.Page1
Me.Text13.Parent = me.DatavCrfAndCrl
Me.Text14.Page = me.Page1
Me.Text14.Parent = me.DatavCrfAndCrl
Me.Text15.Page = me.Page1
Me.Text15.Parent = me.DatavCrfAndCrl
Me.Text16.Page = me.Page1
Me.Text16.Parent = me.DatavCrfAndCrl
Me.ClickToViewComponent2.Page = me.Page1
Me.ClickToViewComponent2.Parent = me.DatavCrfAndCrl
Me.Text17.Page = me.Page1
Me.Text17.Parent = me.DatavCrfAndCrl
Me.Footer1.Page = me.Page1
Me.Footer1.Parent = me.Page1
Me.GroupFooter1.Page = me.Page1
Me.GroupFooter1.Parent = me.Page1
Me.Header1.Page = me.Page1
Me.Header1.Parent = me.Page1
Me.Text20.Page = me.Page1
Me.Text20.Parent = me.Header1
Me.Text21.Page = me.Page1
Me.Text21.Parent = me.Header1
Me.Text22.Page = me.Page1
Me.Text22.Parent = me.Header1
Me.Text23.Page = me.Page1
Me.Text23.Parent = me.Header1
Me.HorizontalLine1.Page = me.Page1
Me.HorizontalLine1.Parent = me.Header1
Me.GroupHeader2.Page = me.Page1
Me.GroupHeader2.Parent = me.Page1
Me.Data2.Page = me.Page1
Me.Data2.Parent = me.Page1
Me.GroupFooter2.Page = me.Page1
Me.GroupFooter2.Parent = me.Page1
Me.Text18.Page = me.Page1
Me.Text18.Parent = me.GroupFooter2
Me.Text19.Page = me.Page1
Me.Text19.Parent = me.GroupFooter2
Me.Text25.Page = me.Page1
Me.Text25.Parent = me.GroupFooter2
Me.Text26.Page = me.Page1
Me.Text26.Parent = me.GroupFooter2
Me.Data1.Page = me.Page1
Me.Data1.Parent = me.Page1
Me.Footer2.Page = me.Page1
Me.Footer2.Parent = me.Page1
Me.Text27.Page = me.Page1
Me.Text27.Parent = me.Footer2
Me.Text28.Page = me.Page1
Me.Text28.Parent = me.Footer2
Me.Text29.Page = me.Page1
Me.Text29.Parent = me.Footer2
Me.HorizontalLine2.Page = me.Page1
Me.HorizontalLine2.Parent = me.Footer2
AddHandler Me.GroupHeader2.BeginRender, AddressOf Me.GroupHeader2__BeginRender
AddHandler Me.GroupHeader2.EndRender, AddressOf Me.GroupHeader2__EndRender
AddHandler Me.Page1.BeforePrint, AddressOf Me.Page1__BeforePrint
AddHandler Me.Page1.AfterPrint, AddressOf Me.Page1__AfterPrint
AddHandler Me.GroupHeader2.Rendering, AddressOf Me.GroupHeader2__Rendering
AddHandler Me.Data1.Rendering, AddressOf Me.Data1__Rendering
AddHandler EndRender, AddressOf Me.ReportWordsToEnd__EndRender
Me.AggregateFunctions = New Object() {Me.Text19_Sum, Me.Text26_Count, Me.Text27_Sum, Me.Text29_Count}
'
'Add to PageHeader1.Components
'
Me.PageHeader1.Components.Clear
Me.PageHeader1.Components.AddRange(New Stimulsoft.Report.Components.StiComponent() {me.Text2, me.Text1})
'
'Add to GroupHeader1.Components
'
Me.GroupHeader1.Components.Clear
Me.GroupHeader1.Components.AddRange(New Stimulsoft.Report.Components.StiComponent() {me.Text3, me.Text4, me.Text5, me.Text6, me.Text7, me.Text8, me.Text9, me.Text10, me.Text24})
'
'Add to DatavCrfAndCrl.Components
'
Me.DatavCrfAndCrl.Components.Clear
Me.DatavCrfAndCrl.Components.AddRange(New Stimulsoft.Report.Components.StiComponent() {me.Text11, me.Text12, me.Text13, me.Text14, me.Text15, me.Text16, me.ClickToViewComponent2, me.Text17})
'
'Add to Header1.Components
'
Me.Header1.Components.Clear
Me.Header1.Components.AddRange(New Stimulsoft.Report.Components.StiComponent() {me.Text20, me.Text21, me.Text22, me.Text23, me.HorizontalLine1})
'
'Add to GroupFooter2.Components
'
Me.GroupFooter2.Components.Clear
Me.GroupFooter2.Components.AddRange(New Stimulsoft.Report.Components.StiComponent() {me.Text18, me.Text19, me.Text25, me.Text26})
'
'Add to Footer2.Components
'
Me.Footer2.Components.Clear
Me.Footer2.Components.AddRange(New Stimulsoft.Report.Components.StiComponent() {me.Text27, me.Text28, me.Text29, me.HorizontalLine2})
'
'Add to Page1.Components
'
Me.Page1.Components.Clear
Me.Page1.Components.AddRange(New Stimulsoft.Report.Components.StiComponent() {me.PageHeader1, me.GroupHeader1, me.DatavCrfAndCrl, me.Footer1, me.GroupFooter1, me.Header1, me.GroupHeader2, me.Data2, me.GroupFooter2, me.Data1, me.Footer2})
'
'Add to Pages
'
Me.Pages.Clear
Me.Pages.AddRange(New Stimulsoft.Report.Components.StiPage() {me.Page1})
Me.Dictionary.Relations.Add(Me.ParentvAccountsWithPrimaryAndSpouseMemberInfo)
Me.Dictionary.Relations.Add(Me.ParentViewFinancial)
Me.vAccountsWithPrimaryAndSpouseMemberInfo.Columns.AddRange(New Stimulsoft.Report.Dictionary.StiDataColumn() {New Stimulsoft.Report.Dictionary.StiDataColumn("nmfuid", "nmfuid", "Account # [Master File]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("AmfTitleSpouse", "AmfTitleSpouse", "Title Spouse", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("AmfTitlePrimary", "AmfTitlePrimary", "Title Primary", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("AmfLastNamePrimary", "AmfLastNamePrimary", "Last Name Primary", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("AmfFirstNameSpouse", "AmfFirstNameSpouse", "First Name Spouse", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("AmfFirstNamePrimary", "AmfFirstNamePrimary", "First Name Primary", GetType(String))})
Me.DataSources.Add(Me.vAccountsWithPrimaryAndSpouseMemberInfo)
Me.ViewFinancial.Columns.AddRange(New Stimulsoft.Report.Dictionary.StiDataColumn() {New Stimulsoft.Report.Dictionary.StiDataColumn("imfrecmsg", "imfrecmsg", "Receipt Message [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfLetter", "imfLetter", "Thank you Letter [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfosamt", "imfosamt", "Amount O/S [Pledges]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfduedate", "imfduedate", "Due Date [Pledges]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfprinted", "imfprinted", "Last Billed [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfterms", "imfterms", "Terms [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfbillfrq", "imfbillfrq", "Billing Cycle [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfmemo2", "imfmemo2", "Internal Notes [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("cscrev1", "cscrev1", "Revenue G/L [CampaignSubCode]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("cscrev2", "cscrev2", "A/R [CampaignSubCode]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("cscRev3", "cscRev3", "Bank-Cash [CampaignSubCode]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("cscRev4", "cscRev4", "NA [CampaignSubCode]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("CscCode", "CscCode", "Campaign Sub Code [CampaignSubCode]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("CscDesc", "CscDesc", "Campaign Sub-Code Description [CampaignSubCode]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcnccod1", "ccfcnccod1", "Concert Code 1 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcnccod2", "ccfcnccod2", "Concert Code 2 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcnccod3", "ccfcnccod3", "Concert Code 3 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcnccod4", "ccfcnccod4", "Concert Code 4 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcnccod5", "ccfcnccod5", "Concert Code 5 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcncval1", "ccfcncval1", "Concert Code 1 Values [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcncval2", "ccfcncval2", "Concert Code 2 Values [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcncval3", "ccfcncval3", "Concert Code 3 Values [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcncval4", "ccfcncval4", "Concert Code 4 Values [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcncval5", "ccfcncval5", "Concert Code 5 Values [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfplddate", "imfplddate", "Pledge Date [Pledges]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfpldamt", "imfpldamt", "Pledge Amount [Pledges]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfstatus", "imfstatus", "Status [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfmemo", "imfmemo", "Statement Notes [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imftype", "imftype", "Pledge Type [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfnafseq", "imfnafseq", "Billing Address [Pledges]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfdonate", "imfdonate", "Donation [Pledges]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfregid", "imfregid", "Term [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfsource", "imfsource", "Source [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfsourcetype", "imfsourcetype", "Source type [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfcoucode", "imfcoucode", "Currency [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfimddate", "imfimddate", "Gift Date [Pledges]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfpostamt", "imfpostamt", "Posted Amount [Pledges]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("imffndFundId", "imffndFundId", "Fund [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfamfId", "imfamfId", "Person [Pledges]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfCscId", "imfCscId", "Campaign Sub-Code [Pledges]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccflike", "ccflike", "Similar Camp. [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfrange", "ccfrange", "Analysis Divs [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfaddusr", "imfaddusr", "Add User [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfaddusr", "chfaddusr", "Add User [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfaddtime", "chfaddtime", "Add Time [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfaddsrc", "chfaddsrc", "Add Source [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfmodusr", "chfmodusr", "Modified User [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfmodtime", "chfmodtime", "Modified Time [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfmodsrc", "chfmodsrc", "Modified Source [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfadddate", "imfadddate", "Add Date [Pledges]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfaddtime", "imfaddtime", "Add Time [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfaddsrc", "imfaddsrc", "Add Source [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catadddate", "catadddate", "Add Date [Categories]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("cataddsrc", "cataddsrc", "Add Source [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("cataddtime", "cataddtime", "Add Time [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("cataddusr", "cataddusr", "Add User [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catmoddate", "catmoddate", "Modified Date [Categories]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("catmodsrc", "catmodsrc", "Modified Source [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catmodtime", "catmodtime", "Modified Time [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catmodusr", "catmodusr", "Modified User [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfaddsrc", "ccfaddsrc", "Add Source [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfaddtime", "ccfaddtime", "Add Time [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfaddusr", "ccfaddusr", "Add User [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfmodsrc", "ccfmodsrc", "Modified Source [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfmodtime", "ccfmodtime", "Modified Time [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfmodusr", "ccfmodusr", "Modified User [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdltsrc", "ccfdltsrc", "Delete Source [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdlttime", "ccfdlttime", "Delete Time [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdltusr", "ccfdltusr", "Delete User [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catdlttime", "catdlttime", "Delete Time [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfdlttime", "chfdlttime", "Delete Time [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catdltusr", "catdltusr", "Delete User [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfdltusr", "chfdltusr", "Delete User [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catdltsrc", "catdltsrc", "Delete Source [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfdltsrc", "chfdltsrc", "Delete Source [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catdltdate", "catdltdate", "Delete Date [Categories]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfLogID", "imfLogID", "Log ID [Pledges]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfvalue", "chfvalue", "Reserv. Cost [Campaign IDs ]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfdswfee", "chfdswfee", "Reservation Fee [Campaign IDs ]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfadnum", "chfadnum", "Last Ad # [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chffreedsw", "chffreedsw", "$ for Free Res. [Campaign IDs ]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfcost", "chfcost", "Cost/Mailing [Campaign IDs ]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfmove", "ccfmove", "Move to Master [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfmemo", "ccfmemo", "Ticket Prices [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcode", "ccfcode", "Code [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdesc", "ccfdesc", "Description [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfsortdef", "ccfsortdef", "Sort Order [Campaign Codes]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfstatus", "chfstatus", "Status (A/H) [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfmemo", "chfmemo", "Notes [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdesc2", "ccfdesc2", "Alternate Description [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfrcfcode", "ccfrcfcode", "Default Receipt [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfnlfcode", "ccfnlfcode", "Default Assoc. [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfqcramts", "ccfqcramts", "Default $ Amts. [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfgift", "ccfgift", "Gift Campaign [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfdatef", "chfdatef", "Starting Date [Campaign IDs ]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfdatet", "chfdatet", "Ending Date [Campaign IDs ]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfprcnt", "chfprcnt", "% Not Deduct. [Campaign IDs ]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfgoal", "chfgoal", "Goal [Campaign IDs ]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfpicklis", "ccfpicklis", "Picklist [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcampaig", "ccfcampaig", "Campaign [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccffollow", "ccffollow", "Follow-ups [Campaign Codes]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfpaysort", "ccfpaysort", "Payment Sort [Campaign Codes]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfsolid", "chfsolid", "Solicitor [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdmf", "ccfdmf", "Memorial [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfsolgrp", "ccfsolgrp", "Solicitor Group [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfimc4", "ccfimc4", "Collect. Screen [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfrptfrmt", "ccfrptfrmt", "Report Format [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfyear", "chfyear", "Year [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfDefaultImfAmount", "chfDefaultImfAmount", "Default Amount [Campaign IDs ]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("catcode", "catcode", "Code [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catdesc", "catdesc", "Description [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("cattype", "cattype", "Category Type [Categories]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("catdecimal", "catdecimal", "Decimal [Categories]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("catgroup", "catgroup", "Groups [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catlog", "catlog", "Log [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catsort", "catsort", "Sort Desc [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catfrtype", "catfrtype", "On Yearly Tab [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("catsortcod", "catsortcod", "Sort Code [Categories]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfimftype", "ccfimftype", "ccfimftype Caption 1 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfbank", "ccfbank", "ccfbank Caption 1 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrctmsg", "chfrctmsg", "Receipt Msg. [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrctmsg2", "chfrctmsg2", "Receipt Msg. 2 [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrctmsg3", "chfrctmsg3", "Receipt Msg. 3 [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrctmsg4", "chfrctmsg4", "Receipt Msg. 4 [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrctmsg5", "chfrctmsg5", "Receipt Msg. 5 [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrcfcode", "chfrcfcode", "Default Receipt [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfLetter", "chfLetter", "Thank you letter [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfid", "chfid", "Campaign ID [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfchfid", "imfchfid", "Campaign ID [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("cscDefaultAmount", "cscDefaultAmount", "cscDefaultAmount", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdelete", "ccfdelete", "Delete Action [Campaign Codes]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfsmfid", "imfsmfid", "Student ID [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfnmfuid", "imfnmfuid", "Account # [Pledges]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("cscid", "cscid", "Sub-Code ID [CampaignSubCode]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfService", "ccfService", "Service [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfccfcode", "chfccfcode", "Campaign Code [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chflog", "chflog", "Log [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfifid", "imfifid", "Intermediate financial wizard id [Pledges]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdswtab", "ccfdswtab", "Seating [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfjawtab", "ccfjawtab", "Journal [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfimftab", "ccfimftab", "Pledges [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcrftab", "ccfcrftab", "Payments [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdswcode", "ccfdswcode", "Seating Code [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfjawcode", "ccfjawcode", "Journal Code [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfimfcode", "ccfimfcode", "Pledge Code [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfdsltab", "ccfdsltab", "Guests [Campaign Codes]", GetType(Boolean)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfrev1", "ccfrev1", "Revenue G/L [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrev1", "chfrev1", "Revenue G/L [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrev2", "chfrev2", "A/R [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrev3", "chfrev3", "Bank-Cash [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfrev4", "chfrev4", "N/A [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfrev2", "ccfrev2", "A/R [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfrev3", "ccfrev3", "Bank-Cash [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfrev4", "ccfrev4", "NA [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfflag1", "ccfflag1", "Flag 1 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfflag2", "ccfflag2", "Flag 2 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfflag3", "ccfflag3", "Flag 3 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfflag4", "ccfflag4", "Flag 4 [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfflagprt", "ccfflagprt", "Flags Header [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccftaramt", "ccftaramt", "Target Years [Campaign Codes]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfcpw", "ccfcpw", "To Prospects [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfflags1", "ccfflags1", "Flag 1 List [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfflags2", "ccfflags2", "Flag 2 List [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfflags3", "ccfflags3", "Flag 3 List [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("ccfflags4", "ccfflags4", "Flag 4 List [Campaign Codes]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfinvno", "imfinvno", "Invoice # [Pledges]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("cscCCFId", "cscCCFId", "cscCCFId", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfgrpseq", "imfgrpseq", "Group Seq. # [Pledges]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfbatch", "imfbatch", "Pledge Batch # [Pledges]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfjawseq", "imfjawseq", "Ad # [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfsynhonors1", "imfsynhonors1", "Honors 1 [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfsynhonors2", "imfsynhonors2", "Honors 2 [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfsynhonors3", "imfsynhonors3", "Honors 3 [Pledges]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("imfsynhonors4", "imfsynhonors4", "Honors 4 [Pledges]", GetType(String))})
Me.DataSources.Add(Me.ViewFinancial)
Me.vCrfAndCrl.Columns.AddRange(New Stimulsoft.Report.Dictionary.StiDataColumn() {New Stimulsoft.Report.Dictionary.StiDataColumn("chfyear", "chfyear", "Year [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("crlchfid", "crlchfid", "Campaign Applied To [Distribution]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfccfcode", "chfccfcode", "Campaign Code [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("cscDefaultAmount", "cscDefaultAmount", "Default Amount [CampaignSubCode]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("crlamt", "crlamt", "Amount Applied [Distribution]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("crfchkamt", "crfchkamt", "Amount Paid [Payments]", GetType(Double)), New Stimulsoft.Report.Dictionary.StiDataColumn("crladddate", "crladddate", "Add Date [Distribution]", GetType(DateTime)), New Stimulsoft.Report.Dictionary.StiDataColumn("crlnmfuid", "crlnmfuid", "Account # [Distribution]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("crlimfinv", "crlimfinv", "Invoice # Applied To [Distribution]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("crfbatch", "crfbatch", "Batch # [Payments]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("crfchkno", "crfchkno", "Check # [Payments]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("crlseq", "crlseq", "Seq # [Distribution]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("crfseq", "crfseq", "Sequence # [Payments]", GetType(Integer)), New Stimulsoft.Report.Dictionary.StiDataColumn("chfid", "chfid", "Campaign ID [Campaign IDs ]", GetType(String)), New Stimulsoft.Report.Dictionary.StiDataColumn("crlccfid", "crlccfid", "Campaign ID Applied To [Distribution]", GetType(String))})
Me.DataSources.Add(Me.vCrfAndCrl)
End Sub
#Region "Relation ParentvAccountsWithPrimaryAndSpouseMemberInfo"
Public Class ParentvAccountsWithPrimaryAndSpouseMemberInfoRelation
Inherits Stimulsoft.Report.Dictionary.StiDataRow
Public Sub New(ByVal dataRow As Stimulsoft.Report.Dictionary.StiDataRow)
MyBase.New(dataRow)
End Sub
Public Overridable ReadOnly Property nmfuid As Integer
Get
Return CType(StiReport.ChangeType(Me("nmfuid"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property AmfTitleSpouse As String
Get
Return CType(StiReport.ChangeType(Me("AmfTitleSpouse"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property AmfTitlePrimary As String
Get
Return CType(StiReport.ChangeType(Me("AmfTitlePrimary"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property AmfLastNamePrimary As String
Get
Return CType(StiReport.ChangeType(Me("AmfLastNamePrimary"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property AmfFirstNameSpouse As String
Get
Return CType(StiReport.ChangeType(Me("AmfFirstNameSpouse"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property AmfFirstNamePrimary As String
Get
Return CType(StiReport.ChangeType(Me("AmfFirstNamePrimary"), GetType(String), true),String)
End Get
End Property
End Class
#End Region 'Relation ParentvAccountsWithPrimaryAndSpouseMemberInfo
#Region "Relation ParentViewFinancial"
Public Class ParentViewFinancialRelation
Inherits Stimulsoft.Report.Dictionary.StiDataRow
Public Sub New(ByVal dataRow As Stimulsoft.Report.Dictionary.StiDataRow)
MyBase.New(dataRow)
End Sub
Public Overridable ReadOnly Property imfrecmsg As String
Get
Return CType(StiReport.ChangeType(Me("imfrecmsg"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfLetter As String
Get
Return CType(StiReport.ChangeType(Me("imfLetter"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfosamt As Double
Get
Return CType(StiReport.ChangeType(Me("imfosamt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property imfduedate As DateTime
Get
Return CType(StiReport.ChangeType(Me("imfduedate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfprinted As String
Get
Return CType(StiReport.ChangeType(Me("imfprinted"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfterms As String
Get
Return CType(StiReport.ChangeType(Me("imfterms"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfbillfrq As String
Get
Return CType(StiReport.ChangeType(Me("imfbillfrq"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfmemo2 As String
Get
Return CType(StiReport.ChangeType(Me("imfmemo2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscrev1 As String
Get
Return CType(StiReport.ChangeType(Me("cscrev1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscrev2 As String
Get
Return CType(StiReport.ChangeType(Me("cscrev2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscRev3 As String
Get
Return CType(StiReport.ChangeType(Me("cscRev3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscRev4 As String
Get
Return CType(StiReport.ChangeType(Me("cscRev4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property CscCode As String
Get
Return CType(StiReport.ChangeType(Me("CscCode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property CscDesc As String
Get
Return CType(StiReport.ChangeType(Me("CscDesc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod5 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod5"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval5 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval5"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfplddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("imfplddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfpldamt As Double
Get
Return CType(StiReport.ChangeType(Me("imfpldamt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property imfstatus As String
Get
Return CType(StiReport.ChangeType(Me("imfstatus"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfmemo As String
Get
Return CType(StiReport.ChangeType(Me("imfmemo"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imftype As String
Get
Return CType(StiReport.ChangeType(Me("imftype"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfnafseq As Integer
Get
Return CType(StiReport.ChangeType(Me("imfnafseq"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property imfdonate As Boolean
Get
Return CType(StiReport.ChangeType(Me("imfdonate"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property imfregid As String
Get
Return CType(StiReport.ChangeType(Me("imfregid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsource As String
Get
Return CType(StiReport.ChangeType(Me("imfsource"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsourcetype As String
Get
Return CType(StiReport.ChangeType(Me("imfsourcetype"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfcoucode As String
Get
Return CType(StiReport.ChangeType(Me("imfcoucode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfimddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("imfimddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfpostamt As Double
Get
Return CType(StiReport.ChangeType(Me("imfpostamt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property imffndFundId As String
Get
Return CType(StiReport.ChangeType(Me("imffndFundId"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfamfId As Integer
Get
Return CType(StiReport.ChangeType(Me("imfamfId"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property imfCscId As Integer
Get
Return CType(StiReport.ChangeType(Me("imfCscId"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccflike As String
Get
Return CType(StiReport.ChangeType(Me("ccflike"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrange As String
Get
Return CType(StiReport.ChangeType(Me("ccfrange"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfaddusr As String
Get
Return CType(StiReport.ChangeType(Me("imfaddusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfaddusr As String
Get
Return CType(StiReport.ChangeType(Me("chfaddusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfaddtime As String
Get
Return CType(StiReport.ChangeType(Me("chfaddtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfaddsrc As String
Get
Return CType(StiReport.ChangeType(Me("chfaddsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfmodusr As String
Get
Return CType(StiReport.ChangeType(Me("chfmodusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfmodtime As String
Get
Return CType(StiReport.ChangeType(Me("chfmodtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfmodsrc As String
Get
Return CType(StiReport.ChangeType(Me("chfmodsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfadddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("imfadddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfaddtime As String
Get
Return CType(StiReport.ChangeType(Me("imfaddtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfaddsrc As String
Get
Return CType(StiReport.ChangeType(Me("imfaddsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catadddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("catadddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property cataddsrc As String
Get
Return CType(StiReport.ChangeType(Me("cataddsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cataddtime As String
Get
Return CType(StiReport.ChangeType(Me("cataddtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cataddusr As String
Get
Return CType(StiReport.ChangeType(Me("cataddusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catmoddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("catmoddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property catmodsrc As String
Get
Return CType(StiReport.ChangeType(Me("catmodsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catmodtime As String
Get
Return CType(StiReport.ChangeType(Me("catmodtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catmodusr As String
Get
Return CType(StiReport.ChangeType(Me("catmodusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfaddsrc As String
Get
Return CType(StiReport.ChangeType(Me("ccfaddsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfaddtime As String
Get
Return CType(StiReport.ChangeType(Me("ccfaddtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfaddusr As String
Get
Return CType(StiReport.ChangeType(Me("ccfaddusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfmodsrc As String
Get
Return CType(StiReport.ChangeType(Me("ccfmodsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfmodtime As String
Get
Return CType(StiReport.ChangeType(Me("ccfmodtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfmodusr As String
Get
Return CType(StiReport.ChangeType(Me("ccfmodusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdltsrc As String
Get
Return CType(StiReport.ChangeType(Me("ccfdltsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdlttime As String
Get
Return CType(StiReport.ChangeType(Me("ccfdlttime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdltusr As String
Get
Return CType(StiReport.ChangeType(Me("ccfdltusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdlttime As String
Get
Return CType(StiReport.ChangeType(Me("catdlttime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfdlttime As String
Get
Return CType(StiReport.ChangeType(Me("chfdlttime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdltusr As String
Get
Return CType(StiReport.ChangeType(Me("catdltusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfdltusr As String
Get
Return CType(StiReport.ChangeType(Me("chfdltusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdltsrc As String
Get
Return CType(StiReport.ChangeType(Me("catdltsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfdltsrc As String
Get
Return CType(StiReport.ChangeType(Me("chfdltsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdltdate As DateTime
Get
Return CType(StiReport.ChangeType(Me("catdltdate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfLogID As Integer
Get
Return CType(StiReport.ChangeType(Me("imfLogID"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfvalue As Integer
Get
Return CType(StiReport.ChangeType(Me("chfvalue"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfdswfee As Integer
Get
Return CType(StiReport.ChangeType(Me("chfdswfee"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfadnum As String
Get
Return CType(StiReport.ChangeType(Me("chfadnum"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chffreedsw As Double
Get
Return CType(StiReport.ChangeType(Me("chffreedsw"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property chfcost As Double
Get
Return CType(StiReport.ChangeType(Me("chfcost"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property ccfmove As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfmove"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfmemo As String
Get
Return CType(StiReport.ChangeType(Me("ccfmemo"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdesc As String
Get
Return CType(StiReport.ChangeType(Me("ccfdesc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfsortdef As Integer
Get
Return CType(StiReport.ChangeType(Me("ccfsortdef"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfstatus As String
Get
Return CType(StiReport.ChangeType(Me("chfstatus"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfmemo As String
Get
Return CType(StiReport.ChangeType(Me("chfmemo"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdesc2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfdesc2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrcfcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfrcfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfnlfcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfnlfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfqcramts As String
Get
Return CType(StiReport.ChangeType(Me("ccfqcramts"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfgift As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfgift"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property chfdatef As DateTime
Get
Return CType(StiReport.ChangeType(Me("chfdatef"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property chfdatet As DateTime
Get
Return CType(StiReport.ChangeType(Me("chfdatet"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property chfprcnt As Integer
Get
Return CType(StiReport.ChangeType(Me("chfprcnt"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfgoal As Integer
Get
Return CType(StiReport.ChangeType(Me("chfgoal"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccfpicklis As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfpicklis"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfcampaig As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfcampaig"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccffollow As Integer
Get
Return CType(StiReport.ChangeType(Me("ccffollow"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccfpaysort As Integer
Get
Return CType(StiReport.ChangeType(Me("ccfpaysort"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfsolid As String
Get
Return CType(StiReport.ChangeType(Me("chfsolid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdmf As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfdmf"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfsolgrp As String
Get
Return CType(StiReport.ChangeType(Me("ccfsolgrp"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfimc4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfimc4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrptfrmt As String
Get
Return CType(StiReport.ChangeType(Me("ccfrptfrmt"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfyear As String
Get
Return CType(StiReport.ChangeType(Me("chfyear"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfDefaultImfAmount As Integer
Get
Return CType(StiReport.ChangeType(Me("chfDefaultImfAmount"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property catcode As String
Get
Return CType(StiReport.ChangeType(Me("catcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdesc As String
Get
Return CType(StiReport.ChangeType(Me("catdesc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cattype As Integer
Get
Return CType(StiReport.ChangeType(Me("cattype"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property catdecimal As Double
Get
Return CType(StiReport.ChangeType(Me("catdecimal"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property catgroup As String
Get
Return CType(StiReport.ChangeType(Me("catgroup"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catlog As String
Get
Return CType(StiReport.ChangeType(Me("catlog"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catsort As String
Get
Return CType(StiReport.ChangeType(Me("catsort"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catfrtype As String
Get
Return CType(StiReport.ChangeType(Me("catfrtype"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catsortcod As String
Get
Return CType(StiReport.ChangeType(Me("catsortcod"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfimftype As String
Get
Return CType(StiReport.ChangeType(Me("ccfimftype"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfbank As String
Get
Return CType(StiReport.ChangeType(Me("ccfbank"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg2 As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg3 As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg4 As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg5 As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg5"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrcfcode As String
Get
Return CType(StiReport.ChangeType(Me("chfrcfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfLetter As String
Get
Return CType(StiReport.ChangeType(Me("chfLetter"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfid As String
Get
Return CType(StiReport.ChangeType(Me("chfid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfchfid As String
Get
Return CType(StiReport.ChangeType(Me("imfchfid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscDefaultAmount As String
Get
Return CType(StiReport.ChangeType(Me("cscDefaultAmount"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdelete As Double
Get
Return CType(StiReport.ChangeType(Me("ccfdelete"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property imfsmfid As String
Get
Return CType(StiReport.ChangeType(Me("imfsmfid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfnmfuid As Integer
Get
Return CType(StiReport.ChangeType(Me("imfnmfuid"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property cscid As Integer
Get
Return CType(StiReport.ChangeType(Me("cscid"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccfService As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfService"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property chfccfcode As String
Get
Return CType(StiReport.ChangeType(Me("chfccfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chflog As String
Get
Return CType(StiReport.ChangeType(Me("chflog"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfifid As Integer
Get
Return CType(StiReport.ChangeType(Me("imfifid"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccfdswtab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfdswtab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfjawtab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfjawtab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfimftab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfimftab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfcrftab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfcrftab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfdswcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfdswcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfjawcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfjawcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfimfcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfimfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdsltab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfdsltab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfrev1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfrev1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrev1 As String
Get
Return CType(StiReport.ChangeType(Me("chfrev1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrev2 As String
Get
Return CType(StiReport.ChangeType(Me("chfrev2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrev3 As String
Get
Return CType(StiReport.ChangeType(Me("chfrev3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrev4 As String
Get
Return CType(StiReport.ChangeType(Me("chfrev4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrev2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfrev2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrev3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfrev3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrev4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfrev4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflag1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflag1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflag2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflag2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflag3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflag3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflag4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflag4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflagprt As String
Get
Return CType(StiReport.ChangeType(Me("ccfflagprt"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccftaramt As Double
Get
Return CType(StiReport.ChangeType(Me("ccftaramt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property ccfcpw As String
Get
Return CType(StiReport.ChangeType(Me("ccfcpw"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflags1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflags1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflags2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflags2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflags3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflags3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflags4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflags4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfinvno As Integer
Get
Return CType(StiReport.ChangeType(Me("imfinvno"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property cscCCFId As String
Get
Return CType(StiReport.ChangeType(Me("cscCCFId"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfgrpseq As Integer
Get
Return CType(StiReport.ChangeType(Me("imfgrpseq"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property imfbatch As Integer
Get
Return CType(StiReport.ChangeType(Me("imfbatch"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property imfjawseq As String
Get
Return CType(StiReport.ChangeType(Me("imfjawseq"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsynhonors1 As String
Get
Return CType(StiReport.ChangeType(Me("imfsynhonors1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsynhonors2 As String
Get
Return CType(StiReport.ChangeType(Me("imfsynhonors2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsynhonors3 As String
Get
Return CType(StiReport.ChangeType(Me("imfsynhonors3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsynhonors4 As String
Get
Return CType(StiReport.ChangeType(Me("imfsynhonors4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property vAccountsWithPrimaryAndSpouseMemberInfo As ParentvAccountsWithPrimaryAndSpouseMemberInfoRelation
Get
Return New ParentvAccountsWithPrimaryAndSpouseMemberInfoRelation(Me.GetParentData("vAccountsWithPrimaryAndSpouseMemberInfo_ViewFinancial"))
End Get
End Property
End Class
#End Region 'Relation ParentViewFinancial
#Region "DataSource vAccountsWithPrimaryAndSpouseMemberInfo"
Public Class vAccountsWithPrimaryAndSpouseMemberInfoDataSource
Inherits Stimulsoft.Report.Dictionary.StiDataTableSource
Public Sub New()
MyBase.New("Data.vAccountsWithPrimaryAndSpouseMemberInfo", "vAccountsWithPrimaryAndSpouseMemberInfo")
End Sub
Public Overridable ReadOnly Property nmfuid As Integer
Get
Return CType(StiReport.ChangeType(Me("nmfuid"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property AmfTitleSpouse As String
Get
Return CType(StiReport.ChangeType(Me("AmfTitleSpouse"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property AmfTitlePrimary As String
Get
Return CType(StiReport.ChangeType(Me("AmfTitlePrimary"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property AmfLastNamePrimary As String
Get
Return CType(StiReport.ChangeType(Me("AmfLastNamePrimary"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property AmfFirstNameSpouse As String
Get
Return CType(StiReport.ChangeType(Me("AmfFirstNameSpouse"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property AmfFirstNamePrimary As String
Get
Return CType(StiReport.ChangeType(Me("AmfFirstNamePrimary"), GetType(String), true),String)
End Get
End Property
End Class
#End Region 'DataSource vAccountsWithPrimaryAndSpouseMemberInfo
#Region "DataSource ViewFinancial"
Public Class ViewFinancialDataSource
Inherits Stimulsoft.Report.Dictionary.StiDataTableSource
Public Sub New()
MyBase.New("Data.ViewFinancial", "ViewFinancial")
End Sub
Public Overridable ReadOnly Property imfrecmsg As String
Get
Return CType(StiReport.ChangeType(Me("imfrecmsg"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfLetter As String
Get
Return CType(StiReport.ChangeType(Me("imfLetter"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfosamt As Double
Get
Return CType(StiReport.ChangeType(Me("imfosamt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property imfduedate As DateTime
Get
Return CType(StiReport.ChangeType(Me("imfduedate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfprinted As String
Get
Return CType(StiReport.ChangeType(Me("imfprinted"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfterms As String
Get
Return CType(StiReport.ChangeType(Me("imfterms"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfbillfrq As String
Get
Return CType(StiReport.ChangeType(Me("imfbillfrq"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfmemo2 As String
Get
Return CType(StiReport.ChangeType(Me("imfmemo2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscrev1 As String
Get
Return CType(StiReport.ChangeType(Me("cscrev1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscrev2 As String
Get
Return CType(StiReport.ChangeType(Me("cscrev2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscRev3 As String
Get
Return CType(StiReport.ChangeType(Me("cscRev3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscRev4 As String
Get
Return CType(StiReport.ChangeType(Me("cscRev4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property CscCode As String
Get
Return CType(StiReport.ChangeType(Me("CscCode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property CscDesc As String
Get
Return CType(StiReport.ChangeType(Me("CscDesc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcnccod5 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcnccod5"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcncval5 As String
Get
Return CType(StiReport.ChangeType(Me("ccfcncval5"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfplddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("imfplddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfpldamt As Double
Get
Return CType(StiReport.ChangeType(Me("imfpldamt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property imfstatus As String
Get
Return CType(StiReport.ChangeType(Me("imfstatus"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfmemo As String
Get
Return CType(StiReport.ChangeType(Me("imfmemo"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imftype As String
Get
Return CType(StiReport.ChangeType(Me("imftype"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfnafseq As Integer
Get
Return CType(StiReport.ChangeType(Me("imfnafseq"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property imfdonate As Boolean
Get
Return CType(StiReport.ChangeType(Me("imfdonate"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property imfregid As String
Get
Return CType(StiReport.ChangeType(Me("imfregid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsource As String
Get
Return CType(StiReport.ChangeType(Me("imfsource"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsourcetype As String
Get
Return CType(StiReport.ChangeType(Me("imfsourcetype"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfcoucode As String
Get
Return CType(StiReport.ChangeType(Me("imfcoucode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfimddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("imfimddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfpostamt As Double
Get
Return CType(StiReport.ChangeType(Me("imfpostamt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property imffndFundId As String
Get
Return CType(StiReport.ChangeType(Me("imffndFundId"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfamfId As Integer
Get
Return CType(StiReport.ChangeType(Me("imfamfId"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property imfCscId As Integer
Get
Return CType(StiReport.ChangeType(Me("imfCscId"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccflike As String
Get
Return CType(StiReport.ChangeType(Me("ccflike"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrange As String
Get
Return CType(StiReport.ChangeType(Me("ccfrange"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfaddusr As String
Get
Return CType(StiReport.ChangeType(Me("imfaddusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfaddusr As String
Get
Return CType(StiReport.ChangeType(Me("chfaddusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfaddtime As String
Get
Return CType(StiReport.ChangeType(Me("chfaddtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfaddsrc As String
Get
Return CType(StiReport.ChangeType(Me("chfaddsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfmodusr As String
Get
Return CType(StiReport.ChangeType(Me("chfmodusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfmodtime As String
Get
Return CType(StiReport.ChangeType(Me("chfmodtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfmodsrc As String
Get
Return CType(StiReport.ChangeType(Me("chfmodsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfadddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("imfadddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfaddtime As String
Get
Return CType(StiReport.ChangeType(Me("imfaddtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfaddsrc As String
Get
Return CType(StiReport.ChangeType(Me("imfaddsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catadddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("catadddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property cataddsrc As String
Get
Return CType(StiReport.ChangeType(Me("cataddsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cataddtime As String
Get
Return CType(StiReport.ChangeType(Me("cataddtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cataddusr As String
Get
Return CType(StiReport.ChangeType(Me("cataddusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catmoddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("catmoddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property catmodsrc As String
Get
Return CType(StiReport.ChangeType(Me("catmodsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catmodtime As String
Get
Return CType(StiReport.ChangeType(Me("catmodtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catmodusr As String
Get
Return CType(StiReport.ChangeType(Me("catmodusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfaddsrc As String
Get
Return CType(StiReport.ChangeType(Me("ccfaddsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfaddtime As String
Get
Return CType(StiReport.ChangeType(Me("ccfaddtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfaddusr As String
Get
Return CType(StiReport.ChangeType(Me("ccfaddusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfmodsrc As String
Get
Return CType(StiReport.ChangeType(Me("ccfmodsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfmodtime As String
Get
Return CType(StiReport.ChangeType(Me("ccfmodtime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfmodusr As String
Get
Return CType(StiReport.ChangeType(Me("ccfmodusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdltsrc As String
Get
Return CType(StiReport.ChangeType(Me("ccfdltsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdlttime As String
Get
Return CType(StiReport.ChangeType(Me("ccfdlttime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdltusr As String
Get
Return CType(StiReport.ChangeType(Me("ccfdltusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdlttime As String
Get
Return CType(StiReport.ChangeType(Me("catdlttime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfdlttime As String
Get
Return CType(StiReport.ChangeType(Me("chfdlttime"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdltusr As String
Get
Return CType(StiReport.ChangeType(Me("catdltusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfdltusr As String
Get
Return CType(StiReport.ChangeType(Me("chfdltusr"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdltsrc As String
Get
Return CType(StiReport.ChangeType(Me("catdltsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfdltsrc As String
Get
Return CType(StiReport.ChangeType(Me("chfdltsrc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdltdate As DateTime
Get
Return CType(StiReport.ChangeType(Me("catdltdate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property imfLogID As Integer
Get
Return CType(StiReport.ChangeType(Me("imfLogID"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfvalue As Integer
Get
Return CType(StiReport.ChangeType(Me("chfvalue"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfdswfee As Integer
Get
Return CType(StiReport.ChangeType(Me("chfdswfee"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfadnum As String
Get
Return CType(StiReport.ChangeType(Me("chfadnum"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chffreedsw As Double
Get
Return CType(StiReport.ChangeType(Me("chffreedsw"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property chfcost As Double
Get
Return CType(StiReport.ChangeType(Me("chfcost"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property ccfmove As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfmove"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfmemo As String
Get
Return CType(StiReport.ChangeType(Me("ccfmemo"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdesc As String
Get
Return CType(StiReport.ChangeType(Me("ccfdesc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfsortdef As Integer
Get
Return CType(StiReport.ChangeType(Me("ccfsortdef"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfstatus As String
Get
Return CType(StiReport.ChangeType(Me("chfstatus"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfmemo As String
Get
Return CType(StiReport.ChangeType(Me("chfmemo"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdesc2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfdesc2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrcfcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfrcfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfnlfcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfnlfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfqcramts As String
Get
Return CType(StiReport.ChangeType(Me("ccfqcramts"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfgift As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfgift"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property chfdatef As DateTime
Get
Return CType(StiReport.ChangeType(Me("chfdatef"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property chfdatet As DateTime
Get
Return CType(StiReport.ChangeType(Me("chfdatet"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property chfprcnt As Integer
Get
Return CType(StiReport.ChangeType(Me("chfprcnt"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfgoal As Integer
Get
Return CType(StiReport.ChangeType(Me("chfgoal"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccfpicklis As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfpicklis"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfcampaig As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfcampaig"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccffollow As Integer
Get
Return CType(StiReport.ChangeType(Me("ccffollow"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccfpaysort As Integer
Get
Return CType(StiReport.ChangeType(Me("ccfpaysort"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfsolid As String
Get
Return CType(StiReport.ChangeType(Me("chfsolid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdmf As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfdmf"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfsolgrp As String
Get
Return CType(StiReport.ChangeType(Me("ccfsolgrp"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfimc4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfimc4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrptfrmt As String
Get
Return CType(StiReport.ChangeType(Me("ccfrptfrmt"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfyear As String
Get
Return CType(StiReport.ChangeType(Me("chfyear"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfDefaultImfAmount As Integer
Get
Return CType(StiReport.ChangeType(Me("chfDefaultImfAmount"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property catcode As String
Get
Return CType(StiReport.ChangeType(Me("catcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catdesc As String
Get
Return CType(StiReport.ChangeType(Me("catdesc"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cattype As Integer
Get
Return CType(StiReport.ChangeType(Me("cattype"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property catdecimal As Double
Get
Return CType(StiReport.ChangeType(Me("catdecimal"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property catgroup As String
Get
Return CType(StiReport.ChangeType(Me("catgroup"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catlog As String
Get
Return CType(StiReport.ChangeType(Me("catlog"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catsort As String
Get
Return CType(StiReport.ChangeType(Me("catsort"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catfrtype As String
Get
Return CType(StiReport.ChangeType(Me("catfrtype"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property catsortcod As String
Get
Return CType(StiReport.ChangeType(Me("catsortcod"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfimftype As String
Get
Return CType(StiReport.ChangeType(Me("ccfimftype"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfbank As String
Get
Return CType(StiReport.ChangeType(Me("ccfbank"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg2 As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg3 As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg4 As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrctmsg5 As String
Get
Return CType(StiReport.ChangeType(Me("chfrctmsg5"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrcfcode As String
Get
Return CType(StiReport.ChangeType(Me("chfrcfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfLetter As String
Get
Return CType(StiReport.ChangeType(Me("chfLetter"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfid As String
Get
Return CType(StiReport.ChangeType(Me("chfid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfchfid As String
Get
Return CType(StiReport.ChangeType(Me("imfchfid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscDefaultAmount As String
Get
Return CType(StiReport.ChangeType(Me("cscDefaultAmount"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdelete As Double
Get
Return CType(StiReport.ChangeType(Me("ccfdelete"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property imfsmfid As String
Get
Return CType(StiReport.ChangeType(Me("imfsmfid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfnmfuid As Integer
Get
Return CType(StiReport.ChangeType(Me("imfnmfuid"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property cscid As Integer
Get
Return CType(StiReport.ChangeType(Me("cscid"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccfService As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfService"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property chfccfcode As String
Get
Return CType(StiReport.ChangeType(Me("chfccfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chflog As String
Get
Return CType(StiReport.ChangeType(Me("chflog"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfifid As Integer
Get
Return CType(StiReport.ChangeType(Me("imfifid"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property ccfdswtab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfdswtab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfjawtab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfjawtab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfimftab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfimftab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfcrftab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfcrftab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfdswcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfdswcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfjawcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfjawcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfimfcode As String
Get
Return CType(StiReport.ChangeType(Me("ccfimfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfdsltab As Boolean
Get
Return CType(StiReport.ChangeType(Me("ccfdsltab"), GetType(Boolean), true),Boolean)
End Get
End Property
Public Overridable ReadOnly Property ccfrev1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfrev1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrev1 As String
Get
Return CType(StiReport.ChangeType(Me("chfrev1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrev2 As String
Get
Return CType(StiReport.ChangeType(Me("chfrev2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrev3 As String
Get
Return CType(StiReport.ChangeType(Me("chfrev3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfrev4 As String
Get
Return CType(StiReport.ChangeType(Me("chfrev4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrev2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfrev2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrev3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfrev3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfrev4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfrev4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflag1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflag1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflag2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflag2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflag3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflag3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflag4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflag4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflagprt As String
Get
Return CType(StiReport.ChangeType(Me("ccfflagprt"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccftaramt As Double
Get
Return CType(StiReport.ChangeType(Me("ccftaramt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property ccfcpw As String
Get
Return CType(StiReport.ChangeType(Me("ccfcpw"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflags1 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflags1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflags2 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflags2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflags3 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflags3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ccfflags4 As String
Get
Return CType(StiReport.ChangeType(Me("ccfflags4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfinvno As Integer
Get
Return CType(StiReport.ChangeType(Me("imfinvno"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property cscCCFId As String
Get
Return CType(StiReport.ChangeType(Me("cscCCFId"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfgrpseq As Integer
Get
Return CType(StiReport.ChangeType(Me("imfgrpseq"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property imfbatch As Integer
Get
Return CType(StiReport.ChangeType(Me("imfbatch"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property imfjawseq As String
Get
Return CType(StiReport.ChangeType(Me("imfjawseq"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsynhonors1 As String
Get
Return CType(StiReport.ChangeType(Me("imfsynhonors1"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsynhonors2 As String
Get
Return CType(StiReport.ChangeType(Me("imfsynhonors2"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsynhonors3 As String
Get
Return CType(StiReport.ChangeType(Me("imfsynhonors3"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property imfsynhonors4 As String
Get
Return CType(StiReport.ChangeType(Me("imfsynhonors4"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property vAccountsWithPrimaryAndSpouseMemberInfo As ParentvAccountsWithPrimaryAndSpouseMemberInfoRelation
Get
Return New ParentvAccountsWithPrimaryAndSpouseMemberInfoRelation(Me.GetParentData("vAccountsWithPrimaryAndSpouseMemberInfo_ViewFinancial"))
End Get
End Property
End Class
#End Region 'DataSource ViewFinancial
#Region "DataSource vCrfAndCrl"
Public Class vCrfAndCrlDataSource
Inherits Stimulsoft.Report.Dictionary.StiDataTableSource
Public Sub New()
MyBase.New("Data.vCrfAndCrl", "vCrfAndCrl")
End Sub
Public Overridable ReadOnly Property chfyear As String
Get
Return CType(StiReport.ChangeType(Me("chfyear"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property crlchfid As String
Get
Return CType(StiReport.ChangeType(Me("crlchfid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property chfccfcode As String
Get
Return CType(StiReport.ChangeType(Me("chfccfcode"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property cscDefaultAmount As Double
Get
Return CType(StiReport.ChangeType(Me("cscDefaultAmount"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property crlamt As Double
Get
Return CType(StiReport.ChangeType(Me("crlamt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property crfchkamt As Double
Get
Return CType(StiReport.ChangeType(Me("crfchkamt"), GetType(Double), true),Double)
End Get
End Property
Public Overridable ReadOnly Property crladddate As DateTime
Get
Return CType(StiReport.ChangeType(Me("crladddate"), GetType(DateTime), true),DateTime)
End Get
End Property
Public Overridable ReadOnly Property crlnmfuid As Integer
Get
Return CType(StiReport.ChangeType(Me("crlnmfuid"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property crlimfinv As Integer
Get
Return CType(StiReport.ChangeType(Me("crlimfinv"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property crfbatch As Integer
Get
Return CType(StiReport.ChangeType(Me("crfbatch"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property crfchkno As String
Get
Return CType(StiReport.ChangeType(Me("crfchkno"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property crlseq As Integer
Get
Return CType(StiReport.ChangeType(Me("crlseq"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property crfseq As Integer
Get
Return CType(StiReport.ChangeType(Me("crfseq"), GetType(Integer), true),Integer)
End Get
End Property
Public Overridable ReadOnly Property chfid As String
Get
Return CType(StiReport.ChangeType(Me("chfid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property crlccfid As String
Get
Return CType(StiReport.ChangeType(Me("crlccfid"), GetType(String), true),String)
End Get
End Property
Public Overridable ReadOnly Property ViewFinancial As ParentViewFinancialRelation
Get
Return New ParentViewFinancialRelation(Me.GetParentData("ViewFinancial_vCrfAndCrl"))
End Get
End Property
End Class
#End Region 'DataSource vCrfAndCrl
#End Region 'StiReport Designer generated code - do not modify
End Class
End Namespace