Zooflow: Make PM Path configurable
This commit is contained in:
@@ -44,4 +44,31 @@ Public Class frmAdmin_User
|
||||
Return False
|
||||
End Try
|
||||
End Function
|
||||
Public Function SaveData() As Boolean
|
||||
Try
|
||||
TBDD_USERBindingSource.EndEdit()
|
||||
|
||||
If DSDD_Stammdaten.TBDD_USER.GetChanges() IsNot Nothing Then
|
||||
HasChanges = True
|
||||
|
||||
If IsInsert Then
|
||||
txtAddedWho.EditValue = My.Application.User.UserName
|
||||
Else
|
||||
txtChangedWho.EditValue = My.Application.User.UserName
|
||||
End If
|
||||
|
||||
TBDD_USERBindingSource.EndEdit()
|
||||
TBDD_USERTableAdapter.Update(DSDD_Stammdaten.TBDD_USER)
|
||||
End If
|
||||
|
||||
Return True
|
||||
Catch ex As Exception
|
||||
ErrorHandler.ShowErrorMessage(ex, "DeleteData")
|
||||
Return False
|
||||
End Try
|
||||
End Function
|
||||
|
||||
Private Sub BarButtonItem1_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem1.ItemClick
|
||||
|
||||
End Sub
|
||||
End Class
|
||||
Reference in New Issue
Block a user