From c47a7fc769c9e3a43c6a29a786152ffc781ebc2e Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Tue, 10 Apr 2018 14:54:20 +0200 Subject: [PATCH] jj: Add default value for Profile -> ADDED_WHEN --- app/DD_PM_WINDREAM/frmProfileDesigner.vb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/DD_PM_WINDREAM/frmProfileDesigner.vb b/app/DD_PM_WINDREAM/frmProfileDesigner.vb index 3cbf288..01e813a 100644 --- a/app/DD_PM_WINDREAM/frmProfileDesigner.vb +++ b/app/DD_PM_WINDREAM/frmProfileDesigner.vb @@ -185,6 +185,7 @@ Public Class frmProfileDesigner Private Sub TBPM_PROFILEBindingSource_AddingNew(sender As Object, e As System.ComponentModel.AddingNewEventArgs) Handles TBPM_PROFILEBindingSource.AddingNew DD_DMSLiteDataSet.TBPM_PROFILE.ADDED_WHOColumn.DefaultValue = Environment.UserName + DD_DMSLiteDataSet.TBPM_PROFILE.ADDED_WHENColumn.DefaultValue = Date.Now DD_DMSLiteDataSet.TBPM_PROFILE.TYPEColumn.DefaultValue = 1 End Sub