Bugfix Kundensuche, MDMAuswertung

This commit is contained in:
2023-12-04 09:32:12 +01:00
parent 8f394d11fd
commit 2313ccf586
8 changed files with 853 additions and 82 deletions

View File

@@ -3019,23 +3019,4 @@ Public Class usrCntlKundenuebersicht
Dim webAddress As String = "https://wiki.verag.ag/software/aviso/howtos/Creditsafe"
Process.Start(webAddress)
End Sub
Private Sub rtbAbf_Besonderheiten_VScroll(sender As Object, e As EventArgs) Handles rtbAbf_Besonderheiten.HScroll, rtbAbf_Besonderheiten.VScroll
With rtbAbf_Besonderheiten
.ReadOnly = True
.Text = .Text & vbCrLf
.SelectionStart = .Text.Length
.ScrollToCaret()
End With
End Sub
Private Sub rtbAbf_Besonderheiten_TextChanged(sender As Object, e As EventArgs) Handles rtbAbf_Besonderheiten.TextChanged
With rtbAbf_Besonderheiten
.ReadOnly = True
.Text = .Text & vbCrLf
.SelectionStart = .Text.Length
.ScrollToCaret()
End With
End Sub
End Class