﻿<?xml version="1.0" encoding="utf-16"?>
<JiwaDocument xmlns:jiwa="http://www.jiwa.com.au/xml/schemas" Type="JiwaFinancials.Jiwa.JiwaApplication.Plugin.Plugin">
  <RecID>4d1da64a-67af-43c3-bdd7-a287b55b7a11</RecID>
  <Name>Test Price</Name>
  <Description>Adds a tool to the ribbon on both the debtors and inventory maintenance forms - when clicked it shows the "test price" dialog from the price scheme maintenance with the debtor / inventory item preselected.

This allows the user to quickly test what price applies to a debtor / inventory combination.</Description>
  <IsEnabled>true</IsEnabled>
  <IsIsolatedToOwnAppDomain>false</IsIsolatedToOwnAppDomain>
  <ExecutionOrder>0</ExecutionOrder>
  <Author>Jiwa Financials</Author>
  <Version />
  <Code>Imports JiwaFinancials.Jiwa
Imports Microsoft.VisualBasic
Imports System.Windows.Forms
Imports System.Data.SqlClient
Imports System.Drawing
Imports System.Data

Public Class FormPlugin
    Inherits System.MarshalByRefObject
    Implements JiwaApplication.IJiwaFormPlugin

    Public Overrides Function InitializeLifetimeService() As Object
        ' returning null here will prevent the lease manager
        ' from deleting the Object.
        Return Nothing
    End Function

    Public Sub SetupBeforeHandlers(ByVal JiwaForm As JiwaApplication.IJiwaForm, ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaFormPlugin.SetupBeforeHandlers
    End Sub

    Public Sub Setup(ByVal JiwaForm As JiwaApplication.IJiwaForm, ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaFormPlugin.Setup
		If TypeOf JiwaForm Is JiwaInventoryUI.InventoryMaintenanceForm Then
			Dim inventoryForm As JiwaInventoryUI.InventoryMaintenanceForm = DirectCast(JiwaForm, JiwaInventoryUI.InventoryMaintenanceForm)
			
			Dim group As Infragistics.Win.UltraWinToolbars.RibbonGroup = inventoryForm.UltraToolbarsManager1.Ribbon.Tabs("Main").Groups("Actions")

			Dim newTool As New Infragistics.Win.UltraWinToolbars.ButtonTool("Test Price")        
	        newTool.SharedProps.Caption = "Test Price"
	        inventoryForm.UltraToolbarsManager1.Tools.Add(newTool)
			group.Tools.AddTool("Test Price")
	        group.Tools("Test Price").InstanceProps.MinimumSizeOnRibbon = Infragistics.Win.UltraWinToolbars.RibbonToolSize.Normal
				
			AddHandler inventoryForm.UltraToolbarsManager1.ToolClick, AddressOf inventoryForm_Toolbar_ToolClick
		ElseIf  TypeOf JiwaForm Is JiwaDebtorsUI.frmDebtor Then
			Dim debtorForm As JiwaDebtorsUI.frmDebtor = DirectCast(JiwaForm, JiwaDebtorsUI.frmDebtor)
			
			Dim group As Infragistics.Win.UltraWinToolbars.RibbonGroup = debtorForm.UltraToolbarsManager1.Ribbon.Tabs("Main").Groups("Actions")

			Dim newTool As New Infragistics.Win.UltraWinToolbars.ButtonTool("Test Price")        
	        newTool.SharedProps.Caption = "Test Price"
	        debtorForm.UltraToolbarsManager1.Tools.Add(newTool)
			group.Tools.AddTool("Test Price")
	        group.Tools("Test Price").InstanceProps.MinimumSizeOnRibbon = Infragistics.Win.UltraWinToolbars.RibbonToolSize.Normal
				
			AddHandler debtorForm.UltraToolbarsManager1.ToolClick, AddressOf debtorForm_Toolbar_ToolClick
		End If		
    End Sub
	
	Public Sub inventoryForm_Toolbar_ToolClick(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinToolbars.ToolClickEventArgs)
		Dim inventoryForm As JiwaInventoryUI.InventoryMaintenanceForm = DirectCast(sender, Infragistics.Win.UltraWinToolbars.UltraToolbarsManager).DockWithinContainer
			
        If e.Tool.Key = "Test Price" Then
	        Dim testPriceDialog As frmTestPrice = JiwaApplication.Manager.Instance.DialogFactory.CreateDialog(Of frmTestPrice)(inventoryform, "Test Price")
			testPriceDialog.Setup(inventoryForm.Inventory.RecID, Nothing)
			testPriceDialog.ShowDialog(inventoryForm)
		End If
	End Sub
	
	Public Sub debtorForm_Toolbar_ToolClick(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinToolbars.ToolClickEventArgs)
		Dim debtorForm As JiwaDebtorsUI.frmDebtor = DirectCast(sender, Infragistics.Win.UltraWinToolbars.UltraToolbarsManager).DockWithinContainer
			
        If e.Tool.Key = "Test Price" Then
			Dim testPriceDialog As frmTestPrice = JiwaApplication.Manager.Instance.DialogFactory.CreateDialog(Of frmTestPrice)(debtorForm, "Test Price")
			testPriceDialog.Setup(Nothing, debtorForm.Debtor.RecID)
			testPriceDialog.ShowDialog(debtorForm)
		End If
	End Sub
End Class

Public Class BusinessLogicPlugin
    Inherits System.MarshalByRefObject
    Implements JiwaApplication.IJiwaBusinessLogicPlugin

    Public Overrides Function InitializeLifetimeService() As Object
        ' returning null here will prevent the lease manager
        ' from deleting the Object.
        Return Nothing
    End Function

    Public Sub Setup(ByVal JiwaBusinessLogic As JiwaApplication.IJiwaBusinessLogic, ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaBusinessLogicPlugin.Setup
    End Sub

End Class

Public Class ApplicationManagerPlugin
    Inherits System.MarshalByRefObject
    Implements JiwaApplication.IJiwaApplicationManagerPlugin

    Public Overrides Function InitializeLifetimeService() As Object
        ' returning null here will prevent the lease manager
        ' from deleting the Object.
        Return Nothing
    End Function

    Public Sub Setup(ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaApplicationManagerPlugin.Setup
    End Sub

End Class

Public Class CustomFieldPlugin
    Inherits System.MarshalByRefObject
    Implements JiwaApplication.IJiwaCustomFieldPlugin

    Public Overrides Function InitializeLifetimeService() As Object
        ' returning null here will prevent the lease manager
        ' from deleting the Object.
        Return Nothing
    End Function

    Public Sub FormatCell(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal HostObject As JiwaApplication.IJiwaCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaCustomFieldPlugin.FormatCell
    End Sub

    Public Sub ReadData(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Row As Integer, ByVal HostObject As JiwaApplication.IJiwaCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaCustomFieldPlugin.ReadData
    End Sub

    Public Sub ButtonClicked(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal HostObject As JiwaApplication.IJiwaCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaCustomFieldPlugin.ButtonClicked
    End Sub

End Class

Public Class LineCustomFieldPlugin
    Inherits System.MarshalByRefObject
    Implements JiwaApplication.IJiwaLineCustomFieldPlugin

    Public Overrides Function InitializeLifetimeService() As Object
        ' returning null here will prevent the lease manager
        ' from deleting the Object.
        Return Nothing
    End Function

    Public Sub FormatCell(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal HostItem As JiwaApplication.IJiwaLineCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaLineCustomFieldPlugin.FormatCell
    End Sub

    Public Sub ReadData(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Row As Integer, ByVal HostItem As JiwaApplication.IJiwaLineCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaLineCustomFieldPlugin.ReadData
    End Sub

    Public Sub ButtonClicked(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal HostItem As JiwaApplication.IJiwaLineCustomFieldValues, ByVal CustomField As JiwaApplication.CustomFields.CustomField, ByVal CustomFieldValue As JiwaApplication.CustomFields.CustomFieldValue) Implements JiwaApplication.IJiwaLineCustomFieldPlugin.ButtonClicked
    End Sub

End Class

Public Class SystemSettingPlugin
    Inherits System.MarshalByRefObject
    Implements JiwaApplication.IJiwaSystemSettingPlugin

    Public Overrides Function InitializeLifetimeService() As Object
        ' returning null here will prevent the lease manager
        ' from deleting the Object.
        Return Nothing
    End Function

    Public Sub FormatCell(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal SystemSetting As JiwaApplication.SystemSettings.Setting) Implements JiwaApplication.IJiwaSystemSettingPlugin.FormatCell
    End Sub

    Public Sub ReadData(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Row As Integer, ByVal SystemSetting As JiwaApplication.SystemSettings.Setting) Implements JiwaApplication.IJiwaSystemSettingPlugin.ReadData
    End Sub

    Public Sub ButtonClicked(ByVal BusinessLogicHost As JiwaApplication.IJiwaBusinessLogic, ByVal GridObject As JiwaApplication.Controls.JiwaGrid, ByVal FormObject As JiwaApplication.IJiwaForm, ByVal Col As Integer, ByVal Row As Integer, ByVal SystemSetting As JiwaApplication.SystemSettings.Setting) Implements JiwaApplication.IJiwaSystemSettingPlugin.ButtonClicked
    End Sub

End Class

Public Class ScheduledExecutionPlugin
    Inherits System.MarshalByRefObject
    Implements JiwaApplication.IJiwaScheduledExecutionPlugin

    Public Sub Execute(ByVal Plugin As JiwaApplication.Plugin.Plugin, ByVal Schedule As JiwaApplication.Schedule.Schedule) Implements JiwaApplication.IJiwaScheduledExecutionPlugin.Execute

    End Sub

    Public Sub OnServiceStart(ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaScheduledExecutionPlugin.OnServiceStart

    End Sub

    Public Sub OnServiceStopping(ByVal Plugin As JiwaApplication.Plugin.Plugin) Implements JiwaApplication.IJiwaScheduledExecutionPlugin.OnServiceStopping

    End Sub
End Class

Public Class frmTestPrice
    Implements JiwaApplication.IJiwaDialog
    	
	Public Property Context As String Implements JiwaApplication.IJiwaDialog.Context
    Public Property StartParameters As Object Implements JiwaApplication.IJiwaDialog.StartParameters

    Private WithEvents _Debtor As JiwaDebtors.Debtor 
    Private WithEvents _Inventory As JiwaInventory.Inventory 
    Public QuantityCell As New JiwaFinancials.Jiwa.JiwaApplication.JiwaManageGrid.JiwaCurrencyCellType

    Public Overloads Function ShowDialog(ByVal owner As System.Windows.Forms.IWin32Window) As System.Windows.Forms.DialogResult Implements JiwaApplication.IJiwaDialog.ShowDialog
        Return MyBase.ShowDialog(owner)
    End Function

    Public ReadOnly Property Form As Form Implements JiwaApplication.IJiwaDialog.Form
        Get
            Return Me
        End Get
    End Property
	
	Public Sub Start(Context As String, StartParameters() As Object, OwnerForm As Form) Implements JiwaApplication.IJiwaDialog.Start
        Me.Context = Context
        Me.StartParameters = StartParameters	
		JiwaApplication.Manager.Instance.RestoreDialog(Me)
    End Sub

	Public Property Debtor As JiwaDebtors.Debtor
		Get
			Return _Debtor
		End Get
		Set (value As JiwaDebtors.Debtor)
			_debtor = value
		End Set		
	End Property
	
	Public Property Inventory As JiwaInventory.Inventory 
		Get
			Return _Inventory
		End Get
		Set (value As JiwaInventory.Inventory )
			_Inventory = value
		End Set		
	End Property

    Public Sub Setup(ByVal InventoryID As String, ByVal DebtorID As String)
		Debtor = JiwaApplication.Manager.Instance.BusinessLogicFactory.CreateBusinessLogic(Of JiwaDebtors.Debtor)(Nothing)
		Inventory = JiwaApplication.Manager.Instance.BusinessLogicFactory.CreateBusinessLogic(Of JiwaInventory.Inventory)(Nothing)
		
		If InventoryID IsNot Nothing Then
			Inventory.Read(InventoryID)			
		End If
		
		If DebtorID IsNot Nothing Then
			Debtor.Read(DebtorID)			
		End If
		
		JSCDebtor.Text = String.Format("{0} - {1}", debtor.AccountNo, debtor.name)
		JSCInventory.Text = String.Format("{0} - {1}", inventory.PartNo, inventory.Description)
		JTQuantity.Text = "1"
		
        JiwaApplication.Manager.Instance.RestoreDialog(Me)
        cboOrigin.Items.Add("Sales Order")
        cboOrigin.Items.Add("Sales Quote")
        cboOrigin.Items.Add("Other")

        cboOrigin.SelectedIndex = 0

        DTPicker1.Value = Now

        JSCDebtor.DrillDown = False
        JSCInventory.DrillDown = False

        Dim PriceCell As New JiwaFinancials.Jiwa.JiwaApplication.JiwaManageGrid.JiwaCurrencyCellType
        PriceCell.DecimalPlaces = JiwaApplication.Manager.Instance.Database.ReadSysData("System", "MoneyDecimalPlaces", 2)

        QuantityCell.DecimalPlaces = 0

        With ssReturnedPrices
            .AddColumn("Source", New JiwaFinancials.Jiwa.JiwaApplication.JiwaManageGrid.JiwaTextCellType, "Source", 30, False, True, True, True, , True)
            .AddColumn("Description", New JiwaFinancials.Jiwa.JiwaApplication.JiwaManageGrid.JiwaTextCellType, "Description", 30, False, True, True, True, , True)
            .AddColumn("Price", PriceCell, "Price", 20, False, True, True, True, , True)
            .AddColumn("QtyBreaks", New FarPoint.Win.Spread.CellType.CheckBoxCellType, "Qty Breaks", , , , , True)
            .AddColumn("QtyBreak", QuantityCell, "Qty Break", 20, False, True, True, True, , True)
            .AddColumn("Dates", New FarPoint.Win.Spread.CellType.CheckBoxCellType, "Dates", , , , , True)
            .AddColumn("StartDate", New FarPoint.Win.Spread.CellType.DateTimeCellType, "Start Date", 20, False, True, True, True, , True)
            .AddColumn("EndDate", New FarPoint.Win.Spread.CellType.DateTimeCellType, "End Date", 20, False, True, True, True, , True)
            .AddColumn("SOH", New FarPoint.Win.Spread.CellType.CheckBoxCellType, "SOH", , , , , True)
            .AddColumn("SOHID", New JiwaFinancials.Jiwa.JiwaApplication.JiwaManageGrid.JiwaTextCellType, "SOHID", 30, False, False, True, True, , True)
            .AddColumn("IncGST", New FarPoint.Win.Spread.CellType.CheckBoxCellType, "Inc GST", , , , , True)
			.SetupComplete()
        End With
		
		AddHandler Me.Form.FormClosing, AddressOf FormClosing

    End Sub
	
	Private Sub FormClosing()
		JiwaApplication.Manager.Instance.SaveDialog(Me)
	End Sub
	

    Private Sub cmdTestPrice_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles cmdTestPrice.Click
        Dim NewPrice As Decimal
        Dim PriceIsIncTax As Boolean
        Dim lPrice As JiwaPriceSchemes.ReturnedPrice
        Dim dummyOrderLineObject As Object = Nothing
		
		If Debtor.RecID Is Nothing OrElse debtor.RecID.Trim.Length = 0 Then
			Throw New System.Exception("No debtor selected.  Select a debtor first.")
		End If
		
		If inventory.RecID Is Nothing OrElse inventory.RecID.Trim.Length = 0 Then
			Throw New System.Exception("No inventory selected.  Select an inventory item first.")
		End If
		
		Dim PriceScheme As JiwaPriceSchemes.PriceScheme = JiwaApplication.Manager.Instance.BusinessLogicFactory.CreateBusinessLogic(Of JiwaPriceSchemes.PriceScheme)(Nothing)
		pricescheme.Read(debtor.PriceScheme.RecID)
		
        ssReturnedPrices.ActiveSheet.RowCount = 0		
        PriceScheme.GetPrice(cboOrigin.SelectedIndex, dummyOrderLineObject, inventory.RecID, debtor.RecID, DTPicker1.Value, JiwaApplication.Manager.Instance.Database.CurrentLogicalWarehouseID, CDbl(JTQuantity.Text), NewPrice, PriceIsIncTax)
        With ssReturnedPrices
            For Each lPrice In PriceScheme.ReturnedPriceCollection
                .ActiveSheet.RowCount += 1
                If Not lPrice.SourcePrice Is Nothing Then
                    .GridText("Source", .ActiveSheet.RowCount - 1) = lPrice.SourcePrice.Description
                End If
                .GridText("Description", .ActiveSheet.RowCount - 1) = lPrice.PriceDescription
                .GridText("Price", .ActiveSheet.RowCount - 1) = lPrice.Price
                .GridText("QtyBreaks", .ActiveSheet.RowCount - 1) = lPrice.HasQuantityBreak

                If lPrice.HasQuantityBreak Then
                    .GridText("QtyBreak", .ActiveSheet.RowCount - 1) = lPrice.QuantityBreak
                End If
                .GridText("Dates", .ActiveSheet.RowCount - 1) = lPrice.HasDateRange
                If lPrice.HasDateRange = True Then
                    .GridText("StartDate", .ActiveSheet.RowCount - 1) = lPrice.StartDate
                    .GridText("EndDate", .ActiveSheet.RowCount - 1) = lPrice.EndDate
                End If
                .GridText("SOH", .ActiveSheet.RowCount - 1) = lPrice.HasSOHID
                .GridText("SOHID", .ActiveSheet.RowCount - 1) = lPrice.SOHID
                .GridText("IncGST", .ActiveSheet.RowCount - 1) = lPrice.PriceIsIncTax

                If lPrice.Winner = True Then
                    .ActiveSheet.Rows(.ActiveSheet.RowCount - 1).ForeColor = System.Drawing.Color.Red
                Else
                    .ActiveSheet.Rows(.ActiveSheet.RowCount - 1).ForeColor = System.Drawing.Color.Black
                End If
            Next lPrice
        End With


    End Sub
  

    Private Sub JSCInventory_ButtonClicked(ByVal sender As Object, ByVal e As System.EventArgs) Handles JSCInventory.ButtonClicked
        Dim PartNo As String = ""
        Dim Description As String = ""
        With JiwaApplication.Manager.Instance.Search
            .Clear()
            .Caption = "Inventory"
            .SetDefaultSearch(JiwaApplication.JiwaSearch.clsSearch.SearchModes.jswInventory)
            If .Show(Me) = System.Windows.Forms.DialogResult.OK Then
                If .Results.Count &gt; 0 Then
                    Inventory.Read(.Fields(1).FieldValue)                    
                End If
            End If
        End With
    End Sub

    Private Sub JSCDebtor_ButtonClicked(ByVal sender As Object, ByVal e As System.EventArgs) Handles JSCDebtor.ButtonClicked

        Dim DebtorID As String = DoDebtorSearch()

		If DebtorID.Trim.Length &gt; 0 Then
            Debtor.Read(DebtorID)
        End If

    End Sub

    Public Function DoDebtorSearch() As String
        With JiwaApplication.Manager.Instance.Search
            .Clear()
            .SetDefaultSearch(JiwaApplication.JiwaSearch.clsSearch.SearchModes.jswDebtors)
            .UsePinBoard = False
            If .Show(Me) = System.Windows.Forms.DialogResult.OK Then
                If .Results.Count &gt; 0 Then
                    Return .Fields(1).FieldValue
                End If
            End If
            Return ""
        End With
    End Function

    Private Sub Debtor_Read(sender As Object, e As System.EventArgs) Handles _Debtor.ReadEnd  
        JSCDebtor.Text = Debtor.AccountNo &amp; " - " &amp; Debtor.Name		
    End Sub

    Private Sub Inventory_Read(sender As Object, e As System.EventArgs) Handles _Inventory.ReadEnd
        JSCInventory.Text = Inventory.PartNo &amp; " - " &amp; Inventory.Description
        QuantityCell.DecimalPlaces = Inventory.DecimalPlaces
        JTQuantity.DecimalPlaces = Inventory.DecimalPlaces
    End Sub

End Class

&lt;Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()&gt; Partial Class frmTestPrice
Inherits System.Windows.Forms.Form
#Region "Windows Form Designer generated code "
	&lt;System.Diagnostics.DebuggerNonUserCode()&gt; Public Sub New()
		MyBase.New()
		'This call is required by the Windows Form Designer.
		InitializeComponent()
	End Sub
	'Form overrides dispose to clean up the component list.
	&lt;System.Diagnostics.DebuggerNonUserCode()&gt; Protected Overloads Overrides Sub Dispose(ByVal Disposing As Boolean)
		If Disposing Then
			If Not components Is Nothing Then
				components.Dispose()
			End If
		End If
		MyBase.Dispose(Disposing)
	End Sub
	'Required by the Windows Form Designer
	Private components As System.ComponentModel.IContainer
	Public ToolTip1 As System.Windows.Forms.ToolTip
    Public WithEvents ssReturnedPrices As JiwaFinancials.Jiwa.JiwaApplication.Controls.JiwaGrid
    Public WithEvents cboOrigin As System.Windows.Forms.ComboBox
    Public WithEvents cmdTestPrice As System.Windows.Forms.Button
    Public WithEvents Label5 As Infragistics.Win.Misc.UltraLabel
    Public WithEvents Label4 As Infragistics.Win.Misc.UltraLabel
    Public WithEvents Label3 As Infragistics.Win.Misc.UltraLabel
    Public WithEvents Label2 As Infragistics.Win.Misc.UltraLabel
    Public WithEvents Label1 As Infragistics.Win.Misc.UltraLabel
    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.
    'Do not modify it using the code editor.
    &lt;System.Diagnostics.DebuggerStepThrough()&gt; Private Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container()
        Dim Appearance1 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance()
        Dim Appearance2 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance()
        Dim Appearance3 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance()
        Dim Appearance4 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance()
        Dim Appearance5 As Infragistics.Win.Appearance = New Infragistics.Win.Appearance()
        
        Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
        Me.ssReturnedPrices = New JiwaFinancials.Jiwa.JiwaApplication.Controls.JiwaGrid()
        Me.cboOrigin = New System.Windows.Forms.ComboBox()
        Me.cmdTestPrice = New System.Windows.Forms.Button()
        Me.Label5 = New Infragistics.Win.Misc.UltraLabel()
        Me.Label4 = New Infragistics.Win.Misc.UltraLabel()
        Me.Label3 = New Infragistics.Win.Misc.UltraLabel()
        Me.Label2 = New Infragistics.Win.Misc.UltraLabel()
        Me.Label1 = New Infragistics.Win.Misc.UltraLabel()
        Me.JSCInventory = New JiwaFinancials.Jiwa.JiwaApplication.Controls.Lookup()
        Me.JSCDebtor = New JiwaFinancials.Jiwa.JiwaApplication.Controls.Lookup()
        Me.JTQuantity = New JiwaFinancials.Jiwa.JiwaApplication.Controls.NumericEditor()
        Me.DTPicker1 = New System.Windows.Forms.DateTimePicker()
        CType(Me.ssReturnedPrices, System.ComponentModel.ISupportInitialize).BeginInit()
        CType(Me.JTQuantity, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.SuspendLayout()
        '
        'ssReturnedPrices
        '
        Me.ssReturnedPrices.AccessibleDescription = ""
        Me.ssReturnedPrices.AllowColumnMove = True
        Me.ssReturnedPrices.AllowColumnMoveMultiple = True
        Me.ssReturnedPrices.AllowSorting = True
        Me.ssReturnedPrices.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
            Or System.Windows.Forms.AnchorStyles.Left) _
            Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.ssReturnedPrices.ButtonDrawMode = FarPoint.Win.Spread.ButtonDrawModes.CurrentRow
        Me.ssReturnedPrices.EditModeReplace = True
        Me.ssReturnedPrices.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded
        Me.ssReturnedPrices.Location = New System.Drawing.Point(15, 152)
        Me.ssReturnedPrices.Name = "ssReturnedPrices"
        Me.ssReturnedPrices.RetainSelectionBlock = False
        Me.ssReturnedPrices.ScrollBarTrackPolicy = FarPoint.Win.Spread.ScrollBarTrackPolicy.Both
        Me.ssReturnedPrices.Size = New System.Drawing.Size(382, 153)
        Me.ssReturnedPrices.SourceCollection = Nothing
        Me.ssReturnedPrices.TabIndex = 9
        Me.ssReturnedPrices.TypeCurrencyDecimalPlaces = 2
        Me.ssReturnedPrices.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded
        '
        'cboOrigin
        '
        Me.cboOrigin.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.cboOrigin.BackColor = System.Drawing.SystemColors.Window
        Me.cboOrigin.Cursor = System.Windows.Forms.Cursors.Default
        Me.cboOrigin.ForeColor = System.Drawing.SystemColors.WindowText
        Me.cboOrigin.Location = New System.Drawing.Point(308, 64)
        Me.cboOrigin.Name = "cboOrigin"
        Me.cboOrigin.RightToLeft = System.Windows.Forms.RightToLeft.No
        Me.cboOrigin.Size = New System.Drawing.Size(89, 21)
        Me.cboOrigin.TabIndex = 10
        Me.cboOrigin.Text = "Combo1"
        '
        'cmdTestPrice
        '
        Me.cmdTestPrice.BackColor = System.Drawing.SystemColors.Control
        Me.cmdTestPrice.Cursor = System.Windows.Forms.Cursors.Default
        Me.cmdTestPrice.ForeColor = System.Drawing.SystemColors.ControlText
        Me.cmdTestPrice.Location = New System.Drawing.Point(12, 117)
        Me.cmdTestPrice.Name = "cmdTestPrice"
        Me.cmdTestPrice.RightToLeft = System.Windows.Forms.RightToLeft.No
        Me.cmdTestPrice.Size = New System.Drawing.Size(87, 29)
        Me.cmdTestPrice.TabIndex = 8
        Me.cmdTestPrice.Text = "Test Price"
        Me.cmdTestPrice.UseVisualStyleBackColor = True
        '
        'Label5
        '
        Me.Label5.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Appearance1.TextVAlignAsString = "Middle"
        Me.Label5.Appearance = Appearance1
        Me.Label5.AutoSize = True
        Me.Label5.BackColorInternal = System.Drawing.SystemColors.Control
        Me.Label5.Cursor = System.Windows.Forms.Cursors.Default
        Me.Label5.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Label5.Location = New System.Drawing.Point(268, 67)
        Me.Label5.Name = "Label5"
        Me.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No
        Me.Label5.Size = New System.Drawing.Size(35, 14)
        Me.Label5.TabIndex = 11
        Me.Label5.Text = "Origin"
        '
        'Label4
        '
        Appearance2.TextHAlignAsString = "Left"
        Appearance2.TextVAlignAsString = "Middle"
        Me.Label4.Appearance = Appearance2
        Me.Label4.BackColorInternal = System.Drawing.SystemColors.Control
        Me.Label4.Cursor = System.Windows.Forms.Cursors.Default
        Me.Label4.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Label4.Location = New System.Drawing.Point(12, 90)
        Me.Label4.Name = "Label4"
        Me.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No
        Me.Label4.Size = New System.Drawing.Size(59, 13)
        Me.Label4.TabIndex = 5
        Me.Label4.Text = "Quantity"
        '
        'Label3
        '
        Appearance3.TextVAlignAsString = "Middle"
        Me.Label3.Appearance = Appearance3
        Me.Label3.BackColorInternal = System.Drawing.SystemColors.Control
        Me.Label3.Cursor = System.Windows.Forms.Cursors.Default
        Me.Label3.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Label3.Location = New System.Drawing.Point(12, 64)
        Me.Label3.Name = "Label3"
        Me.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No
        Me.Label3.Size = New System.Drawing.Size(59, 13)
        Me.Label3.TabIndex = 4
        Me.Label3.Text = "Date"
        '
        'Label2
        '
        Appearance4.TextVAlignAsString = "Middle"
        Me.Label2.Appearance = Appearance4
        Me.Label2.BackColorInternal = System.Drawing.SystemColors.Control
        Me.Label2.Cursor = System.Windows.Forms.Cursors.Default
        Me.Label2.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Label2.Location = New System.Drawing.Point(12, 38)
        Me.Label2.Name = "Label2"
        Me.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No
        Me.Label2.Size = New System.Drawing.Size(59, 13)
        Me.Label2.TabIndex = 3
        Me.Label2.Text = "Debtor"
        '
        'Label1
        '
        Appearance5.TextVAlignAsString = "Middle"
        Me.Label1.Appearance = Appearance5
        Me.Label1.BackColorInternal = System.Drawing.SystemColors.Control
        Me.Label1.Cursor = System.Windows.Forms.Cursors.Default
        Me.Label1.ForeColor = System.Drawing.SystemColors.ControlText
        Me.Label1.Location = New System.Drawing.Point(12, 12)
        Me.Label1.Name = "Label1"
        Me.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No
        Me.Label1.Size = New System.Drawing.Size(59, 13)
        Me.Label1.TabIndex = 1
        Me.Label1.Text = "Inventory"
        '
        'JSCInventory
        '
        Me.JSCInventory.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
            Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.JSCInventory.Cursor = System.Windows.Forms.Cursors.Default
        Me.JSCInventory.DrillDown = False
        Me.JSCInventory.Location = New System.Drawing.Point(77, 12)
        Me.JSCInventory.LookupEnabled = True
        Me.JSCInventory.LookupVisible = True
        Me.JSCInventory.MinimumSize = New System.Drawing.Size(20, 20)
        Me.JSCInventory.Name = "JSCInventory"
        Me.JSCInventory.Size = New System.Drawing.Size(320, 20)
        Me.JSCInventory.TabIndex = 12
        '
        'JSCDebtor
        '
        Me.JSCDebtor.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
            Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.JSCDebtor.Cursor = System.Windows.Forms.Cursors.Default
        Me.JSCDebtor.DrillDown = False
        Me.JSCDebtor.Location = New System.Drawing.Point(77, 38)
        Me.JSCDebtor.LookupEnabled = True
        Me.JSCDebtor.LookupVisible = True
        Me.JSCDebtor.MinimumSize = New System.Drawing.Size(20, 20)
        Me.JSCDebtor.Name = "JSCDebtor"
        Me.JSCDebtor.Size = New System.Drawing.Size(320, 20)
        Me.JSCDebtor.TabIndex = 13
        '
        'JTQuantity
        '
        Me.JTQuantity.DecimalPlaces = 2
        Me.JTQuantity.Location = New System.Drawing.Point(77, 90)
        Me.JTQuantity.MaskClipMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.Raw
        Me.JTQuantity.MaskDisplayMode = Infragistics.Win.UltraWinMaskedEdit.MaskMode.IncludeLiterals
        Me.JTQuantity.MaskInput = "-nnn,nnn,nnn,nnn,nnn.nn"
        Me.JTQuantity.Name = "JTQuantity"
        Me.JTQuantity.Nullable = True
        Me.JTQuantity.NumericType = Infragistics.Win.UltraWinEditors.NumericType.[Decimal]
        Me.JTQuantity.PromptChar = Global.Microsoft.VisualBasic.ChrW(32)
        Me.JTQuantity.Size = New System.Drawing.Size(87, 21)
        Me.JTQuantity.TabIndex = 14
        Me.JTQuantity.TabNavigation = Infragistics.Win.UltraWinMaskedEdit.MaskedEditTabNavigation.NextControl
        Me.JTQuantity.ThousandsSeparator = True
        Me.JTQuantity.ThousandsSeparatorChar = Global.Microsoft.VisualBasic.ChrW(44)
        '
        'DTPicker1
        '
        Me.DTPicker1.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
        Me.DTPicker1.Location = New System.Drawing.Point(77, 64)
        Me.DTPicker1.Name = "DTPicker1"
        Me.DTPicker1.Size = New System.Drawing.Size(87, 20)
        Me.DTPicker1.TabIndex = 15
        '
        'frmTestPrice
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.BackColor = System.Drawing.SystemColors.Control
        Me.ClientSize = New System.Drawing.Size(405, 315)
        Me.Controls.Add(Me.DTPicker1)
        Me.Controls.Add(Me.JTQuantity)
        Me.Controls.Add(Me.JSCDebtor)
        Me.Controls.Add(Me.JSCInventory)
        Me.Controls.Add(Me.ssReturnedPrices)
        Me.Controls.Add(Me.cboOrigin)
        Me.Controls.Add(Me.cmdTestPrice)
        Me.Controls.Add(Me.Label5)
        Me.Controls.Add(Me.Label4)
        Me.Controls.Add(Me.Label3)
        Me.Controls.Add(Me.Label2)
        Me.Controls.Add(Me.Label1)
        Me.Cursor = System.Windows.Forms.Cursors.Default
        
        Me.Location = New System.Drawing.Point(4, 23)
        Me.MaximizeBox = False
        Me.MinimizeBox = False
        Me.Name = "frmTestPrice"
        Me.RightToLeft = System.Windows.Forms.RightToLeft.No
        Me.ShowInTaskbar = False
        Me.Text = "Test Price"
        CType(Me.ssReturnedPrices, System.ComponentModel.ISupportInitialize).EndInit()
        CType(Me.JTQuantity, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Public WithEvents JSCInventory As JiwaFinancials.Jiwa.JiwaApplication.Controls.Lookup
    Public WithEvents JSCDebtor As JiwaFinancials.Jiwa.JiwaApplication.Controls.Lookup
    Public WithEvents JTQuantity As JiwaFinancials.Jiwa.JiwaApplication.Controls.NumericEditor
    Public WithEvents DTPicker1 As System.Windows.Forms.DateTimePicker
#End Region 
End Class</Code>
  <ExceptionPolicy>Report</ExceptionPolicy>
  <PluginFormCollection>
    <PluginForm>
      <RecID>bf0588aa-6db8-4fd8-8dc3-181cbde70ece</RecID>
      <Description>Debtor Maintenance</Description>
      <ClassName>JiwaFinancials.Jiwa.JiwaDebtorsUI.frmDebtor</ClassName>
    </PluginForm>
    <PluginForm>
      <RecID>e24c557c-687e-4b5f-9172-85254f3806bf</RecID>
      <Description>Inventory Maintenance</Description>
      <ClassName>JiwaFinancials.Jiwa.JiwaInventoryUI.InventoryMaintenanceForm</ClassName>
    </PluginForm>
  </PluginFormCollection>
  <ReferenceCollection>
    <Reference>
      <RecID>ee54c5ec-eeef-46d1-87bc-0d5d22508a79</RecID>
      <AssemblyFullName>JiwaApplication, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaApplication.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaApplication.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>e98153e2-6589-4c50-b898-def5c97514a0</RecID>
      <AssemblyFullName>mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>mscorlib.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>95f68c1e-06b7-4611-999b-71fe992e9bae</RecID>
      <AssemblyFullName>Microsoft.VisualBasic, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</AssemblyFullName>
      <AssemblyName>Microsoft.VisualBasic.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>83d34f71-67be-4797-860a-0ba992eaac7f</RecID>
      <AssemblyFullName>System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>2199a105-2da4-4749-9dfc-7cbe06dbbe6b</RecID>
      <AssemblyFullName>System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Windows.Forms.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>ea5241ea-37e0-4955-97e8-95a44e4ff76b</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinToolbars.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinToolbars.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinToolbars.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinToolbars.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>8e82cd4d-9c60-47e1-b90f-3c8a016339c2</RecID>
      <AssemblyFullName>Infragistics4.Win.Misc.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.Misc.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.Misc.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.Misc.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>c9d322d1-053c-4088-965d-7885faa58ff5</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinStatusBar.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinStatusBar.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinStatusBar.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinStatusBar.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>da88bcf8-5018-4ad8-832d-9bba3f0e02f1</RecID>
      <AssemblyFullName>Infragistics4.Win.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>3abc2a98-e8f7-4518-a067-35c230120c29</RecID>
      <AssemblyFullName>FarPoint.Win.Spread, Version=7.35.20132.1, Culture=neutral, PublicKeyToken=327c3516b1b18457</AssemblyFullName>
      <AssemblyName>FarPoint.Win.Spread.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\FarPoint.Win.Spread\7.35.20132.1__327c3516b1b18457\FarPoint.Win.Spread.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>89d05951-07cf-4482-adad-f89ae87c9386</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinTabControl.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinTabControl.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinTabControl.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinTabControl.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>5cf7e029-cb1e-4a33-b578-7dbf7c9b486b</RecID>
      <AssemblyFullName>System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</AssemblyFullName>
      <AssemblyName>System.Drawing.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>17eff848-5f0a-42e9-997e-291113da7dc7</RecID>
      <AssemblyFullName>Microsoft.SqlServer.Smo, Version=12.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91</AssemblyFullName>
      <AssemblyName>Microsoft.SqlServer.Smo.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.Smo\12.0.0.0__89845dcd8080cc91\Microsoft.SqlServer.Smo.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>1d3792e7-d3a6-4206-98c3-3c751f86517c</RecID>
      <AssemblyFullName>System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Data.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>bc622df2-fa6f-4625-b7ba-d034a2770add</RecID>
      <AssemblyFullName>JiwaODBC, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaODBC.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaODBC.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>d31c631d-82f1-43a6-b075-054baea5da59</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinEditors.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinEditors.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinEditors.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinEditors.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>674f4272-c4ab-4c3d-a3ac-b263d8fb9ab5</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinExplorerBar.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinExplorerBar.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinExplorerBar.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinExplorerBar.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>094143d1-aa2f-4dc0-9b92-9d7c8c8e20b6</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinTree.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinTree.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinTree.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinTree.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>aeaa89b6-e93f-4344-990b-ba6f4d75de1b</RecID>
      <AssemblyFullName>System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Xml.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>197e7baf-26bc-428d-b6a2-16bf2d55521b</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinListView.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinListView.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinListView.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinListView.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>b5b77bb8-edcf-40a1-9f45-a53649f24dab</RecID>
      <AssemblyFullName>ActiproSoftware.SyntaxEditor.WinForms, Version=12.1.304.0, Culture=neutral, PublicKeyToken=c27e062d3c1a4763</AssemblyFullName>
      <AssemblyName>ActiproSoftware.SyntaxEditor.WinForms.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\ActiproSoftware.SyntaxEditor.WinForms\12.1.304.0__c27e062d3c1a4763\ActiproSoftware.SyntaxEditor.WinForms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>8b0f63e4-c85e-403c-82e4-ed1f680ead19</RecID>
      <AssemblyFullName>ZetaHtmlEditControl, Version=1.1.0.3, Culture=neutral, PublicKeyToken=2e2e5ba5da72b6c0</AssemblyFullName>
      <AssemblyName>ZetaHtmlEditControl.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\ZetaHtmlEditControl.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>46caa28a-2ede-489c-b0aa-66c056a27799</RecID>
      <AssemblyFullName>CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.CrystalReports.Engine.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\CrystalDecisions.CrystalReports.Engine\13.0.2000.0__692fbea5521e1304\CrystalDecisions.CrystalReports.Engine.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>ae150167-abb1-4e56-b217-f75ec825def3</RecID>
      <AssemblyFullName>CrystalDecisions.Shared, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.Shared.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\CrystalDecisions.Shared\13.0.2000.0__692fbea5521e1304\CrystalDecisions.Shared.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>dcbae608-26e3-4a19-8cb8-af92c4395964</RecID>
      <AssemblyFullName>CrystalDecisions.Windows.Forms, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.Windows.Forms.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\CrystalDecisions.Windows.Forms\13.0.2000.0__692fbea5521e1304\CrystalDecisions.Windows.Forms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>8fdeddb5-9e22-48f4-8824-2f5d1f333b34</RecID>
      <AssemblyFullName>Infragistics4.Win.AppStylistSupport.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.AppStylistSupport.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.AppStylistSupport.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.AppStylistSupport.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>f9938482-1de7-44bc-beab-9f139cc29c87</RecID>
      <AssemblyFullName>JiwaLib, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaLib.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaLib.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>e9452bd6-5407-4c20-a947-65f32e2fdc4d</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinSchedule.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinSchedule.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinSchedule.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinSchedule.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>1ee2d93d-b3df-4c18-9078-c27f9bff1cfe</RecID>
      <AssemblyFullName>Infragistics4.Win.UltraWinGrid.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Win.UltraWinGrid.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Win.UltraWinGrid.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Win.UltraWinGrid.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>b53544cc-f1cd-459f-b23b-6040ca3f9326</RecID>
      <AssemblyFullName>System.Runtime.Serialization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Runtime.Serialization.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>caf6cedc-83be-41f6-b4d2-04ae54fce2ad</RecID>
      <AssemblyFullName>Infragistics4.Shared.v13.1, Version=13.1.20131.2060, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb</AssemblyFullName>
      <AssemblyName>Infragistics4.Shared.v13.1.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\Infragistics4.Shared.v13.1\v4.0_13.1.20131.2060__7dd5c3163f2cd0cb\Infragistics4.Shared.v13.1.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>2e8ec171-bb5c-4662-bacd-31a3943eb0ac</RecID>
      <AssemblyFullName>Microsoft.SqlServer.ConnectionInfo, Version=12.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91</AssemblyFullName>
      <AssemblyName>Microsoft.SqlServer.ConnectionInfo.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\Microsoft.SqlServer.ConnectionInfo\12.0.0.0__89845dcd8080cc91\Microsoft.SqlServer.ConnectionInfo.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>0ecc9736-694e-4d98-a6ed-90130c04e29f</RecID>
      <AssemblyFullName>mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>mscorlib.dll</AssemblyName>
      <AssemblyLocation>C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>0e2f2cc7-e474-4dcb-b4a8-3688b6b0a2d8</RecID>
      <AssemblyFullName>System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Data.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>45010bb2-e954-4f08-bc7a-e99e1a0e47b1</RecID>
      <AssemblyFullName>System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Windows.Forms.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>e9f8e830-0023-473d-a415-5630a4ae020b</RecID>
      <AssemblyFullName>System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</AssemblyFullName>
      <AssemblyName>System.Drawing.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>8e0af70e-4e1f-448a-8214-969f6e02a372</RecID>
      <AssemblyFullName>System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>39916fb8-bdc5-46ac-9835-a2aff639ca33</RecID>
      <AssemblyFullName>System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Core.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>d639353e-e753-4c6a-85da-86568bf51306</RecID>
      <AssemblyFullName>Microsoft.SqlServer.Dac, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</AssemblyFullName>
      <AssemblyName>Microsoft.SqlServer.Dac.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\Microsoft.SqlServer.Dac.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>4218b664-0b21-43f6-bad0-d02c0c167ad3</RecID>
      <AssemblyFullName>JiwaEncryption, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaEncryption.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaEncryption.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>281c84da-7076-4dec-8ba2-416db8ab35c8</RecID>
      <AssemblyFullName>JiwaSendEmail, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaSendEmail.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaSendEmail.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>b4be5ad7-7419-44fd-ac96-c9c9f635999b</RecID>
      <AssemblyFullName>CrystalDecisions.ReportAppServer.ClientDoc, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.ReportAppServer.ClientDoc.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.ClientDoc\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.ClientDoc.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>73d52422-1f99-4e28-95e4-2c24c6a795a1</RecID>
      <AssemblyFullName>CrystalDecisions.ReportAppServer.Controllers, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.ReportAppServer.Controllers.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.Controllers\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.Controllers.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>aa20ec9f-98b1-43ae-a354-54269410a2de</RecID>
      <AssemblyFullName>CrystalDecisions.ReportAppServer.ReportDefModel, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304</AssemblyFullName>
      <AssemblyName>CrystalDecisions.ReportAppServer.ReportDefModel.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\CrystalDecisions.ReportAppServer.ReportDefModel\13.0.2000.0__692fbea5521e1304\CrystalDecisions.ReportAppServer.ReportDefModel.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>75c5328a-e073-427f-9a68-57e6c502bcdf</RecID>
      <AssemblyFullName>FarPoint.Win, Version=7.35.20132.1, Culture=neutral, PublicKeyToken=327c3516b1b18457</AssemblyFullName>
      <AssemblyName>FarPoint.Win.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\FarPoint.Win\7.35.20132.1__327c3516b1b18457\FarPoint.Win.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>8c0a030e-4531-478a-afab-301f83dca6df</RecID>
      <AssemblyFullName>ActiproSoftware.Shared.WinForms, Version=12.1.304.0, Culture=neutral, PublicKeyToken=c27e062d3c1a4763</AssemblyFullName>
      <AssemblyName>ActiproSoftware.Shared.WinForms.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\ActiproSoftware.Shared.WinForms\12.1.304.0__c27e062d3c1a4763\ActiproSoftware.Shared.WinForms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>5d9ec9b5-7baf-47b2-afc2-5e5bf8b33c8e</RecID>
      <AssemblyFullName>System.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</AssemblyFullName>
      <AssemblyName>System.Security.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Security\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Security.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>f5cc3b3e-5f3f-438c-8da6-ca081b6ee202</RecID>
      <AssemblyFullName>JiwaDebtorsUI, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorsUI.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaDebtorsUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>f8ca39ab-0851-427f-b8d8-e8eb66d5a65f</RecID>
      <AssemblyFullName>System.Xml.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyFullName>
      <AssemblyName>System.Xml.Linq.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>d49fc893-404c-4413-a121-1d076835295e</RecID>
      <AssemblyFullName>JiwaDebtors, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtors.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaDebtors.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>fba1b49f-c79d-4ca8-8af5-3b9732c2dea4</RecID>
      <AssemblyFullName>JiwaDebtorAdjustmentsUI, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorAdjustmentsUI.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaDebtorAdjustmentsUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>d6136428-a439-4ffb-ac7a-c67ab0426f28</RecID>
      <AssemblyFullName>JiwaDebtorAdjustments, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorAdjustments.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaDebtorAdjustments.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>cfcd75f6-f381-4088-a232-e10bf5c502a7</RecID>
      <AssemblyFullName>JiwaDebtorInvoicesUI, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorInvoicesUI.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaDebtorInvoicesUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>0440ec0d-c241-409f-9d2b-d007e38fbb6f</RecID>
      <AssemblyFullName>JiwaDebtorInvoices, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaDebtorInvoices.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaDebtorInvoices.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>00faae7d-2de3-4b5f-8cef-37e459fec36f</RecID>
      <AssemblyFullName>JiwaCashBookUI, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaCashBookUI.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaCashBookUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>c5066bbd-c526-4055-99c6-5c57b3c762d9</RecID>
      <AssemblyFullName>JiwaCashBook, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaCashBook.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaCashBook.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>be8db666-941e-466f-a854-8da54373c5d7</RecID>
      <AssemblyFullName>JiwaSalesUI, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaSalesUI.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaSalesUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>2d596ccb-24f1-4af7-a185-ee2bf4f6207c</RecID>
      <AssemblyFullName>JiwaInventoryUI, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaInventoryUI.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaInventoryUI.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>5fe2121e-d63a-4bdc-8b19-13181656de64</RecID>
      <AssemblyFullName>JiwaInventory, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaInventory.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaInventory.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>9b2b455c-3df2-4c02-87bb-1e0e0bbf87a4</RecID>
      <AssemblyFullName>ActiproSoftware.SyntaxEditor.Addons.DotNet.WinForms, Version=12.1.304.0, Culture=neutral, PublicKeyToken=c27e062d3c1a4763</AssemblyFullName>
      <AssemblyName>ActiproSoftware.SyntaxEditor.Addons.DotNet.WinForms.dll</AssemblyName>
      <AssemblyLocation>C:\WINDOWS\assembly\GAC_MSIL\ActiproSoftware.SyntaxEditor.Addons.DotNet.WinForms\12.1.304.0__c27e062d3c1a4763\ActiproSoftware.SyntaxEditor.Addons.DotNet.WinForms.dll</AssemblyLocation>
    </Reference>
    <Reference>
      <RecID>418b3ff4-e62f-409c-bbde-774eb58c7fe1</RecID>
      <AssemblyFullName>JiwaPriceSchemes, Version=7.0.110.0, Culture=neutral, PublicKeyToken=e30ce81e37f29c8c</AssemblyFullName>
      <AssemblyName>JiwaPriceSchemes.dll</AssemblyName>
      <AssemblyLocation>C:\JiwaTFS\Jiwa 6\Jiwa\Built Files\JiwaPriceSchemes.dll</AssemblyLocation>
    </Reference>
  </ReferenceCollection>
</JiwaDocument>