Compare commits
4 Commits
f42ef8107c
...
cb2e3eb955
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cb2e3eb955 | ||
|
|
538b6d4bcd | ||
|
|
70e4842a39 | ||
|
|
c45939b89b |
@@ -810,6 +810,9 @@
|
||||
b3ciIC8+DQogIDwvZz4NCjwvc3ZnPgs=
|
||||
</value>
|
||||
</data>
|
||||
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
|
||||
<value>CenterScreen</value>
|
||||
</data>
|
||||
<data name="$this.Text" xml:space="preserve">
|
||||
<value>Sign Flow - Umschlag-Editor</value>
|
||||
</data>
|
||||
|
||||
@@ -471,6 +471,9 @@
|
||||
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>1125, 658</value>
|
||||
</data>
|
||||
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
|
||||
<value>CenterScreen</value>
|
||||
</data>
|
||||
<data name="$this.Text" xml:space="preserve">
|
||||
<value>Sign Flow - Signatur-Editor</value>
|
||||
</data>
|
||||
|
||||
@@ -234,7 +234,7 @@ Partial Public Class frmFieldEditor
|
||||
Exit Sub
|
||||
End If
|
||||
|
||||
If MsgBox("Wollen Sie die Annotation löschen?", MsgBoxStyle.YesNo Or MsgBoxStyle.Question, Text) = DialogResult.Yes Then
|
||||
If MsgBox("Wollen Sie die Signatur löschen?", MsgBoxStyle.YesNo Or MsgBoxStyle.Question, Text) = DialogResult.Yes Then
|
||||
Dim oAnnotation = GDViewer.GetAnnotationFromIdx(oSelected)
|
||||
Dim oElement = Controller.GetElement(oAnnotation)
|
||||
|
||||
|
||||
@@ -91,20 +91,23 @@ Public Class frmMain
|
||||
txtRefreshLabel.Caption = String.Format(txtRefreshLabel.Tag, Now)
|
||||
End Sub
|
||||
|
||||
|
||||
Private Sub LoadEnvelopes()
|
||||
GridBuilder = New GridBuilder(ViewEnvelopes)
|
||||
GridBuilder.SetDefaults(ViewEnvelopes)
|
||||
GridBuilder.SetReadOnlyOptions(ViewEnvelopes)
|
||||
|
||||
GridBuilder.SetReadOnlyOptions(ViewHistory)
|
||||
GridBuilder.SetDefaults(ViewHistory)
|
||||
|
||||
GridEnvelopes.DataSource = Controller.ListEnvelopes()
|
||||
End Sub
|
||||
|
||||
Private Sub LoadCompletedEnvelopes()
|
||||
GridBuilder = New GridBuilder(ViewCompleted)
|
||||
GridBuilder.SetDefaults(ViewCompleted)
|
||||
GridBuilder.SetReadOnlyOptions(ViewCompleted)
|
||||
|
||||
GridBuilder.SetReadOnlyOptions(ViewHistoryCompleted)
|
||||
GridBuilder.SetDefaults(ViewHistoryCompleted)
|
||||
|
||||
GridCompleted.DataSource = Controller.ListCompleted()
|
||||
End Sub
|
||||
|
||||
|
||||
Reference in New Issue
Block a user