This commit is contained in:
2024-08-08 13:43:59 +02:00
parent c409a5aa91
commit 3271723f41
6 changed files with 121 additions and 81 deletions

View File

@@ -3184,5 +3184,13 @@ Public Class usrCntlKundenuebersicht
Me.Cursor = Cursors.Default
End Sub
Private Sub Button15_Click_2(sender As Object, e As EventArgs) Handles Button15.Click
If cboFirmaFMZOLL._value = "" Then
MsgBox("Bitte Firma auswählen!")
Else
Dim KontoList As New List(Of String)
KontoList.Add(KUNDE.KundenNrZentrale)
frmBU_Mahnlauf.doZahlungserinnerung(Me.FindForm, "OP", KontoList, cboFirmaFMZOLL._value, "")
End If
End Sub
End Class