Mike, for a novice, it is no problem to import the XML file and run the plugin. However, I need to install a combo box custom field into a form other than debtors, which requires some code to be changed. In this case I need the field in Work Order. Could you point me to what parts of the code need to be changed. e.g. the issue seems to be between line 30 and 40
Private _DebtorObject As JiwaDebtors.Debtor
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
_DebtorObject = DirectCast(JiwaBusinessLogic, JiwaDebtors.Debtor)
AddHandler _DebtorObject.CustomFieldValues.Changed, AddressOf CustomFieldValues_Changed


