Compare commits
3 Commits
67fe2ee7da
...
1fb6038f17
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1fb6038f17 | ||
|
|
512ae2e815 | ||
|
|
d27eafd9aa |
@@ -177,7 +177,7 @@ Public Class ControlCreator
|
|||||||
oCheckBox.Checked = oValue
|
oCheckBox.Checked = oValue
|
||||||
End If
|
End If
|
||||||
|
|
||||||
AddHandler oCheckBox.CheckedChanged, Sub(sender As CheckBox, e As EventArgs)
|
AddHandler oCheckBox.CheckedChanged, Sub(sender As CheckEdit, e As EventArgs)
|
||||||
OnControlChanged.Invoke(sender)
|
OnControlChanged.Invoke(sender)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,2 @@
|
|||||||
|
DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraEditors.ComboBoxEdit, DevExpress.XtraEditors.v21.2, Version=21.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
|||||||
23
Modules.Messaging/MailLicense.xml
Normal file
23
Modules.Messaging/MailLicense.xml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<License>
|
||||||
|
<Id>4dc5ef40-f1a9-468b-994c-b7ed600ad878</Id>
|
||||||
|
<ProductName>Mail.dll</ProductName>
|
||||||
|
<SubscriptionUntil>2022-07-29</SubscriptionUntil>
|
||||||
|
<RegisteredTo>Digital Data GmbH</RegisteredTo>
|
||||||
|
<LicenseType>single developer</LicenseType>
|
||||||
|
<BuyerName>Digital Data GmbH</BuyerName>
|
||||||
|
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
|
||||||
|
<SignedInfo>
|
||||||
|
<CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" />
|
||||||
|
<SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" />
|
||||||
|
<Reference URI="">
|
||||||
|
<Transforms>
|
||||||
|
<Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" />
|
||||||
|
</Transforms>
|
||||||
|
<DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
|
||||||
|
<DigestValue>75MRtl4ipYelIZYlpT8O7QDX9Zc=</DigestValue>
|
||||||
|
</Reference>
|
||||||
|
</SignedInfo>
|
||||||
|
<SignatureValue>Raxfkz6DfQVs/sMvH+F2nH0eHXD8FoUFSdP3t7AgBUdpABJQx86srlyuMSEhXPlc1THCqPouEVob4RsWnd9OXvTiPPSOUSK9zuNG6uz93KLAhpSD5PraAgBCF4jwZArlAp7aCNfZpHqQ3w6TRHS+CfravUU0AHHG3MZ1ZcRkGuo=</SignatureValue>
|
||||||
|
</Signature>
|
||||||
|
</License>
|
||||||
@@ -131,5 +131,10 @@
|
|||||||
<Name>Logging</Name>
|
<Name>Logging</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include="MailLicense.xml">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</Content>
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||||
</Project>
|
</Project>
|
||||||
@@ -26,8 +26,7 @@ Namespace Methods.GlobalIndexer
|
|||||||
Logger.Debug("Start of Method [LoadProfile]")
|
Logger.Debug("Start of Method [LoadProfile]")
|
||||||
|
|
||||||
Try
|
Try
|
||||||
Dim oProfile = GetDatatable.Run(
|
Dim oProfile = GetDatatable.Run(New GetDatatableFromCacheRequest With {
|
||||||
New GetDatatableFromCacheRequest With {
|
|
||||||
.DataTable = VIEW_PROFILE,
|
.DataTable = VIEW_PROFILE,
|
||||||
.FilterExpression = $"DOCTYPE_ID = {pProfileId}"
|
.FilterExpression = $"DOCTYPE_ID = {pProfileId}"
|
||||||
})
|
})
|
||||||
@@ -47,6 +46,13 @@ Namespace Methods.GlobalIndexer
|
|||||||
.DynamicPath = oRow.ItemEx("DYNAMIC_FOLDER", "")
|
.DynamicPath = oRow.ItemEx("DYNAMIC_FOLDER", "")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Logger.Debug("Name: [{0}]", oProfileObject.Name)
|
||||||
|
Logger.Debug("Active: [{0}]", oProfileObject.IsActive)
|
||||||
|
Logger.Debug("ObjectStore: [{0}]", oProfileObject.ObjectStore)
|
||||||
|
Logger.Debug("ShortName: [{0}]", oProfileObject.ShortName)
|
||||||
|
Logger.Debug("NameConvention: [{0}]", oProfileObject.NameConvention)
|
||||||
|
Logger.Debug("DynamicPath: [{0}]", oProfileObject.DynamicPath)
|
||||||
|
|
||||||
Return oProfileObject
|
Return oProfileObject
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
LogAndThrow(ex, "Error while automatic loading profile!")
|
LogAndThrow(ex, "Error while automatic loading profile!")
|
||||||
|
|||||||
Reference in New Issue
Block a user