Compare commits
3 Commits
master
...
MS-Form-Wo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1e2e018f7f | ||
|
|
69afea012b | ||
|
|
85e0bc3400 |
@ -1,10 +1,11 @@
|
|||||||
Imports DigitalData.Modules.Database
|
Imports System.IO
|
||||||
|
Imports System.Security.Cryptography
|
||||||
|
Imports DigitalData.Modules.Database
|
||||||
Imports DigitalData.Modules.Logging
|
Imports DigitalData.Modules.Logging
|
||||||
|
Imports EnvelopeGenerator.CommonServices.Jobs
|
||||||
|
Imports EnvelopeGenerator.CommonServices.Jobs.FinalizeDocument
|
||||||
Imports GdPicture14
|
Imports GdPicture14
|
||||||
Imports Newtonsoft.Json.Linq
|
Imports Newtonsoft.Json.Linq
|
||||||
Imports EnvelopeGenerator.CommonServices.Jobs
|
|
||||||
Imports System.IO
|
|
||||||
Imports EnvelopeGenerator.CommonServices.Jobs.FinalizeDocument
|
|
||||||
|
|
||||||
Public Class frmFinalizePDF
|
Public Class frmFinalizePDF
|
||||||
Private Const CONNECTIONSTRING = "Server=sDD-VMP04-SQL17\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=+bk8oAbbQP1AzoHtvZUbd+Mbok2f8Fl4miEx1qssJ5yEaEWoQJ9prg4L14fURpPnqi1WMNs9fE4=;"
|
Private Const CONNECTIONSTRING = "Server=sDD-VMP04-SQL17\DD_DEVELOP01;Database=DD_ECM;User Id=sa;Password=+bk8oAbbQP1AzoHtvZUbd+Mbok2f8Fl4miEx1qssJ5yEaEWoQJ9prg4L14fURpPnqi1WMNs9fE4=;"
|
||||||
@ -65,6 +66,22 @@ Public Class frmFinalizePDF
|
|||||||
|
|
||||||
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
||||||
Try
|
Try
|
||||||
|
'Dim oEnvelopeData = GetEnvelopeData(oId)
|
||||||
|
|
||||||
|
'If oEnvelopeData Is Nothing Then
|
||||||
|
' Logger.Warn("EnvelopeData could not be loaded for Id [{0}]!", oId)
|
||||||
|
' Throw New ArgumentNullException("EnvelopeData")
|
||||||
|
'End If
|
||||||
|
'Logger.Debug("Burning Annotations to pdf ...")
|
||||||
|
'sd
|
||||||
|
'Dim oBurnedDocument As Byte() = BurnAnnotationsToPdf(oEnvelopeData)
|
||||||
|
'If oBurnedDocument Is Nothing Then
|
||||||
|
' Logger.Warn("Document could not be finalized!")
|
||||||
|
' Throw New ApplicationException("Document could not be finalized")
|
||||||
|
'End If
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Dim oTable = LoadAnnotationDataForEnvelope()
|
Dim oTable = LoadAnnotationDataForEnvelope()
|
||||||
Dim oJsonList = oTable.Rows.
|
Dim oJsonList = oTable.Rows.
|
||||||
|
|||||||
@ -123,6 +123,7 @@ Namespace Jobs
|
|||||||
Throw New ArgumentNullException("EnvelopeData")
|
Throw New ArgumentNullException("EnvelopeData")
|
||||||
End If
|
End If
|
||||||
Logger.Debug("Burning Annotations to pdf ...")
|
Logger.Debug("Burning Annotations to pdf ...")
|
||||||
|
|
||||||
Dim oBurnedDocument As Byte() = BurnAnnotationsToPdf(oEnvelopeData)
|
Dim oBurnedDocument As Byte() = BurnAnnotationsToPdf(oEnvelopeData)
|
||||||
If oBurnedDocument Is Nothing Then
|
If oBurnedDocument Is Nothing Then
|
||||||
Logger.Warn("Document could not be finalized!")
|
Logger.Warn("Document could not be finalized!")
|
||||||
|
|||||||
@ -16,6 +16,8 @@ Namespace Jobs.FinalizeDocument
|
|||||||
Private Const ANNOTATION_TYPE_IMAGE = "pspdfkit/image"
|
Private Const ANNOTATION_TYPE_IMAGE = "pspdfkit/image"
|
||||||
Private Const ANNOTATION_TYPE_INK = "pspdfkit/ink"
|
Private Const ANNOTATION_TYPE_INK = "pspdfkit/ink"
|
||||||
Private Const ANNOTATION_TYPE_WIDGET = "pspdfkit/widget"
|
Private Const ANNOTATION_TYPE_WIDGET = "pspdfkit/widget"
|
||||||
|
Private Annotationheight_min As Double = 0
|
||||||
|
Private Annotationheight_max As Double = 0
|
||||||
Private Property _pdfBurnerParams As PDFBurnerParams
|
Private Property _pdfBurnerParams As PDFBurnerParams
|
||||||
|
|
||||||
Public Sub New(pLogConfig As LogConfig, pGDPictureLicenseKey As String, pdfBurnerParams As PDFBurnerParams)
|
Public Sub New(pLogConfig As LogConfig, pGDPictureLicenseKey As String, pdfBurnerParams As PDFBurnerParams)
|
||||||
@ -69,12 +71,14 @@ Namespace Jobs.FinalizeDocument
|
|||||||
Try
|
Try
|
||||||
Dim oAnnotationData = JsonConvert.DeserializeObject(Of AnnotationData)(pInstantJSON)
|
Dim oAnnotationData = JsonConvert.DeserializeObject(Of AnnotationData)(pInstantJSON)
|
||||||
oAnnotationData.annotations.Reverse()
|
oAnnotationData.annotations.Reverse()
|
||||||
Dim formFieldIndex = 0
|
Dim formFieldIndex = 0, AnnotationIndex = 0, AnnotationImageIndex = 0
|
||||||
For Each oAnnotation In oAnnotationData.annotations
|
For Each oAnnotation In oAnnotationData.annotations
|
||||||
Logger.Debug("Adding AnnotationID: " + oAnnotation.id)
|
AnnotationIndex += 1
|
||||||
|
Logger.Debug("Adding AnnotationID: " + oAnnotation.id + " -Index: " + AnnotationIndex.ToString)
|
||||||
Select Case oAnnotation.type
|
Select Case oAnnotation.type
|
||||||
Case ANNOTATION_TYPE_IMAGE
|
Case ANNOTATION_TYPE_IMAGE
|
||||||
AddImageAnnotation(oAnnotation, oAnnotationData.attachments)
|
AnnotationImageIndex += 1
|
||||||
|
AddImageAnnotation(AnnotationImageIndex, oAnnotation, oAnnotationData.attachments)
|
||||||
|
|
||||||
Case ANNOTATION_TYPE_INK
|
Case ANNOTATION_TYPE_INK
|
||||||
AddInkAnnotation(oAnnotation)
|
AddInkAnnotation(oAnnotation)
|
||||||
@ -98,19 +102,26 @@ Namespace Jobs.FinalizeDocument
|
|||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Function AddImageAnnotation(pAnnotation As Annotation, pAttachments As Dictionary(Of String, Attachment)) As Boolean
|
Private Function AddImageAnnotation(pidX As Integer, pAnnotation As Annotation, pAttachments As Dictionary(Of String, Attachment)) As Boolean
|
||||||
Try
|
Try
|
||||||
Dim oAttachment = pAttachments.Where(Function(a) a.Key = pAnnotation.imageAttachmentId).
|
Dim oAttachment = pAttachments.Where(Function(a) a.Key = pAnnotation.imageAttachmentId).
|
||||||
SingleOrDefault()
|
SingleOrDefault()
|
||||||
|
|
||||||
' Convert pixels to Inches
|
' Convert pixels to Inches
|
||||||
Dim oBounds = pAnnotation.bbox.Select(AddressOf ToInches).ToList()
|
Dim oBounds = pAnnotation.bbox.Select(AddressOf ToInches).ToList()
|
||||||
|
|
||||||
Dim oX = oBounds.Item(0)
|
Dim oX = oBounds.Item(0)
|
||||||
Dim oY = oBounds.Item(1)
|
Dim oY = oBounds.Item(1)
|
||||||
|
|
||||||
|
|
||||||
Dim oWidth = oBounds.Item(2)
|
Dim oWidth = oBounds.Item(2)
|
||||||
Dim oHeight = oBounds.Item(3)
|
Dim oHeight = oBounds.Item(3)
|
||||||
|
If pidX = 1 Then
|
||||||
|
If Annotationheight_min = 0 Then
|
||||||
|
Annotationheight_min = oHeight
|
||||||
|
Annotationheight_min = oHeight
|
||||||
|
End If
|
||||||
|
|
||||||
|
End If
|
||||||
Manager.SelectPage(pAnnotation.pageIndex + 1)
|
Manager.SelectPage(pAnnotation.pageIndex + 1)
|
||||||
Manager.AddEmbeddedImageAnnotFromBase64(oAttachment.Value.binary, oX, oY, oWidth, oHeight)
|
Manager.AddEmbeddedImageAnnotFromBase64(oAttachment.Value.binary, oX, oY, oWidth, oHeight)
|
||||||
|
|
||||||
|
|||||||
@ -152,6 +152,9 @@ Public Class ElementModel
|
|||||||
pElement.Id = GetElementId(pElement)
|
pElement.Id = GetElementId(pElement)
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
|
|
||||||
|
Dim filledSql As String = GetFilledSql(oCommand)
|
||||||
|
Logger.Warn(filledSql)
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@ -161,6 +164,26 @@ Public Class ElementModel
|
|||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
Function GetFilledSql(command As SqlCommand) As String
|
||||||
|
Dim oSql As String = command.CommandText
|
||||||
|
For Each oParam As SqlParameter In command.Parameters
|
||||||
|
Dim oValue As String
|
||||||
|
If oParam.Value Is Nothing OrElse oParam.Value Is DBNull.Value Then
|
||||||
|
oValue = "NULL"
|
||||||
|
ElseIf TypeOf oParam.Value Is String OrElse TypeOf oParam.Value Is Date Then
|
||||||
|
oValue = $"'{oParam.Value.ToString().Replace("'", "''")}'"
|
||||||
|
|
||||||
|
ElseIf TypeOf oParam.Value Is Boolean Then
|
||||||
|
oValue = If(CBool(oParam.Value), "1", "0")
|
||||||
|
Else
|
||||||
|
oValue = oParam.Value.ToString()
|
||||||
|
End If
|
||||||
|
oSql = oSql.Replace("@" & oParam.ParameterName, oValue)
|
||||||
|
Next
|
||||||
|
Return oSql
|
||||||
|
End Function
|
||||||
|
|
||||||
|
|
||||||
Public Function Update(pElement As DocumentReceiverElement) As Boolean
|
Public Function Update(pElement As DocumentReceiverElement) As Boolean
|
||||||
Try
|
Try
|
||||||
Dim oSql = "UPDATE [dbo].[TBSIG_DOCUMENT_RECEIVER_ELEMENT]
|
Dim oSql = "UPDATE [dbo].[TBSIG_DOCUMENT_RECEIVER_ELEMENT]
|
||||||
|
|||||||
18
EnvelopeGenerator.Form/frmEnvelopeEditor.Designer.vb
generated
18
EnvelopeGenerator.Form/frmEnvelopeEditor.Designer.vb
generated
@ -424,7 +424,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.LayoutControlGroup4.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup5})
|
Me.LayoutControlGroup4.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup5})
|
||||||
Me.LayoutControlGroup4.Name = "LayoutControlGroup4"
|
Me.LayoutControlGroup4.Name = "LayoutControlGroup4"
|
||||||
Me.LayoutControlGroup4.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
Me.LayoutControlGroup4.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
||||||
Me.LayoutControlGroup4.Size = New System.Drawing.Size(251, 530)
|
Me.LayoutControlGroup4.Size = New System.Drawing.Size(251, 418)
|
||||||
Me.LayoutControlGroup4.TextVisible = False
|
Me.LayoutControlGroup4.TextVisible = False
|
||||||
'
|
'
|
||||||
'LayoutControlGroup5
|
'LayoutControlGroup5
|
||||||
@ -432,7 +432,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.LayoutControlGroup5.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem5})
|
Me.LayoutControlGroup5.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem5})
|
||||||
Me.LayoutControlGroup5.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlGroup5.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlGroup5.Name = "LayoutControlGroup5"
|
Me.LayoutControlGroup5.Name = "LayoutControlGroup5"
|
||||||
Me.LayoutControlGroup5.Size = New System.Drawing.Size(251, 530)
|
Me.LayoutControlGroup5.Size = New System.Drawing.Size(251, 418)
|
||||||
resources.ApplyResources(Me.LayoutControlGroup5, "LayoutControlGroup5")
|
resources.ApplyResources(Me.LayoutControlGroup5, "LayoutControlGroup5")
|
||||||
'
|
'
|
||||||
'LayoutControlItem5
|
'LayoutControlItem5
|
||||||
@ -440,7 +440,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.LayoutControlItem5.Control = Me.GridDocuments
|
Me.LayoutControlItem5.Control = Me.GridDocuments
|
||||||
Me.LayoutControlItem5.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem5.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem5.Name = "LayoutControlItem5"
|
Me.LayoutControlItem5.Name = "LayoutControlItem5"
|
||||||
Me.LayoutControlItem5.Size = New System.Drawing.Size(227, 485)
|
Me.LayoutControlItem5.Size = New System.Drawing.Size(227, 373)
|
||||||
Me.LayoutControlItem5.TextSize = New System.Drawing.Size(0, 0)
|
Me.LayoutControlItem5.TextSize = New System.Drawing.Size(0, 0)
|
||||||
Me.LayoutControlItem5.TextVisible = False
|
Me.LayoutControlItem5.TextVisible = False
|
||||||
'
|
'
|
||||||
@ -594,7 +594,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.LayoutControlGroup2.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup3})
|
Me.LayoutControlGroup2.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup3})
|
||||||
Me.LayoutControlGroup2.Name = "LayoutControlGroup2"
|
Me.LayoutControlGroup2.Name = "LayoutControlGroup2"
|
||||||
Me.LayoutControlGroup2.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
Me.LayoutControlGroup2.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
||||||
Me.LayoutControlGroup2.Size = New System.Drawing.Size(899, 249)
|
Me.LayoutControlGroup2.Size = New System.Drawing.Size(796, 249)
|
||||||
Me.LayoutControlGroup2.TextVisible = False
|
Me.LayoutControlGroup2.TextVisible = False
|
||||||
'
|
'
|
||||||
'LayoutControlGroup3
|
'LayoutControlGroup3
|
||||||
@ -602,7 +602,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.LayoutControlGroup3.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem2})
|
Me.LayoutControlGroup3.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlItem2})
|
||||||
Me.LayoutControlGroup3.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlGroup3.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlGroup3.Name = "LayoutControlGroup3"
|
Me.LayoutControlGroup3.Name = "LayoutControlGroup3"
|
||||||
Me.LayoutControlGroup3.Size = New System.Drawing.Size(899, 249)
|
Me.LayoutControlGroup3.Size = New System.Drawing.Size(796, 249)
|
||||||
resources.ApplyResources(Me.LayoutControlGroup3, "LayoutControlGroup3")
|
resources.ApplyResources(Me.LayoutControlGroup3, "LayoutControlGroup3")
|
||||||
'
|
'
|
||||||
'LayoutControlItem2
|
'LayoutControlItem2
|
||||||
@ -610,7 +610,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.LayoutControlItem2.Control = Me.GridReceivers
|
Me.LayoutControlItem2.Control = Me.GridReceivers
|
||||||
Me.LayoutControlItem2.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem2.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem2.Name = "LayoutControlItem2"
|
Me.LayoutControlItem2.Name = "LayoutControlItem2"
|
||||||
Me.LayoutControlItem2.Size = New System.Drawing.Size(875, 204)
|
Me.LayoutControlItem2.Size = New System.Drawing.Size(772, 204)
|
||||||
Me.LayoutControlItem2.TextSize = New System.Drawing.Size(0, 0)
|
Me.LayoutControlItem2.TextSize = New System.Drawing.Size(0, 0)
|
||||||
Me.LayoutControlItem2.TextVisible = False
|
Me.LayoutControlItem2.TextVisible = False
|
||||||
'
|
'
|
||||||
@ -644,7 +644,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.Root.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup1})
|
Me.Root.Items.AddRange(New DevExpress.XtraLayout.BaseLayoutItem() {Me.LayoutControlGroup1})
|
||||||
Me.Root.Name = "Root"
|
Me.Root.Name = "Root"
|
||||||
Me.Root.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
Me.Root.Padding = New DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0)
|
||||||
Me.Root.Size = New System.Drawing.Size(899, 263)
|
Me.Root.Size = New System.Drawing.Size(796, 151)
|
||||||
Me.Root.TextVisible = False
|
Me.Root.TextVisible = False
|
||||||
'
|
'
|
||||||
'LayoutControlGroup1
|
'LayoutControlGroup1
|
||||||
@ -653,7 +653,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.LayoutControlGroup1.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlGroup1.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlGroup1.Name = "LayoutControlGroup1"
|
Me.LayoutControlGroup1.Name = "LayoutControlGroup1"
|
||||||
Me.LayoutControlGroup1.Padding = New DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10)
|
Me.LayoutControlGroup1.Padding = New DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10)
|
||||||
Me.LayoutControlGroup1.Size = New System.Drawing.Size(899, 263)
|
Me.LayoutControlGroup1.Size = New System.Drawing.Size(796, 151)
|
||||||
resources.ApplyResources(Me.LayoutControlGroup1, "LayoutControlGroup1")
|
resources.ApplyResources(Me.LayoutControlGroup1, "LayoutControlGroup1")
|
||||||
'
|
'
|
||||||
'LayoutControlItem3
|
'LayoutControlItem3
|
||||||
@ -662,7 +662,7 @@ Partial Public Class frmEnvelopeEditor
|
|||||||
Me.LayoutControlItem3.Location = New System.Drawing.Point(0, 0)
|
Me.LayoutControlItem3.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.LayoutControlItem3.Name = "LayoutControlItem3"
|
Me.LayoutControlItem3.Name = "LayoutControlItem3"
|
||||||
Me.LayoutControlItem3.Padding = New DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10)
|
Me.LayoutControlItem3.Padding = New DevExpress.XtraLayout.Utils.Padding(10, 10, 10, 10)
|
||||||
Me.LayoutControlItem3.Size = New System.Drawing.Size(873, 216)
|
Me.LayoutControlItem3.Size = New System.Drawing.Size(770, 104)
|
||||||
resources.ApplyResources(Me.LayoutControlItem3, "LayoutControlItem3")
|
resources.ApplyResources(Me.LayoutControlItem3, "LayoutControlItem3")
|
||||||
Me.LayoutControlItem3.TextLocation = DevExpress.Utils.Locations.Top
|
Me.LayoutControlItem3.TextLocation = DevExpress.Utils.Locations.Top
|
||||||
Me.LayoutControlItem3.TextSize = New System.Drawing.Size(46, 13)
|
Me.LayoutControlItem3.TextSize = New System.Drawing.Size(46, 13)
|
||||||
|
|||||||
@ -485,13 +485,13 @@
|
|||||||
<value>Start</value>
|
<value>Start</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="RibbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1164, 132</value>
|
<value>1061, 132</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonStatusBar1.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="RibbonStatusBar1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>0, 662</value>
|
<value>0, 550</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonStatusBar1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="RibbonStatusBar1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1164, 22</value>
|
<value>1061, 22</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RibbonStatusBar1.Name" xml:space="preserve">
|
<data name=">>RibbonStatusBar1.Name" xml:space="preserve">
|
||||||
<value>RibbonStatusBar1</value>
|
<value>RibbonStatusBar1</value>
|
||||||
@ -518,7 +518,7 @@
|
|||||||
<value>2</value>
|
<value>2</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GridDocuments.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="GridDocuments.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>223, 481</value>
|
<value>223, 369</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GridDocuments.TabIndex" type="System.Int32, mscorlib">
|
<data name="GridDocuments.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -545,7 +545,7 @@
|
|||||||
<value>Ihre Dokumente</value>
|
<value>Ihre Dokumente</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LayoutControl3.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="LayoutControl3.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>251, 530</value>
|
<value>251, 418</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LayoutControl3.TabIndex" type="System.Int32, mscorlib">
|
<data name="LayoutControl3.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
@ -627,7 +627,7 @@
|
|||||||
<value>0</value>
|
<value>0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="colColor.Width" type="System.Int32, mscorlib">
|
<data name="colColor.Width" type="System.Int32, mscorlib">
|
||||||
<value>32</value>
|
<value>54</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RepositoryItemComboBox1.AutoHeight" type="System.Boolean, mscorlib">
|
<data name="RepositoryItemComboBox1.AutoHeight" type="System.Boolean, mscorlib">
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
@ -696,7 +696,7 @@
|
|||||||
<value>Combo</value>
|
<value>Combo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GridReceivers.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="GridReceivers.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>871, 200</value>
|
<value>768, 200</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GridReceivers.TabIndex" type="System.Int32, mscorlib">
|
<data name="GridReceivers.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -726,7 +726,7 @@
|
|||||||
<value>Empfänger</value>
|
<value>Empfänger</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LayoutControl2.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="LayoutControl2.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>899, 249</value>
|
<value>796, 249</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LayoutControl2.TabIndex" type="System.Int32, mscorlib">
|
<data name="LayoutControl2.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
@ -756,7 +756,7 @@
|
|||||||
<value>0, 0, 0, 0</value>
|
<value>0, 0, 0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PanelControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="PanelControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>903, 253</value>
|
<value>800, 253</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PanelControl1.TabIndex" type="System.Int32, mscorlib">
|
<data name="PanelControl1.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
@ -795,7 +795,7 @@
|
|||||||
<value>Segoe UI, 9.75pt</value>
|
<value>Segoe UI, 9.75pt</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="txtMessage.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="txtMessage.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>853, 180</value>
|
<value>750, 68</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="txtMessage.TabIndex" type="System.Int32, mscorlib">
|
<data name="txtMessage.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>2</value>
|
<value>2</value>
|
||||||
@ -825,7 +825,7 @@
|
|||||||
<value>Ihre Nachricht</value>
|
<value>Ihre Nachricht</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LayoutControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="LayoutControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>899, 263</value>
|
<value>796, 151</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="LayoutControl1.TabIndex" type="System.Int32, mscorlib">
|
<data name="LayoutControl1.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -855,7 +855,7 @@
|
|||||||
<value>0, 0, 0, 0</value>
|
<value>0, 0, 0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PanelControl2.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="PanelControl2.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>903, 267</value>
|
<value>800, 155</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="PanelControl2.TabIndex" type="System.Int32, mscorlib">
|
<data name="PanelControl2.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
@ -888,7 +888,7 @@
|
|||||||
<value>1</value>
|
<value>1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl2.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="SplitContainerControl2.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>903, 530</value>
|
<value>800, 418</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl2.TabIndex" type="System.Int32, mscorlib">
|
<data name="SplitContainerControl2.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -921,7 +921,7 @@
|
|||||||
<value>1</value>
|
<value>1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="SplitContainerControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1164, 530</value>
|
<value>1061, 418</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl1.TabIndex" type="System.Int32, mscorlib">
|
<data name="SplitContainerControl1.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
@ -985,7 +985,7 @@
|
|||||||
<value>6, 13</value>
|
<value>6, 13</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1164, 684</value>
|
<value>1061, 572</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="frmEnvelopeEditor.IconOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="frmEnvelopeEditor.IconOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
|
|||||||
@ -123,7 +123,7 @@
|
|||||||
</data>
|
</data>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<data name="SplitContainerControl1.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="SplitContainerControl1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>0, 59</value>
|
<value>0, 132</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThumbnailEx2.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
<data name="ThumbnailEx2.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||||
<value>Fill</value>
|
<value>Fill</value>
|
||||||
@ -132,7 +132,7 @@
|
|||||||
<value>0, 0</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ThumbnailEx2.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="ThumbnailEx2.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>199, 600</value>
|
<value>199, 402</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
<data name="ThumbnailEx2.TabIndex" type="System.Int32, mscorlib">
|
<data name="ThumbnailEx2.TabIndex" type="System.Int32, mscorlib">
|
||||||
@ -172,7 +172,7 @@
|
|||||||
<value>0, 0</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DocumentViewer1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="DocumentViewer1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>917, 600</value>
|
<value>577, 402</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="DocumentViewer1.TabIndex" type="System.Int32, mscorlib">
|
<data name="DocumentViewer1.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>3</value>
|
<value>3</value>
|
||||||
@ -205,7 +205,7 @@
|
|||||||
<value>1</value>
|
<value>1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="SplitContainerControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1126, 600</value>
|
<value>786, 402</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="SplitContainerControl1.TabIndex" type="System.Int32, mscorlib">
|
<data name="SplitContainerControl1.TabIndex" type="System.Int32, mscorlib">
|
||||||
<value>15</value>
|
<value>15</value>
|
||||||
@ -397,7 +397,7 @@
|
|||||||
<value>Combo</value>
|
<value>Combo</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ribbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="ribbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1126, 88</value>
|
<value>786, 132</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>ribbonControl1.Name" xml:space="preserve">
|
<data name=">>ribbonControl1.Name" xml:space="preserve">
|
||||||
<value>ribbonControl1</value>
|
<value>ribbonControl1</value>
|
||||||
@ -427,7 +427,7 @@
|
|||||||
<value>0, 0</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlTop.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="barDockControlTop.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1126, 0</value>
|
<value>786, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlTop.Name" xml:space="preserve">
|
<data name=">>barDockControlTop.Name" xml:space="preserve">
|
||||||
<value>barDockControlTop</value>
|
<value>barDockControlTop</value>
|
||||||
@ -445,10 +445,10 @@
|
|||||||
<value>Bottom</value>
|
<value>Bottom</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlBottom.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="barDockControlBottom.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>0, 659</value>
|
<value>0, 534</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlBottom.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="barDockControlBottom.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1126, 0</value>
|
<value>786, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlBottom.Name" xml:space="preserve">
|
<data name=">>barDockControlBottom.Name" xml:space="preserve">
|
||||||
<value>barDockControlBottom</value>
|
<value>barDockControlBottom</value>
|
||||||
@ -469,7 +469,7 @@
|
|||||||
<value>0, 0</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlLeft.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="barDockControlLeft.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>0, 659</value>
|
<value>0, 534</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlLeft.Name" xml:space="preserve">
|
<data name=">>barDockControlLeft.Name" xml:space="preserve">
|
||||||
<value>barDockControlLeft</value>
|
<value>barDockControlLeft</value>
|
||||||
@ -487,10 +487,10 @@
|
|||||||
<value>Right</value>
|
<value>Right</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlRight.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="barDockControlRight.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>1126, 0</value>
|
<value>786, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="barDockControlRight.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="barDockControlRight.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>0, 659</value>
|
<value>0, 534</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>barDockControlRight.Name" xml:space="preserve">
|
<data name=">>barDockControlRight.Name" xml:space="preserve">
|
||||||
<value>barDockControlRight</value>
|
<value>barDockControlRight</value>
|
||||||
@ -511,7 +511,7 @@
|
|||||||
<value>6, 13</value>
|
<value>6, 13</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1689, 988</value>
|
<value>786, 534</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
<value>Segoe UI, 8.25pt</value>
|
<value>Segoe UI, 8.25pt</value>
|
||||||
|
|||||||
90
EnvelopeGenerator.Form/frmMain.Designer.vb
generated
90
EnvelopeGenerator.Form/frmMain.Designer.vb
generated
@ -67,10 +67,12 @@ Partial Class frmMain
|
|||||||
Me.BarButtonItem4 = New DevExpress.XtraBars.BarButtonItem()
|
Me.BarButtonItem4 = New DevExpress.XtraBars.BarButtonItem()
|
||||||
Me.BarStaticItemGhost = New DevExpress.XtraBars.BarStaticItem()
|
Me.BarStaticItemGhost = New DevExpress.XtraBars.BarStaticItem()
|
||||||
Me.bbtnitm2Faktor = New DevExpress.XtraBars.BarButtonItem()
|
Me.bbtnitm2Faktor = New DevExpress.XtraBars.BarButtonItem()
|
||||||
|
Me.BarButtonItem2 = New DevExpress.XtraBars.BarButtonItem()
|
||||||
Me.RibbonPage1 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
Me.RibbonPage1 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||||
Me.RibbonPageEnvelopeActions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageEnvelopeActions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPageGroup1 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroup1 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPageGroupFunctions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroupFunctions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
|
Me.RibbonPageGroupReceiver = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPage2 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
Me.RibbonPage2 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||||
Me.RibbonPageGroup3 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroup3 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonStatusBar = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
|
Me.RibbonStatusBar = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
|
||||||
@ -112,8 +114,6 @@ Partial Class frmMain
|
|||||||
Me.RefreshTimer = New System.Windows.Forms.Timer(Me.components)
|
Me.RefreshTimer = New System.Windows.Forms.Timer(Me.components)
|
||||||
Me.SaveFileDialog1 = New System.Windows.Forms.SaveFileDialog()
|
Me.SaveFileDialog1 = New System.Windows.Forms.SaveFileDialog()
|
||||||
Me.XtraSaveFileDialog1 = New DevExpress.XtraEditors.XtraSaveFileDialog(Me.components)
|
Me.XtraSaveFileDialog1 = New DevExpress.XtraEditors.XtraSaveFileDialog(Me.components)
|
||||||
Me.BarButtonItem2 = New DevExpress.XtraBars.BarButtonItem()
|
|
||||||
Me.RibbonPageGroupReceiver = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
|
||||||
CType(Me.SplitContainerControl1, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.SplitContainerControl1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
CType(Me.SplitContainerControl1.Panel1, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.SplitContainerControl1.Panel1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.SplitContainerControl1.Panel1.SuspendLayout()
|
Me.SplitContainerControl1.Panel1.SuspendLayout()
|
||||||
@ -169,7 +169,7 @@ Partial Class frmMain
|
|||||||
'SplitContainerControl1.Panel2
|
'SplitContainerControl1.Panel2
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.SplitContainerControl1.Panel2, "SplitContainerControl1.Panel2")
|
resources.ApplyResources(Me.SplitContainerControl1.Panel2, "SplitContainerControl1.Panel2")
|
||||||
Me.SplitContainerControl1.SplitterPosition = 272
|
Me.SplitContainerControl1.SplitterPosition = 335
|
||||||
'
|
'
|
||||||
'XtraTabControlMain
|
'XtraTabControlMain
|
||||||
'
|
'
|
||||||
@ -181,8 +181,8 @@ Partial Class frmMain
|
|||||||
'XtraTabPage1
|
'XtraTabPage1
|
||||||
'
|
'
|
||||||
Me.XtraTabPage1.Controls.Add(Me.GridEnvelopes)
|
Me.XtraTabPage1.Controls.Add(Me.GridEnvelopes)
|
||||||
Me.XtraTabPage1.Name = "XtraTabPage1"
|
|
||||||
resources.ApplyResources(Me.XtraTabPage1, "XtraTabPage1")
|
resources.ApplyResources(Me.XtraTabPage1, "XtraTabPage1")
|
||||||
|
Me.XtraTabPage1.Name = "XtraTabPage1"
|
||||||
'
|
'
|
||||||
'GridEnvelopes
|
'GridEnvelopes
|
||||||
'
|
'
|
||||||
@ -191,6 +191,7 @@ Partial Class frmMain
|
|||||||
Me.GridEnvelopes.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
Me.GridEnvelopes.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
Me.GridEnvelopes.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
Me.GridEnvelopes.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||||
|
Me.GridEnvelopes.EmbeddedNavigator.Margin = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.Margin"), System.Windows.Forms.Padding)
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
Me.GridEnvelopes.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||||
Me.GridEnvelopes.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
Me.GridEnvelopes.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridEnvelopes.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||||
GridLevelNode1.LevelTemplate = Me.ViewReceivers
|
GridLevelNode1.LevelTemplate = Me.ViewReceivers
|
||||||
@ -207,6 +208,7 @@ Partial Class frmMain
|
|||||||
'ViewReceivers
|
'ViewReceivers
|
||||||
'
|
'
|
||||||
Me.ViewReceivers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColReceiverStatus, Me.ColName, Me.ColEmail, Me.ColSignedDate, Me.colAccessCode, Me.ColStatusReceiver})
|
Me.ViewReceivers.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColReceiverStatus, Me.ColName, Me.ColEmail, Me.ColSignedDate, Me.colAccessCode, Me.ColStatusReceiver})
|
||||||
|
Me.ViewReceivers.DetailHeight = 431
|
||||||
Me.ViewReceivers.GridControl = Me.GridEnvelopes
|
Me.ViewReceivers.GridControl = Me.GridEnvelopes
|
||||||
Me.ViewReceivers.Name = "ViewReceivers"
|
Me.ViewReceivers.Name = "ViewReceivers"
|
||||||
Me.ViewReceivers.OptionsBehavior.Editable = False
|
Me.ViewReceivers.OptionsBehavior.Editable = False
|
||||||
@ -221,6 +223,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColReceiverStatus, "ColReceiverStatus")
|
resources.ApplyResources(Me.ColReceiverStatus, "ColReceiverStatus")
|
||||||
Me.ColReceiverStatus.FieldName = "StatusTranslated"
|
Me.ColReceiverStatus.FieldName = "StatusTranslated"
|
||||||
|
Me.ColReceiverStatus.MinWidth = 27
|
||||||
Me.ColReceiverStatus.Name = "ColReceiverStatus"
|
Me.ColReceiverStatus.Name = "ColReceiverStatus"
|
||||||
Me.ColReceiverStatus.OptionsColumn.AllowEdit = False
|
Me.ColReceiverStatus.OptionsColumn.AllowEdit = False
|
||||||
'
|
'
|
||||||
@ -228,6 +231,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColName, "ColName")
|
resources.ApplyResources(Me.ColName, "ColName")
|
||||||
Me.ColName.FieldName = "Name"
|
Me.ColName.FieldName = "Name"
|
||||||
|
Me.ColName.MinWidth = 27
|
||||||
Me.ColName.Name = "ColName"
|
Me.ColName.Name = "ColName"
|
||||||
Me.ColName.OptionsColumn.AllowEdit = False
|
Me.ColName.OptionsColumn.AllowEdit = False
|
||||||
'
|
'
|
||||||
@ -235,6 +239,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColEmail, "ColEmail")
|
resources.ApplyResources(Me.ColEmail, "ColEmail")
|
||||||
Me.ColEmail.FieldName = "EmailAddress"
|
Me.ColEmail.FieldName = "EmailAddress"
|
||||||
|
Me.ColEmail.MinWidth = 27
|
||||||
Me.ColEmail.Name = "ColEmail"
|
Me.ColEmail.Name = "ColEmail"
|
||||||
Me.ColEmail.OptionsColumn.AllowEdit = False
|
Me.ColEmail.OptionsColumn.AllowEdit = False
|
||||||
'
|
'
|
||||||
@ -242,6 +247,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColSignedDate, "ColSignedDate")
|
resources.ApplyResources(Me.ColSignedDate, "ColSignedDate")
|
||||||
Me.ColSignedDate.FieldName = "SignedDateDisplayValue"
|
Me.ColSignedDate.FieldName = "SignedDateDisplayValue"
|
||||||
|
Me.ColSignedDate.MinWidth = 27
|
||||||
Me.ColSignedDate.Name = "ColSignedDate"
|
Me.ColSignedDate.Name = "ColSignedDate"
|
||||||
Me.ColSignedDate.OptionsColumn.AllowEdit = False
|
Me.ColSignedDate.OptionsColumn.AllowEdit = False
|
||||||
'
|
'
|
||||||
@ -249,17 +255,20 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.colAccessCode, "colAccessCode")
|
resources.ApplyResources(Me.colAccessCode, "colAccessCode")
|
||||||
Me.colAccessCode.FieldName = "AccessCode"
|
Me.colAccessCode.FieldName = "AccessCode"
|
||||||
|
Me.colAccessCode.MinWidth = 27
|
||||||
Me.colAccessCode.Name = "colAccessCode"
|
Me.colAccessCode.Name = "colAccessCode"
|
||||||
'
|
'
|
||||||
'ColStatusReceiver
|
'ColStatusReceiver
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColStatusReceiver, "ColStatusReceiver")
|
resources.ApplyResources(Me.ColStatusReceiver, "ColStatusReceiver")
|
||||||
Me.ColStatusReceiver.FieldName = "Status"
|
Me.ColStatusReceiver.FieldName = "Status"
|
||||||
|
Me.ColStatusReceiver.MinWidth = 27
|
||||||
Me.ColStatusReceiver.Name = "ColStatusReceiver"
|
Me.ColStatusReceiver.Name = "ColStatusReceiver"
|
||||||
'
|
'
|
||||||
'ViewHistory
|
'ViewHistory
|
||||||
'
|
'
|
||||||
Me.ViewHistory.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColHistoryStatus, Me.ColHistoryUserReference, Me.ColHistoryDate})
|
Me.ViewHistory.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColHistoryStatus, Me.ColHistoryUserReference, Me.ColHistoryDate})
|
||||||
|
Me.ViewHistory.DetailHeight = 431
|
||||||
Me.ViewHistory.GridControl = Me.GridEnvelopes
|
Me.ViewHistory.GridControl = Me.GridEnvelopes
|
||||||
Me.ViewHistory.Name = "ViewHistory"
|
Me.ViewHistory.Name = "ViewHistory"
|
||||||
Me.ViewHistory.OptionsBehavior.Editable = False
|
Me.ViewHistory.OptionsBehavior.Editable = False
|
||||||
@ -272,12 +281,14 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColHistoryStatus, "ColHistoryStatus")
|
resources.ApplyResources(Me.ColHistoryStatus, "ColHistoryStatus")
|
||||||
Me.ColHistoryStatus.FieldName = "StatusTranslated"
|
Me.ColHistoryStatus.FieldName = "StatusTranslated"
|
||||||
|
Me.ColHistoryStatus.MinWidth = 27
|
||||||
Me.ColHistoryStatus.Name = "ColHistoryStatus"
|
Me.ColHistoryStatus.Name = "ColHistoryStatus"
|
||||||
'
|
'
|
||||||
'ColHistoryUserReference
|
'ColHistoryUserReference
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColHistoryUserReference, "ColHistoryUserReference")
|
resources.ApplyResources(Me.ColHistoryUserReference, "ColHistoryUserReference")
|
||||||
Me.ColHistoryUserReference.FieldName = "UserReference"
|
Me.ColHistoryUserReference.FieldName = "UserReference"
|
||||||
|
Me.ColHistoryUserReference.MinWidth = 27
|
||||||
Me.ColHistoryUserReference.Name = "ColHistoryUserReference"
|
Me.ColHistoryUserReference.Name = "ColHistoryUserReference"
|
||||||
'
|
'
|
||||||
'ColHistoryDate
|
'ColHistoryDate
|
||||||
@ -286,11 +297,13 @@ Partial Class frmMain
|
|||||||
Me.ColHistoryDate.DisplayFormat.FormatString = "G"
|
Me.ColHistoryDate.DisplayFormat.FormatString = "G"
|
||||||
Me.ColHistoryDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
Me.ColHistoryDate.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
||||||
Me.ColHistoryDate.FieldName = "ActionDate"
|
Me.ColHistoryDate.FieldName = "ActionDate"
|
||||||
|
Me.ColHistoryDate.MinWidth = 27
|
||||||
Me.ColHistoryDate.Name = "ColHistoryDate"
|
Me.ColHistoryDate.Name = "ColHistoryDate"
|
||||||
'
|
'
|
||||||
'ViewEnvelopes
|
'ViewEnvelopes
|
||||||
'
|
'
|
||||||
Me.ViewEnvelopes.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colEnvelopeId, Me.colContractType, Me.colStatus, Me.colTitle, Me.colAddedWhen, Me.GridColumn2})
|
Me.ViewEnvelopes.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colEnvelopeId, Me.colContractType, Me.colStatus, Me.colTitle, Me.colAddedWhen, Me.GridColumn2})
|
||||||
|
Me.ViewEnvelopes.DetailHeight = 431
|
||||||
Me.ViewEnvelopes.GridControl = Me.GridEnvelopes
|
Me.ViewEnvelopes.GridControl = Me.GridEnvelopes
|
||||||
Me.ViewEnvelopes.Name = "ViewEnvelopes"
|
Me.ViewEnvelopes.Name = "ViewEnvelopes"
|
||||||
Me.ViewEnvelopes.OptionsBehavior.Editable = False
|
Me.ViewEnvelopes.OptionsBehavior.Editable = False
|
||||||
@ -302,24 +315,28 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.colEnvelopeId, "colEnvelopeId")
|
resources.ApplyResources(Me.colEnvelopeId, "colEnvelopeId")
|
||||||
Me.colEnvelopeId.FieldName = "Id"
|
Me.colEnvelopeId.FieldName = "Id"
|
||||||
|
Me.colEnvelopeId.MinWidth = 27
|
||||||
Me.colEnvelopeId.Name = "colEnvelopeId"
|
Me.colEnvelopeId.Name = "colEnvelopeId"
|
||||||
'
|
'
|
||||||
'colContractType
|
'colContractType
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.colContractType, "colContractType")
|
resources.ApplyResources(Me.colContractType, "colContractType")
|
||||||
Me.colContractType.FieldName = "EnvelopeTypeTitle"
|
Me.colContractType.FieldName = "EnvelopeTypeTitle"
|
||||||
|
Me.colContractType.MinWidth = 27
|
||||||
Me.colContractType.Name = "colContractType"
|
Me.colContractType.Name = "colContractType"
|
||||||
'
|
'
|
||||||
'colStatus
|
'colStatus
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.colStatus, "colStatus")
|
resources.ApplyResources(Me.colStatus, "colStatus")
|
||||||
Me.colStatus.FieldName = "StatusTranslated"
|
Me.colStatus.FieldName = "StatusTranslated"
|
||||||
|
Me.colStatus.MinWidth = 27
|
||||||
Me.colStatus.Name = "colStatus"
|
Me.colStatus.Name = "colStatus"
|
||||||
'
|
'
|
||||||
'colTitle
|
'colTitle
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.colTitle, "colTitle")
|
resources.ApplyResources(Me.colTitle, "colTitle")
|
||||||
Me.colTitle.FieldName = "Title"
|
Me.colTitle.FieldName = "Title"
|
||||||
|
Me.colTitle.MinWidth = 27
|
||||||
Me.colTitle.Name = "colTitle"
|
Me.colTitle.Name = "colTitle"
|
||||||
'
|
'
|
||||||
'colAddedWhen
|
'colAddedWhen
|
||||||
@ -328,6 +345,7 @@ Partial Class frmMain
|
|||||||
Me.colAddedWhen.DisplayFormat.FormatString = "G"
|
Me.colAddedWhen.DisplayFormat.FormatString = "G"
|
||||||
Me.colAddedWhen.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
Me.colAddedWhen.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
||||||
Me.colAddedWhen.FieldName = "AddedWhen"
|
Me.colAddedWhen.FieldName = "AddedWhen"
|
||||||
|
Me.colAddedWhen.MinWidth = 27
|
||||||
Me.colAddedWhen.Name = "colAddedWhen"
|
Me.colAddedWhen.Name = "colAddedWhen"
|
||||||
'
|
'
|
||||||
'GridColumn2
|
'GridColumn2
|
||||||
@ -336,10 +354,12 @@ Partial Class frmMain
|
|||||||
Me.GridColumn2.DisplayFormat.FormatString = "G"
|
Me.GridColumn2.DisplayFormat.FormatString = "G"
|
||||||
Me.GridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
Me.GridColumn2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
||||||
Me.GridColumn2.FieldName = "ChangedWhen"
|
Me.GridColumn2.FieldName = "ChangedWhen"
|
||||||
|
Me.GridColumn2.MinWidth = 27
|
||||||
Me.GridColumn2.Name = "GridColumn2"
|
Me.GridColumn2.Name = "GridColumn2"
|
||||||
'
|
'
|
||||||
'RibbonControl
|
'RibbonControl
|
||||||
'
|
'
|
||||||
|
Me.RibbonControl.EmptyAreaImageOptions.ImagePadding = New System.Windows.Forms.Padding(40, 37, 40, 37)
|
||||||
Me.RibbonControl.ExpandCollapseItem.Id = 0
|
Me.RibbonControl.ExpandCollapseItem.Id = 0
|
||||||
Me.RibbonControl.ExpandCollapseItem.ImageOptions.ImageIndex = CType(resources.GetObject("RibbonControl.ExpandCollapseItem.ImageOptions.ImageIndex"), Integer)
|
Me.RibbonControl.ExpandCollapseItem.ImageOptions.ImageIndex = CType(resources.GetObject("RibbonControl.ExpandCollapseItem.ImageOptions.ImageIndex"), Integer)
|
||||||
Me.RibbonControl.ExpandCollapseItem.ImageOptions.LargeImageIndex = CType(resources.GetObject("RibbonControl.ExpandCollapseItem.ImageOptions.LargeImageIndex"), Integer)
|
Me.RibbonControl.ExpandCollapseItem.ImageOptions.LargeImageIndex = CType(resources.GetObject("RibbonControl.ExpandCollapseItem.ImageOptions.LargeImageIndex"), Integer)
|
||||||
@ -347,6 +367,7 @@ Partial Class frmMain
|
|||||||
resources.ApplyResources(Me.RibbonControl, "RibbonControl")
|
resources.ApplyResources(Me.RibbonControl, "RibbonControl")
|
||||||
Me.RibbonControl.MaxItemId = 22
|
Me.RibbonControl.MaxItemId = 22
|
||||||
Me.RibbonControl.Name = "RibbonControl"
|
Me.RibbonControl.Name = "RibbonControl"
|
||||||
|
Me.RibbonControl.OptionsMenuMinWidth = 440
|
||||||
Me.RibbonControl.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1, Me.RibbonPage2})
|
Me.RibbonControl.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1, Me.RibbonPage2})
|
||||||
Me.RibbonControl.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
Me.RibbonControl.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
||||||
Me.RibbonControl.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Show
|
Me.RibbonControl.ShowPageHeadersMode = DevExpress.XtraBars.Ribbon.ShowPageHeadersMode.Show
|
||||||
@ -510,6 +531,13 @@ Partial Class frmMain
|
|||||||
Me.bbtnitm2Faktor.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitm2Faktor.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtnitm2Faktor.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitm2Faktor.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtnitm2Faktor.Name = "bbtnitm2Faktor"
|
Me.bbtnitm2Faktor.Name = "bbtnitm2Faktor"
|
||||||
'
|
'
|
||||||
|
'BarButtonItem2
|
||||||
|
'
|
||||||
|
resources.ApplyResources(Me.BarButtonItem2, "BarButtonItem2")
|
||||||
|
Me.BarButtonItem2.Id = 21
|
||||||
|
Me.BarButtonItem2.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
|
Me.BarButtonItem2.Name = "BarButtonItem2"
|
||||||
|
'
|
||||||
'RibbonPage1
|
'RibbonPage1
|
||||||
'
|
'
|
||||||
Me.RibbonPage1.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageEnvelopeActions, Me.RibbonPageGroup1, Me.RibbonPageGroupFunctions, Me.RibbonPageGroupReceiver})
|
Me.RibbonPage1.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageEnvelopeActions, Me.RibbonPageGroup1, Me.RibbonPageGroupFunctions, Me.RibbonPageGroupReceiver})
|
||||||
@ -540,6 +568,16 @@ Partial Class frmMain
|
|||||||
Me.RibbonPageGroupFunctions.Name = "RibbonPageGroupFunctions"
|
Me.RibbonPageGroupFunctions.Name = "RibbonPageGroupFunctions"
|
||||||
resources.ApplyResources(Me.RibbonPageGroupFunctions, "RibbonPageGroupFunctions")
|
resources.ApplyResources(Me.RibbonPageGroupFunctions, "RibbonPageGroupFunctions")
|
||||||
'
|
'
|
||||||
|
'RibbonPageGroupReceiver
|
||||||
|
'
|
||||||
|
Me.RibbonPageGroupReceiver.Enabled = False
|
||||||
|
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.bbtnitm_ResendInvitation)
|
||||||
|
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.BarButtonItem2)
|
||||||
|
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.bbtnitm2Faktor)
|
||||||
|
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.btnContactReceiver)
|
||||||
|
Me.RibbonPageGroupReceiver.Name = "RibbonPageGroupReceiver"
|
||||||
|
resources.ApplyResources(Me.RibbonPageGroupReceiver, "RibbonPageGroupReceiver")
|
||||||
|
'
|
||||||
'RibbonPage2
|
'RibbonPage2
|
||||||
'
|
'
|
||||||
Me.RibbonPage2.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroup3})
|
Me.RibbonPage2.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroup3})
|
||||||
@ -567,8 +605,8 @@ Partial Class frmMain
|
|||||||
'XtraTabPage2
|
'XtraTabPage2
|
||||||
'
|
'
|
||||||
Me.XtraTabPage2.Controls.Add(Me.GridCompleted)
|
Me.XtraTabPage2.Controls.Add(Me.GridCompleted)
|
||||||
Me.XtraTabPage2.Name = "XtraTabPage2"
|
|
||||||
resources.ApplyResources(Me.XtraTabPage2, "XtraTabPage2")
|
resources.ApplyResources(Me.XtraTabPage2, "XtraTabPage2")
|
||||||
|
Me.XtraTabPage2.Name = "XtraTabPage2"
|
||||||
'
|
'
|
||||||
'GridCompleted
|
'GridCompleted
|
||||||
'
|
'
|
||||||
@ -577,6 +615,7 @@ Partial Class frmMain
|
|||||||
Me.GridCompleted.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
Me.GridCompleted.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
|
||||||
Me.GridCompleted.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
Me.GridCompleted.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
|
||||||
Me.GridCompleted.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
Me.GridCompleted.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
|
||||||
|
Me.GridCompleted.EmbeddedNavigator.Margin = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.Margin"), System.Windows.Forms.Padding)
|
||||||
Me.GridCompleted.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
Me.GridCompleted.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
|
||||||
Me.GridCompleted.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
Me.GridCompleted.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridCompleted.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
|
||||||
GridLevelNode3.LevelTemplate = Me.ViewReceiversCompleted
|
GridLevelNode3.LevelTemplate = Me.ViewReceiversCompleted
|
||||||
@ -593,6 +632,7 @@ Partial Class frmMain
|
|||||||
'ViewReceiversCompleted
|
'ViewReceiversCompleted
|
||||||
'
|
'
|
||||||
Me.ViewReceiversCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColStatusCompleted, Me.ColNameCompleted, Me.ColEmailCompleted, Me.ColSignedDateCompleted})
|
Me.ViewReceiversCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColStatusCompleted, Me.ColNameCompleted, Me.ColEmailCompleted, Me.ColSignedDateCompleted})
|
||||||
|
Me.ViewReceiversCompleted.DetailHeight = 431
|
||||||
Me.ViewReceiversCompleted.GridControl = Me.GridCompleted
|
Me.ViewReceiversCompleted.GridControl = Me.GridCompleted
|
||||||
Me.ViewReceiversCompleted.Name = "ViewReceiversCompleted"
|
Me.ViewReceiversCompleted.Name = "ViewReceiversCompleted"
|
||||||
Me.ViewReceiversCompleted.OptionsBehavior.Editable = False
|
Me.ViewReceiversCompleted.OptionsBehavior.Editable = False
|
||||||
@ -607,29 +647,34 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColStatusCompleted, "ColStatusCompleted")
|
resources.ApplyResources(Me.ColStatusCompleted, "ColStatusCompleted")
|
||||||
Me.ColStatusCompleted.FieldName = "StatusTranslated"
|
Me.ColStatusCompleted.FieldName = "StatusTranslated"
|
||||||
|
Me.ColStatusCompleted.MinWidth = 27
|
||||||
Me.ColStatusCompleted.Name = "ColStatusCompleted"
|
Me.ColStatusCompleted.Name = "ColStatusCompleted"
|
||||||
'
|
'
|
||||||
'ColNameCompleted
|
'ColNameCompleted
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColNameCompleted, "ColNameCompleted")
|
resources.ApplyResources(Me.ColNameCompleted, "ColNameCompleted")
|
||||||
Me.ColNameCompleted.FieldName = "Name"
|
Me.ColNameCompleted.FieldName = "Name"
|
||||||
|
Me.ColNameCompleted.MinWidth = 27
|
||||||
Me.ColNameCompleted.Name = "ColNameCompleted"
|
Me.ColNameCompleted.Name = "ColNameCompleted"
|
||||||
'
|
'
|
||||||
'ColEmailCompleted
|
'ColEmailCompleted
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColEmailCompleted, "ColEmailCompleted")
|
resources.ApplyResources(Me.ColEmailCompleted, "ColEmailCompleted")
|
||||||
Me.ColEmailCompleted.FieldName = "EmailAddress"
|
Me.ColEmailCompleted.FieldName = "EmailAddress"
|
||||||
|
Me.ColEmailCompleted.MinWidth = 27
|
||||||
Me.ColEmailCompleted.Name = "ColEmailCompleted"
|
Me.ColEmailCompleted.Name = "ColEmailCompleted"
|
||||||
'
|
'
|
||||||
'ColSignedDateCompleted
|
'ColSignedDateCompleted
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColSignedDateCompleted, "ColSignedDateCompleted")
|
resources.ApplyResources(Me.ColSignedDateCompleted, "ColSignedDateCompleted")
|
||||||
Me.ColSignedDateCompleted.FieldName = "SignedDateDisplayValue"
|
Me.ColSignedDateCompleted.FieldName = "SignedDateDisplayValue"
|
||||||
|
Me.ColSignedDateCompleted.MinWidth = 27
|
||||||
Me.ColSignedDateCompleted.Name = "ColSignedDateCompleted"
|
Me.ColSignedDateCompleted.Name = "ColSignedDateCompleted"
|
||||||
'
|
'
|
||||||
'ViewHistoryCompleted
|
'ViewHistoryCompleted
|
||||||
'
|
'
|
||||||
Me.ViewHistoryCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColHistoryStatusCompleted, Me.ColHistoryUserReferenceCompleted, Me.ColHistoryDateCompleted})
|
Me.ViewHistoryCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.ColHistoryStatusCompleted, Me.ColHistoryUserReferenceCompleted, Me.ColHistoryDateCompleted})
|
||||||
|
Me.ViewHistoryCompleted.DetailHeight = 431
|
||||||
Me.ViewHistoryCompleted.GridControl = Me.GridCompleted
|
Me.ViewHistoryCompleted.GridControl = Me.GridCompleted
|
||||||
Me.ViewHistoryCompleted.Name = "ViewHistoryCompleted"
|
Me.ViewHistoryCompleted.Name = "ViewHistoryCompleted"
|
||||||
Me.ViewHistoryCompleted.OptionsBehavior.Editable = False
|
Me.ViewHistoryCompleted.OptionsBehavior.Editable = False
|
||||||
@ -644,12 +689,14 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColHistoryStatusCompleted, "ColHistoryStatusCompleted")
|
resources.ApplyResources(Me.ColHistoryStatusCompleted, "ColHistoryStatusCompleted")
|
||||||
Me.ColHistoryStatusCompleted.FieldName = "StatusTranslated"
|
Me.ColHistoryStatusCompleted.FieldName = "StatusTranslated"
|
||||||
|
Me.ColHistoryStatusCompleted.MinWidth = 27
|
||||||
Me.ColHistoryStatusCompleted.Name = "ColHistoryStatusCompleted"
|
Me.ColHistoryStatusCompleted.Name = "ColHistoryStatusCompleted"
|
||||||
'
|
'
|
||||||
'ColHistoryUserReferenceCompleted
|
'ColHistoryUserReferenceCompleted
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.ColHistoryUserReferenceCompleted, "ColHistoryUserReferenceCompleted")
|
resources.ApplyResources(Me.ColHistoryUserReferenceCompleted, "ColHistoryUserReferenceCompleted")
|
||||||
Me.ColHistoryUserReferenceCompleted.FieldName = "UserReference"
|
Me.ColHistoryUserReferenceCompleted.FieldName = "UserReference"
|
||||||
|
Me.ColHistoryUserReferenceCompleted.MinWidth = 27
|
||||||
Me.ColHistoryUserReferenceCompleted.Name = "ColHistoryUserReferenceCompleted"
|
Me.ColHistoryUserReferenceCompleted.Name = "ColHistoryUserReferenceCompleted"
|
||||||
'
|
'
|
||||||
'ColHistoryDateCompleted
|
'ColHistoryDateCompleted
|
||||||
@ -658,11 +705,13 @@ Partial Class frmMain
|
|||||||
Me.ColHistoryDateCompleted.DisplayFormat.FormatString = "G"
|
Me.ColHistoryDateCompleted.DisplayFormat.FormatString = "G"
|
||||||
Me.ColHistoryDateCompleted.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
Me.ColHistoryDateCompleted.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
||||||
Me.ColHistoryDateCompleted.FieldName = "ActionDate"
|
Me.ColHistoryDateCompleted.FieldName = "ActionDate"
|
||||||
|
Me.ColHistoryDateCompleted.MinWidth = 27
|
||||||
Me.ColHistoryDateCompleted.Name = "ColHistoryDateCompleted"
|
Me.ColHistoryDateCompleted.Name = "ColHistoryDateCompleted"
|
||||||
'
|
'
|
||||||
'ViewCompleted
|
'ViewCompleted
|
||||||
'
|
'
|
||||||
Me.ViewCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn3, Me.GridColumn6, Me.GridColumn4, Me.GridColumn5, Me.GridColumn7, Me.GridColumn1})
|
Me.ViewCompleted.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.GridColumn3, Me.GridColumn6, Me.GridColumn4, Me.GridColumn5, Me.GridColumn7, Me.GridColumn1})
|
||||||
|
Me.ViewCompleted.DetailHeight = 431
|
||||||
Me.ViewCompleted.GridControl = Me.GridCompleted
|
Me.ViewCompleted.GridControl = Me.GridCompleted
|
||||||
Me.ViewCompleted.Name = "ViewCompleted"
|
Me.ViewCompleted.Name = "ViewCompleted"
|
||||||
Me.ViewCompleted.OptionsBehavior.Editable = False
|
Me.ViewCompleted.OptionsBehavior.Editable = False
|
||||||
@ -674,25 +723,28 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridColumn3, "GridColumn3")
|
resources.ApplyResources(Me.GridColumn3, "GridColumn3")
|
||||||
Me.GridColumn3.FieldName = "EnvelopeTypeTitle"
|
Me.GridColumn3.FieldName = "EnvelopeTypeTitle"
|
||||||
|
Me.GridColumn3.MinWidth = 27
|
||||||
Me.GridColumn3.Name = "GridColumn3"
|
Me.GridColumn3.Name = "GridColumn3"
|
||||||
'
|
'
|
||||||
'GridColumn6
|
'GridColumn6
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridColumn6, "GridColumn6")
|
resources.ApplyResources(Me.GridColumn6, "GridColumn6")
|
||||||
Me.GridColumn6.FieldName = "Comment"
|
Me.GridColumn6.FieldName = "Comment"
|
||||||
Me.GridColumn6.MinWidth = 80
|
Me.GridColumn6.MinWidth = 107
|
||||||
Me.GridColumn6.Name = "GridColumn6"
|
Me.GridColumn6.Name = "GridColumn6"
|
||||||
'
|
'
|
||||||
'GridColumn4
|
'GridColumn4
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridColumn4, "GridColumn4")
|
resources.ApplyResources(Me.GridColumn4, "GridColumn4")
|
||||||
Me.GridColumn4.FieldName = "StatusTranslated"
|
Me.GridColumn4.FieldName = "StatusTranslated"
|
||||||
|
Me.GridColumn4.MinWidth = 27
|
||||||
Me.GridColumn4.Name = "GridColumn4"
|
Me.GridColumn4.Name = "GridColumn4"
|
||||||
'
|
'
|
||||||
'GridColumn5
|
'GridColumn5
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridColumn5, "GridColumn5")
|
resources.ApplyResources(Me.GridColumn5, "GridColumn5")
|
||||||
Me.GridColumn5.FieldName = "Title"
|
Me.GridColumn5.FieldName = "Title"
|
||||||
|
Me.GridColumn5.MinWidth = 27
|
||||||
Me.GridColumn5.Name = "GridColumn5"
|
Me.GridColumn5.Name = "GridColumn5"
|
||||||
'
|
'
|
||||||
'GridColumn7
|
'GridColumn7
|
||||||
@ -701,6 +753,7 @@ Partial Class frmMain
|
|||||||
Me.GridColumn7.DisplayFormat.FormatString = "G"
|
Me.GridColumn7.DisplayFormat.FormatString = "G"
|
||||||
Me.GridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
Me.GridColumn7.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
||||||
Me.GridColumn7.FieldName = "AddedWhen"
|
Me.GridColumn7.FieldName = "AddedWhen"
|
||||||
|
Me.GridColumn7.MinWidth = 27
|
||||||
Me.GridColumn7.Name = "GridColumn7"
|
Me.GridColumn7.Name = "GridColumn7"
|
||||||
'
|
'
|
||||||
'GridColumn1
|
'GridColumn1
|
||||||
@ -709,14 +762,15 @@ Partial Class frmMain
|
|||||||
Me.GridColumn1.DisplayFormat.FormatString = "G"
|
Me.GridColumn1.DisplayFormat.FormatString = "G"
|
||||||
Me.GridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
Me.GridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
|
||||||
Me.GridColumn1.FieldName = "ChangedWhen"
|
Me.GridColumn1.FieldName = "ChangedWhen"
|
||||||
|
Me.GridColumn1.MinWidth = 27
|
||||||
Me.GridColumn1.Name = "GridColumn1"
|
Me.GridColumn1.Name = "GridColumn1"
|
||||||
'
|
'
|
||||||
'XtraTabPageAdmin
|
'XtraTabPageAdmin
|
||||||
'
|
'
|
||||||
Me.XtraTabPageAdmin.Controls.Add(Me.SplitContainerControl2)
|
Me.XtraTabPageAdmin.Controls.Add(Me.SplitContainerControl2)
|
||||||
Me.XtraTabPageAdmin.Controls.Add(Me.PanelControl1)
|
Me.XtraTabPageAdmin.Controls.Add(Me.PanelControl1)
|
||||||
Me.XtraTabPageAdmin.Name = "XtraTabPageAdmin"
|
|
||||||
resources.ApplyResources(Me.XtraTabPageAdmin, "XtraTabPageAdmin")
|
resources.ApplyResources(Me.XtraTabPageAdmin, "XtraTabPageAdmin")
|
||||||
|
Me.XtraTabPageAdmin.Name = "XtraTabPageAdmin"
|
||||||
'
|
'
|
||||||
'SplitContainerControl2
|
'SplitContainerControl2
|
||||||
'
|
'
|
||||||
@ -731,11 +785,12 @@ Partial Class frmMain
|
|||||||
'SplitContainerControl2.Panel2
|
'SplitContainerControl2.Panel2
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.SplitContainerControl2.Panel2, "SplitContainerControl2.Panel2")
|
resources.ApplyResources(Me.SplitContainerControl2.Panel2, "SplitContainerControl2.Panel2")
|
||||||
Me.SplitContainerControl2.SplitterPosition = 907
|
Me.SplitContainerControl2.SplitterPosition = 1209
|
||||||
'
|
'
|
||||||
'GridControlData
|
'GridControlData
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridControlData, "GridControlData")
|
resources.ApplyResources(Me.GridControlData, "GridControlData")
|
||||||
|
Me.GridControlData.EmbeddedNavigator.Margin = CType(resources.GetObject("GridControlData.EmbeddedNavigator.Margin"), System.Windows.Forms.Padding)
|
||||||
Me.GridControlData.MainView = Me.GridViewData
|
Me.GridControlData.MainView = Me.GridViewData
|
||||||
Me.GridControlData.MenuManager = Me.RibbonControl
|
Me.GridControlData.MenuManager = Me.RibbonControl
|
||||||
Me.GridControlData.Name = "GridControlData"
|
Me.GridControlData.Name = "GridControlData"
|
||||||
@ -743,6 +798,7 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
'GridViewData
|
'GridViewData
|
||||||
'
|
'
|
||||||
|
Me.GridViewData.DetailHeight = 431
|
||||||
Me.GridViewData.GridControl = Me.GridControlData
|
Me.GridViewData.GridControl = Me.GridControlData
|
||||||
Me.GridViewData.Name = "GridViewData"
|
Me.GridViewData.Name = "GridViewData"
|
||||||
Me.GridViewData.OptionsView.ShowAutoFilterRow = True
|
Me.GridViewData.OptionsView.ShowAutoFilterRow = True
|
||||||
@ -817,8 +873,8 @@ Partial Class frmMain
|
|||||||
Me.XtraTabPage3.Controls.Add(Me.Label1)
|
Me.XtraTabPage3.Controls.Add(Me.Label1)
|
||||||
Me.XtraTabPage3.Controls.Add(Me.Button1)
|
Me.XtraTabPage3.Controls.Add(Me.Button1)
|
||||||
Me.XtraTabPage3.Controls.Add(Me.txtEnvID)
|
Me.XtraTabPage3.Controls.Add(Me.txtEnvID)
|
||||||
Me.XtraTabPage3.Name = "XtraTabPage3"
|
|
||||||
resources.ApplyResources(Me.XtraTabPage3, "XtraTabPage3")
|
resources.ApplyResources(Me.XtraTabPage3, "XtraTabPage3")
|
||||||
|
Me.XtraTabPage3.Name = "XtraTabPage3"
|
||||||
'
|
'
|
||||||
'Label1
|
'Label1
|
||||||
'
|
'
|
||||||
@ -848,22 +904,6 @@ Partial Class frmMain
|
|||||||
'
|
'
|
||||||
Me.XtraSaveFileDialog1.FileName = "XtraSaveFileDialog1"
|
Me.XtraSaveFileDialog1.FileName = "XtraSaveFileDialog1"
|
||||||
'
|
'
|
||||||
'BarButtonItem2
|
|
||||||
'
|
|
||||||
resources.ApplyResources(Me.BarButtonItem2, "BarButtonItem2")
|
|
||||||
Me.BarButtonItem2.Id = 21
|
|
||||||
Me.BarButtonItem2.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.BarButtonItem2.Name = "BarButtonItem2"
|
|
||||||
'
|
|
||||||
'RibbonPageGroupReceiver
|
|
||||||
'
|
|
||||||
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.bbtnitm_ResendInvitation)
|
|
||||||
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.BarButtonItem2)
|
|
||||||
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.bbtnitm2Faktor)
|
|
||||||
Me.RibbonPageGroupReceiver.ItemLinks.Add(Me.btnContactReceiver)
|
|
||||||
Me.RibbonPageGroupReceiver.Name = "RibbonPageGroupReceiver"
|
|
||||||
resources.ApplyResources(Me.RibbonPageGroupReceiver, "RibbonPageGroupReceiver")
|
|
||||||
'
|
|
||||||
'frmMain
|
'frmMain
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me, "$this")
|
resources.ApplyResources(Me, "$this")
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -269,6 +269,7 @@ Public Class frmMain
|
|||||||
|
|
||||||
Private Sub ViewEnvelopes_FocusedRowChanged(sender As Object, e As DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs) Handles ViewEnvelopes.FocusedRowChanged
|
Private Sub ViewEnvelopes_FocusedRowChanged(sender As Object, e As DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs) Handles ViewEnvelopes.FocusedRowChanged
|
||||||
If ViewEnvelopes.FocusedRowHandle < 0 Then
|
If ViewEnvelopes.FocusedRowHandle < 0 Then
|
||||||
|
RibbonPageGroupReceiver.Enabled = False
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@ -795,10 +796,13 @@ Public Class frmMain
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub bbtnitm2Faktor_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles bbtnitm2Faktor.ItemClick
|
Private Sub bbtnitm2Faktor_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles bbtnitm2Faktor.ItemClick
|
||||||
|
Show_MF_Info
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
Private Sub Show_MF_Info()
|
||||||
If ViewEnvelopes.FocusedRowHandle < 0 Then
|
If ViewEnvelopes.FocusedRowHandle < 0 Then
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Dim oEnvelope As Envelope = ViewEnvelopes.GetRow(ViewEnvelopes.FocusedRowHandle)
|
Dim oEnvelope As Envelope = ViewEnvelopes.GetRow(ViewEnvelopes.FocusedRowHandle)
|
||||||
Dim oView As GridView = GridEnvelopes.FocusedView
|
Dim oView As GridView = GridEnvelopes.FocusedView
|
||||||
If oView.Name = ViewReceivers.Name Then
|
If oView.Name = ViewReceivers.Name Then
|
||||||
@ -821,7 +825,6 @@ Public Class frmMain
|
|||||||
MsgBox(Resources.Envelope.Please_select_a_recipient_from_the_Recipients_tab, MsgBoxStyle.Information, Text)
|
MsgBox(Resources.Envelope.Please_select_a_recipient_from_the_Recipients_tab, MsgBoxStyle.Information, Text)
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
||||||
If txtEnvID.Text = String.Empty Then
|
If txtEnvID.Text = String.Empty Then
|
||||||
Exit Sub
|
Exit Sub
|
||||||
@ -922,4 +925,49 @@ Public Class frmMain
|
|||||||
Dim oGridlayoutFullFilename = System.IO.Path.Combine(Application.UserAppDataPath(), Filename)
|
Dim oGridlayoutFullFilename = System.IO.Path.Combine(Application.UserAppDataPath(), Filename)
|
||||||
Return oGridlayoutFullFilename
|
Return oGridlayoutFullFilename
|
||||||
End Function
|
End Function
|
||||||
|
Private Sub ViewReceivers_FocusedRowChanged(sender As Object, e As Views.Base.FocusedRowChangedEventArgs) Handles ViewReceivers.FocusedRowChanged
|
||||||
|
|
||||||
|
Dim detailView As GridView = TryCast(sender, GridView)
|
||||||
|
|
||||||
|
' Sicherstellen, dass die View gültig ist
|
||||||
|
If detailView Is Nothing Then
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
' Prüfen, ob der RowHandle gültig ist
|
||||||
|
If Not detailView.IsValidRowHandle(e.FocusedRowHandle) Then
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
|
||||||
|
Dim row = detailView.GetRow(e.FocusedRowHandle)
|
||||||
|
|
||||||
|
If row Is Nothing Then
|
||||||
|
Exit Sub
|
||||||
|
End If
|
||||||
|
|
||||||
|
Dim oReceiver As Receiver = CType(row, Receiver)
|
||||||
|
'Dim oEnvelopeTitle As String = Net.WebUtility.UrlEncode(oEnvelope.Title)
|
||||||
|
|
||||||
|
If Not IsNothing(oReceiver) Then
|
||||||
|
Dim oDT As DataTable = DB_DD_ECM.GetDatatable($"SELECT * FROM TBSIG_RECEIVER WHERE EMAIL_ADDRESS = '{oReceiver.EmailAddress}'")
|
||||||
|
If Not IsNothing(oDT) Then
|
||||||
|
If oDT.Rows.Count = 1 Then
|
||||||
|
RibbonPageGroupReceiver.Enabled = True
|
||||||
|
Dim oTFA_REG_DL = oDT.Rows(0).Item("TFA_REG_DEADLINE")
|
||||||
|
Dim oTOTP = oDT.Rows(0).Item("TOTP_SECRET_KEY")
|
||||||
|
If Not IsDBNull(oTOTP) And Not IsDBNull(oTFA_REG_DL) Then
|
||||||
|
bbtnitm2Faktor.Enabled = True
|
||||||
|
Else
|
||||||
|
bbtnitm2Faktor.Enabled = False
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
RibbonPageGroupReceiver.Enabled = False
|
||||||
|
End If
|
||||||
|
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
Loading…
x
Reference in New Issue
Block a user