use AlertControl for search popup, show clipboard contents in popup,

This commit is contained in:
Jonathan Jenne
2021-03-25 13:59:59 +01:00
parent 8cce81b19a
commit 286b61e687
9 changed files with 112 additions and 59 deletions

View File

@@ -22,7 +22,7 @@ Public Class frmConfig_Basic
'DialogResult = Windows.Forms.DialogResult.OK
Dim result As MsgBoxResult
Dim msg = "Die Verbindung wurde erfolgreich aufgebaut!" & vbNewLine & "Möchten Sie diese Verbindung nun in der Anwendung speichern?"
If USER_LANGUAGE <> "de-DE" Then
If USER_LANGUAGE <> LANGUAGE_GERMAN Then
msg = "Connection was successfully opened!" & vbNewLine & "Would You like to save it?"
End If
result = MessageBox.Show(msg, "Database-Connection", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
@@ -196,7 +196,7 @@ Public Class frmConfig_Basic
End If
Dim msg = "Die Änderung des Hotkeys war erfolgreich." & vbNewLine & "Da es sich um einen global Hotkey handelt muss die Anwendung neugestartet werden!"
If USER_LANGUAGE <> "de-DE" Then
If USER_LANGUAGE <> LANGUAGE_GERMAN Then
msg = "The change of your desired hotkey was successfull." & vbNewLine & "For using it the application must be restarted now!"
End If
MsgBox(msg, MsgBoxStyle.Information)