This commit is contained in:
Digital Data - Marlon Schreiber
2017-10-16 11:06:35 +02:00
parent 5a345bd658
commit 76796df71f
3 changed files with 7 additions and 2 deletions

View File

@@ -113,7 +113,7 @@ Public Class frmRecOrgConfig_Basic
'End If
Dim upd = String.Format("UPDATE TBPMO_KONFIGURATION SET WIKI_STRING = '{0}', CHANGED_WHO = '{1}', WD_UNICODE = {2} WHERE GUID = 1", Me.txtWiki.Text, USER_USERNAME, wduni)
If ClassDatabase.Execute_non_Query(upd, True) = True Then
If ClassDatabase.Execute_non_Query(upd) = True Then
lblSaveresult.Visible = True
Else
lblSaveresult.Visible = False
@@ -237,4 +237,7 @@ Public Class frmRecOrgConfig_Basic
End If
End Sub
Private Sub txtWiki_VisibleChanged(sender As Object, e As EventArgs) Handles txtWiki.VisibleChanged
End Sub
End Class