Anpassungen nach email

This commit is contained in:
Digital Data - Marlon Schreiber
2018-04-23 16:00:44 +02:00
parent d8776a8323
commit 8c20448d95
13 changed files with 920 additions and 891 deletions

View File

@@ -401,6 +401,8 @@ Public Class frmMain
btnAddPaket.Enabled = True
tsinfolabel.Text = "Vorgang abgebrochen"
tsinfolabel.Visible = True
ListBox1.ResetText()
txtFreitext.Text = ""
Catch ex As Exception
ShowError("Fehler in Abbruch Paket: " & vbNewLine & ex.Message)
End Try
@@ -643,8 +645,11 @@ Public Class frmMain
btnAddPaket.Enabled = True
tsinfolabel.Text = "Vorgang abgebrochen"
tsinfolabel.Visible = True
ListBox1.ResetText()
frmPrintOptions.ShowDialog()
GridControlLHM.DataSource = Nothing
GridViewLHM.Columns.Clear()
End If
End If
Catch ex As Exception
@@ -802,4 +807,10 @@ Public Class frmMain
txtFreitext.Text = ""
End If
End Sub
Private Sub txtFreitext_TextChanged(sender As Object, e As EventArgs) Handles txtFreitext.TextChanged
If txtFreitext.Text.Length >= 70 Then
MsgBox("Achtung: Maximale Anzahl Textzeichen erreicht!", MsgBoxStyle.Critical)
End If
End Sub
End Class