MS_07122015
This commit is contained in:
@@ -105,30 +105,30 @@
|
|||||||
HEIGHT = control.Height
|
HEIGHT = control.Height
|
||||||
CONTROL_TEXT = control.Text
|
CONTROL_TEXT = control.Text
|
||||||
|
|
||||||
Dim TAB_INDEX
|
'Dim TAB_INDEX
|
||||||
SQL = "SELECT MAX(TAB_INDEX) FROM TBPMO_CONTROL_SCREEN WHERE CONTROL_ID IN (SELECT GUID FROM TBPMO_CONTROL WHERE FORM_ID = " & CURRENT_FORM_ID & ")"
|
'SQL = "SELECT MAX(TAB_INDEX) FROM TBPMO_CONTROL_SCREEN WHERE CONTROL_ID IN (SELECT GUID FROM TBPMO_CONTROL WHERE FORM_ID = " & CURRENT_FORM_ID & ")"
|
||||||
TAB_INDEX = ClassDatabase.Execute_Scalar(SQL)
|
'TAB_INDEX = ClassDatabase.Execute_Scalar(SQL)
|
||||||
If Not TAB_INDEX Is Nothing Then
|
'If Not TAB_INDEX Is Nothing Then
|
||||||
If IsDBNull(TAB_INDEX) Then
|
' If IsDBNull(TAB_INDEX) Then
|
||||||
TAB_INDEX = 1
|
' TAB_INDEX = 1
|
||||||
Else
|
' Else
|
||||||
TAB_INDEX = CInt(TAB_INDEX) + 1
|
' TAB_INDEX = CInt(TAB_INDEX) + 1
|
||||||
End If
|
' End If
|
||||||
|
|
||||||
Else
|
'Else
|
||||||
TAB_INDEX = 1
|
' TAB_INDEX = 1
|
||||||
End If
|
'End If
|
||||||
|
|
||||||
SQL = "INSERT TBPMO_CONTROL_SCREEN (CONTROL_ID, SCREEN_ID, CONTROL_TEXT, X_LOC, Y_LOC, HEIGHT, WIDTH, TAB_INDEX) VALUES (" & guid & ", 1, '" & CONTROL_TEXT & "', " & X_LOC & ", " & Y_LOC & ", " & HEIGHT & ", " & WIDTH & ", " & TAB_INDEX & ")"
|
SQL = "INSERT TBPMO_CONTROL_SCREEN (CONTROL_ID, SCREEN_ID, CONTROL_TEXT, X_LOC, Y_LOC, HEIGHT, WIDTH) VALUES (" & guid & ", 1, '" & CONTROL_TEXT & "', " & X_LOC & ", " & Y_LOC & ", " & HEIGHT & ", " & WIDTH & ")"
|
||||||
|
|
||||||
If ClassDatabase.Execute_non_Query(SQL) Then
|
If ClassDatabase.Execute_non_Query(SQL, True) Then
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
Throw New Exception()
|
Throw New Exception()
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Fehler beim Einfügen der Ansichtseigenschaften des Elements:" + vbNewLine + ex.Message, MsgBoxStyle.Critical)
|
MsgBox("Unexpected Error in InsertControlScreen (Adding ViewProperties:" + vbNewLine + ex.Message, MsgBoxStyle.Critical)
|
||||||
Return False
|
Return False
|
||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|||||||
@@ -265,42 +265,47 @@ Public Class ClassControlCommandsUI
|
|||||||
|
|
||||||
|
|
||||||
Function SaveRecord(RecordID As Integer, FormID As Integer, Optional foreignRecordID As Integer = 0) As String
|
Function SaveRecord(RecordID As Integer, FormID As Integer, Optional foreignRecordID As Integer = 0) As String
|
||||||
Dim ADDED_WHO As String = Environment.UserName
|
Try
|
||||||
Dim RECORD_ID As Integer
|
Dim ADDED_WHO As String = Environment.UserName
|
||||||
|
Dim RECORD_ID As Integer
|
||||||
|
|
||||||
If IsInsert Then
|
If IsInsert Then
|
||||||
If LogErrorsOnly = False Then ClassLogger.Add(">> (SaveRecord) Insert", False)
|
If LogErrorsOnly = False Then ClassLogger.Add(">> (SaveRecord) Insert", False)
|
||||||
|
|
||||||
' Den Record erstellen
|
' Den Record erstellen
|
||||||
If CreateRecord(FormID) = False Then
|
If CreateRecord(FormID) = False Then
|
||||||
|
IsInsert = False
|
||||||
|
Return "ERROR - INSERT RECORD NOT SUCCESSFUL"
|
||||||
|
End If
|
||||||
|
|
||||||
|
' Die eben erstellte RecordID holen
|
||||||
|
RECORD_ID = GetLastRecord()
|
||||||
|
|
||||||
|
' Wenn gegeben, foreignrecordID mit Record verknüpfen
|
||||||
|
If foreignRecordID > 0 Then
|
||||||
|
If LogErrorsOnly = False Then ClassLogger.Add(">> foreignRecordID: " & foreignRecordID & "; Record-ID: " & RECORD_ID, False)
|
||||||
|
ConnectRecord(foreignRecordID, RECORD_ID)
|
||||||
|
End If
|
||||||
|
|
||||||
|
' Für angegebene Control Typen den Wert speichern
|
||||||
|
InsertAllControls(FormID, RECORD_ID, _CtrlBuilder.AllControls)
|
||||||
|
|
||||||
|
' Status zurücksetzen
|
||||||
IsInsert = False
|
IsInsert = False
|
||||||
Return "ERROR - INSERT RECORD NOT SUCCESSFUL"
|
|
||||||
|
NEW_RECORD_ID = RECORD_ID
|
||||||
|
CURRENT_RECORD_ID = RECORD_ID
|
||||||
|
Return "Neuer Datensatz eingefügt - " & Now
|
||||||
|
ElseIf IsInsert = False Then
|
||||||
|
If LogErrorsOnly = False Then ClassLogger.Add(">> (SaveRecord) Update RecordID: " & RECORD_ID, False)
|
||||||
|
UpdateAllControls(FormID, RecordID, _CtrlBuilder.AllControls)
|
||||||
|
|
||||||
|
Return "Datensatz aktualisiert - " & Now
|
||||||
End If
|
End If
|
||||||
|
Catch ex As Exception
|
||||||
|
MsgBox("Unexpected Error in SaveRecord: " & ex.Message, MsgBoxStyle.Critical)
|
||||||
|
End Try
|
||||||
|
|
||||||
' Die eben erstellte RecordID holen
|
|
||||||
RECORD_ID = GetLastRecord()
|
|
||||||
|
|
||||||
' Wenn gegeben, foreignrecordID mit Record verknüpfen
|
|
||||||
If foreignRecordID > 0 Then
|
|
||||||
If LogErrorsOnly = False Then ClassLogger.Add(">> foreignRecordID: " & foreignRecordID & "; Record-ID: " & RECORD_ID, False)
|
|
||||||
ConnectRecord(foreignRecordID, RECORD_ID)
|
|
||||||
End If
|
|
||||||
|
|
||||||
' Für angegebene Control Typen den Wert speichern
|
|
||||||
InsertAllControls(FormID, RECORD_ID, _CtrlBuilder.AllControls)
|
|
||||||
|
|
||||||
' Status zurücksetzen
|
|
||||||
IsInsert = False
|
|
||||||
|
|
||||||
NEW_RECORD_ID = RECORD_ID
|
|
||||||
CURRENT_RECORD_ID = RECORD_ID
|
|
||||||
Return "Neuer Datensatz eingefügt - " & Now
|
|
||||||
ElseIf IsInsert = False Then
|
|
||||||
If LogErrorsOnly = False Then ClassLogger.Add(">> (SaveRecord) Update RecordID: " & RECORD_ID, False)
|
|
||||||
UpdateAllControls(FormID, RecordID, _CtrlBuilder.AllControls)
|
|
||||||
|
|
||||||
Return "Datensatz aktualisiert - " & Now
|
|
||||||
End If
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Private Sub InsertAllControls(FormID As Integer, RecordID As Integer, controls As Control.ControlCollection)
|
Private Sub InsertAllControls(FormID As Integer, RecordID As Integer, controls As Control.ControlCollection)
|
||||||
@@ -444,54 +449,64 @@ Public Class ClassControlCommandsUI
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub UpdateAllControls(FormID As Integer, RecordID As Integer, controls As Control.ControlCollection)
|
Private Sub UpdateAllControls(FormID As Integer, RecordID As Integer, controls As Control.ControlCollection)
|
||||||
For Each ctrl As Control In controls
|
Try
|
||||||
Dim CONTROL_ID As Integer = GetControlID_for_RecordID(ctrl.Name, RecordID)
|
For Each ctrl As Control In controls
|
||||||
Dim CONTROL_VALUE As String = Nothing
|
Dim CONTROL_ID As Integer = GetControlID_for_RecordID(ctrl.Name, RecordID)
|
||||||
|
If LogErrorsOnly = False Then ClassLogger.Add(">> CONTROL_ID: " & CONTROL_ID, False)
|
||||||
|
Dim CONTROL_VALUE As String = Nothing
|
||||||
|
|
||||||
If TypeOf ctrl Is PictureBox Then
|
If TypeOf ctrl Is PictureBox Then
|
||||||
Dim id As Integer = GetControlID_for_Name(ctrl.Name, FormID)
|
Dim id As Integer = GetControlID_for_Name(ctrl.Name, FormID)
|
||||||
UpsertImage(id, RecordID, ctrl.BackgroundImage)
|
UpsertImage(id, RecordID, ctrl.BackgroundImage)
|
||||||
Continue For
|
Continue For
|
||||||
End If
|
|
||||||
|
|
||||||
' Neues Control
|
|
||||||
If CONTROL_ID = -1 Then
|
|
||||||
CONTROL_VALUE = GetControlValue(ctrl)
|
|
||||||
|
|
||||||
' Kein Bekanntes Control oder Groupbox
|
|
||||||
If IsNothing(CONTROL_VALUE) Then
|
|
||||||
If TypeOf ctrl Is GroupBox Then
|
|
||||||
Dim ctrls As Control.ControlCollection = DirectCast(ctrl, GroupBox).Controls
|
|
||||||
|
|
||||||
UpdateAllControls(FormID, RecordID, ctrls)
|
|
||||||
End If
|
|
||||||
Else
|
|
||||||
InsertControlValue(ctrl.Name, RecordID, CONTROL_VALUE)
|
|
||||||
End If
|
End If
|
||||||
Else ' Control Updaten
|
|
||||||
CONTROL_VALUE = GetControlValue(ctrl)
|
|
||||||
' Kein Bekanntes Control oder Groupbox
|
|
||||||
If IsNothing(CONTROL_VALUE) Then
|
|
||||||
If TypeOf ctrl Is GroupBox Then
|
|
||||||
Dim ctrls As Control.ControlCollection = DirectCast(ctrl, GroupBox).Controls
|
|
||||||
|
|
||||||
UpdateAllControls(FormID, RecordID, ctrls)
|
' Neues Control
|
||||||
|
If CONTROL_ID = -1 Then
|
||||||
|
CONTROL_VALUE = GetControlValue(ctrl)
|
||||||
|
|
||||||
|
' Kein Bekanntes Control oder Groupbox
|
||||||
|
If IsNothing(CONTROL_VALUE) Then
|
||||||
|
If TypeOf ctrl Is GroupBox Then
|
||||||
|
Dim ctrls As Control.ControlCollection = DirectCast(ctrl, GroupBox).Controls
|
||||||
|
|
||||||
|
UpdateAllControls(FormID, RecordID, ctrls)
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
Dim ctrlid As Integer = GetControlID_for_Name(ctrl.Name, FormID)
|
||||||
|
If LogErrorsOnly = False Then ClassLogger.Add(">> InsertControlValue: " & CONTROL_ID & "|" & RecordID & "|" & CONTROL_VALUE, False)
|
||||||
|
InsertControlValue(ctrlid, RecordID, CONTROL_VALUE)
|
||||||
|
End If
|
||||||
|
Else ' Control Updaten
|
||||||
|
CONTROL_VALUE = GetControlValue(ctrl)
|
||||||
|
' Kein Bekanntes Control oder Groupbox
|
||||||
|
If IsNothing(CONTROL_VALUE) Then
|
||||||
|
If TypeOf ctrl Is GroupBox Then
|
||||||
|
Dim ctrls As Control.ControlCollection = DirectCast(ctrl, GroupBox).Controls
|
||||||
|
UpdateAllControls(FormID, RecordID, ctrls)
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
UpdateControlValue(CONTROL_ID, RecordID, CONTROL_VALUE)
|
||||||
End If
|
End If
|
||||||
Else
|
|
||||||
UpdateControlValue(CONTROL_ID, RecordID, CONTROL_VALUE)
|
|
||||||
End If
|
End If
|
||||||
End If
|
Next
|
||||||
Next
|
Catch ex As Exception
|
||||||
|
MsgBox("Unexpected Error in UpdateAllControls: " & vbNewLine & ex.Message, MsgBoxStyle.Critical)
|
||||||
|
End Try
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Function GetControlValue(ctrl As Control) As String
|
Function GetControlValue(ctrl As Control) As String
|
||||||
Dim type = ctrl.GetType().Name
|
Dim type = ctrl.GetType().Name
|
||||||
Dim CONTROL_ID As Integer = GetControlID_for_RecordID(ctrl.Name, CURRENT_RECORD_ID)
|
Dim CONTROL_ID As Integer = GetControlID_for_RecordID(ctrl.Name, CURRENT_RECORD_ID)
|
||||||
|
If LogErrorsOnly = False Then ClassLogger.Add(">> GetControlValue CONTROL_ID: " & CONTROL_ID, False)
|
||||||
|
Dim CONTROL_VALUE As String = Nothing
|
||||||
|
If LogErrorsOnly = False Then ClassLogger.Add(">> type = " & type.ToString, False)
|
||||||
Select Case type
|
Select Case type
|
||||||
Case "TextBox"
|
Case "TextBox"
|
||||||
Return DirectCast(ctrl, TextBox).Text
|
Return DirectCast(ctrl, TextBox).Text
|
||||||
Case "ComboBox"
|
Case "ComboBox"
|
||||||
|
If LogErrorsOnly = False Then ClassLogger.Add(">> Return Value: " & DirectCast(ctrl, ComboBox).Text, False)
|
||||||
Return DirectCast(ctrl, ComboBox).Text
|
Return DirectCast(ctrl, ComboBox).Text
|
||||||
Case "CheckBox"
|
Case "CheckBox"
|
||||||
Return DirectCast(ctrl, CheckBox).Checked.ToString()
|
Return DirectCast(ctrl, CheckBox).Checked.ToString()
|
||||||
|
|||||||
@@ -73,15 +73,42 @@ Public Class ClassControlValues
|
|||||||
Dim radio As RadioButton = DirectCast(control, RadioButton)
|
Dim radio As RadioButton = DirectCast(control, RadioButton)
|
||||||
radio.Checked = CBool(result)
|
radio.Checked = CBool(result)
|
||||||
Case 3 ' ComboBox
|
Case 3 ' ComboBox
|
||||||
Dim combobox As ComboBox = DirectCast(control, ComboBox)
|
Dim cmbbox As ComboBox = DirectCast(control, System.Windows.Forms.ComboBox)
|
||||||
'combobox.DataSource = Nothing
|
cmbbox.Text = result
|
||||||
'combobox.Text = result
|
'If LogErrorsOnly = False Then ClassLogger.Add(">> control ComboBox", False)
|
||||||
If combobox.SelectedIndex = -1 Then
|
'Dim cmbSql As String = "SELECT SQL_COMMAND_1 FROM TBPMO_CONTROL WHERE GUID = " & ControlID
|
||||||
combobox.DataSource = Nothing
|
'cmbSql = ClassDatabase.Execute_Scalar(cmbSql)
|
||||||
combobox.Text = result
|
'If Not (cmbSql Is Nothing Or cmbSql = String.Empty) Then
|
||||||
Else
|
' If cmbSql.ToString.Contains("@") Then
|
||||||
combobox.SelectedIndex = combobox.FindStringExact(result)
|
' cmbSql = cmbSql.ToString.Replace("@RECORDID", CURRENT_RECORD_ID)
|
||||||
End If
|
' cmbSql = cmbSql.ToString.Replace("@RECORD_ID", CURRENT_RECORD_ID)
|
||||||
|
' cmbSql = cmbSql.ToString.Replace("@PARENTRECORD_ID", CURRENT_PARENTID)
|
||||||
|
' If LogErrorsOnly = False Then ClassLogger.Add(">> SQL Combobox: " & cmbSql, False)
|
||||||
|
' End If
|
||||||
|
' If LogErrorsOnly = False Then ClassLogger.Add(">> SQL Combobox: " & cmbSql, False)
|
||||||
|
|
||||||
|
' 'SQL-Command vorhanden also Ausführen des SQL
|
||||||
|
' Dim DT_ComboBox As DataTable = ClassDatabase.Return_Datatable(cmbSql, "LoadControlValues: Combobox")
|
||||||
|
' If DT_ComboBox Is Nothing = False Then
|
||||||
|
' cmbbox.DataSource = DT_ComboBox
|
||||||
|
' Select Case DT_ComboBox.Columns.Count
|
||||||
|
' Case 2
|
||||||
|
' cmbbox.DisplayMember = DT_ComboBox.Columns(1).ColumnName
|
||||||
|
' cmbbox.ValueMember = DT_ComboBox.Columns(0).ColumnName
|
||||||
|
' Case 1
|
||||||
|
' cmbbox.DisplayMember = DT_ComboBox.Columns(0).ColumnName
|
||||||
|
' cmbbox.ValueMember = DT_ComboBox.Columns(0).ColumnName
|
||||||
|
' End Select
|
||||||
|
|
||||||
|
' End If
|
||||||
|
'End If
|
||||||
|
''combobox.DataSource = Nothing
|
||||||
|
'If cmbbox.SelectedIndex = -1 Then
|
||||||
|
' cmbbox.DataSource = Nothing
|
||||||
|
' cmbbox.Text = result
|
||||||
|
'Else
|
||||||
|
' cmbbox.SelectedIndex = cmbbox.FindStringExact(result)
|
||||||
|
'End If
|
||||||
Case 4 'DateTimePicker
|
Case 4 'DateTimePicker
|
||||||
Dim datepicker As DevExpress.XtraEditors.DateEdit = DirectCast(control, DevExpress.XtraEditors.DateEdit)
|
Dim datepicker As DevExpress.XtraEditors.DateEdit = DirectCast(control, DevExpress.XtraEditors.DateEdit)
|
||||||
|
|
||||||
@@ -122,7 +149,9 @@ Public Class ClassControlValues
|
|||||||
End If
|
End If
|
||||||
If LogErrorsOnly = False Then ClassLogger.Add(">> CONTROL_ID:" & CONTROL_ID, False)
|
If LogErrorsOnly = False Then ClassLogger.Add(">> CONTROL_ID:" & CONTROL_ID, False)
|
||||||
ClearControlValue(control)
|
ClearControlValue(control)
|
||||||
|
If TypeOf control Is ComboBox Then
|
||||||
|
LoadControlValues(RecordID, FormID, DirectCast(control, ComboBox).Controls)
|
||||||
|
End If
|
||||||
If TypeOf control Is GroupBox Then
|
If TypeOf control Is GroupBox Then
|
||||||
LoadControlValues(RecordID, FormID, DirectCast(control, GroupBox).Controls)
|
LoadControlValues(RecordID, FormID, DirectCast(control, GroupBox).Controls)
|
||||||
End If
|
End If
|
||||||
@@ -130,7 +159,6 @@ Public Class ClassControlValues
|
|||||||
If TypeOf control Is PictureBox Then
|
If TypeOf control Is PictureBox Then
|
||||||
LoadImage(RecordID, CONTROL_ID, control)
|
LoadImage(RecordID, CONTROL_ID, control)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'EINE CheckedListBoxControl
|
'EINE CheckedListBoxControl
|
||||||
If TypeOf control Is DevExpress.XtraEditors.CheckedListBoxControl Then
|
If TypeOf control Is DevExpress.XtraEditors.CheckedListBoxControl Then
|
||||||
If LogErrorsOnly = False Then ClassLogger.Add(">> control DevExpress.XtraEditors.CheckedListBoxControl", False)
|
If LogErrorsOnly = False Then ClassLogger.Add(">> control DevExpress.XtraEditors.CheckedListBoxControl", False)
|
||||||
@@ -259,16 +287,23 @@ Public Class ClassControlValues
|
|||||||
|
|
||||||
Dim SQL As String = String.Format("SELECT SQL_COMMAND_1 FROM TBPMO_CONTROL WHERE FORM_ID = {0} AND NAME = '{1}'", CURRENT_FORM_ID, C.Name)
|
Dim SQL As String = String.Format("SELECT SQL_COMMAND_1 FROM TBPMO_CONTROL WHERE FORM_ID = {0} AND NAME = '{1}'", CURRENT_FORM_ID, C.Name)
|
||||||
Dim SQL2 As String = ClassDatabase.Execute_Scalar(SQL)
|
Dim SQL2 As String = ClassDatabase.Execute_Scalar(SQL)
|
||||||
|
|
||||||
If SQL2 = "" Then
|
If SQL2 = "" Then
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
|
If SQL2.ToString.ToUpper.Contains("@") Then
|
||||||
|
SQL2 = SQL2.ToString.Replace("@RECORDID", CURRENT_RECORD_ID)
|
||||||
|
SQL2 = SQL2.ToString.Replace("@RECORD_ID", CURRENT_RECORD_ID)
|
||||||
|
SQL2 = SQL2.ToString.Replace("@PARENTRECORD_ID", CURRENT_PARENTID)
|
||||||
|
' If LogErrorsOnly = False Then ClassLogger.Add(">> SQL Combobox: " & cmbSql, False)
|
||||||
|
End If
|
||||||
Dim DT_Combobox As DataTable = ClassDatabase.Return_Datatable(SQL2)
|
Dim DT_Combobox As DataTable = ClassDatabase.Return_Datatable(SQL2)
|
||||||
If DT_Combobox Is Nothing = False Then
|
If DT_Combobox Is Nothing = False Then
|
||||||
If DT_Combobox.Rows.Count > 0 Then
|
If DT_Combobox.Rows.Count > 0 Then
|
||||||
Combobox.DataSource = DT_Combobox
|
Combobox.DataSource = DT_Combobox
|
||||||
Combobox.DisplayMember = DT_Combobox.Columns(1).ColumnName
|
Combobox.DisplayMember = DT_Combobox.Columns(1).ColumnName
|
||||||
Combobox.ValueMember = DT_Combobox.Columns(0).ColumnName
|
Combobox.ValueMember = DT_Combobox.Columns(0).ColumnName
|
||||||
Combobox.AutoCompleteMode = AutoCompleteMode.Suggest
|
Combobox.AutoCompleteMode = AutoCompleteMode.Append
|
||||||
Combobox.AutoCompleteSource = AutoCompleteSource.ListItems
|
Combobox.AutoCompleteSource = AutoCompleteSource.ListItems
|
||||||
End If
|
End If
|
||||||
Dim iWidestWidth As Integer = 300
|
Dim iWidestWidth As Integer = 300
|
||||||
|
|||||||
@@ -117,10 +117,12 @@
|
|||||||
Public Function GetControlID_for_RecordID(name As String, recID As Integer) As Integer
|
Public Function GetControlID_for_RecordID(name As String, recID As Integer) As Integer
|
||||||
Try
|
Try
|
||||||
Dim SQL = "SELECT CONTROL_ID FROM VWPMO_VALUES WHERE RECORD_ID = " & recID & " and CONTROL_NAME = '" & name & "'"
|
Dim SQL = "SELECT CONTROL_ID FROM VWPMO_VALUES WHERE RECORD_ID = " & recID & " and CONTROL_NAME = '" & name & "'"
|
||||||
|
If LogErrorsOnly = False Then ClassLogger.Add(">> " & SQL, False)
|
||||||
Dim ID As Integer = ClassDatabase.Execute_Scalar(SQL)
|
Dim ID As Integer = ClassDatabase.Execute_Scalar(SQL)
|
||||||
If ID > 0 Then
|
If ID > 0 Then
|
||||||
Return ID
|
Return ID
|
||||||
Else
|
Else
|
||||||
|
If LogErrorsOnly = False Then ClassLogger.Add(">> es konnte keine ID für name geholt werden: " & SQL, False)
|
||||||
Return -1
|
Return -1
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -169,14 +171,23 @@
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub OpenFormOverview()
|
Public Sub OpenFormOverview()
|
||||||
|
For i = System.Windows.Forms.Application.OpenForms.Count - 1 To 1 Step -1
|
||||||
|
Dim form As Form = System.Windows.Forms.Application.OpenForms(i)
|
||||||
|
form.WindowState = FormWindowState.Normal
|
||||||
|
Next i
|
||||||
|
|
||||||
Dim frm As New frmForm_Overview
|
Dim frm As New frmForm_Overview
|
||||||
frm = frmForm_Overview.Instance()
|
frm = frmForm_Overview.Instance()
|
||||||
frm.MdiParent = MAIN_FORM
|
frm.MdiParent = MAIN_FORM
|
||||||
|
|
||||||
frm.Show()
|
frm.Show()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub OpenFormLevelDesigner()
|
Public Sub OpenFormLevelDesigner()
|
||||||
|
For i = System.Windows.Forms.Application.OpenForms.Count - 1 To 1 Step -1
|
||||||
|
Dim form As Form = System.Windows.Forms.Application.OpenForms(i)
|
||||||
|
form.WindowState = FormWindowState.Normal
|
||||||
|
Next i
|
||||||
|
|
||||||
Dim frm As New frmLevel_Designer
|
Dim frm As New frmLevel_Designer
|
||||||
frm = frmLevel_Designer.Instance
|
frm = frmLevel_Designer.Instance
|
||||||
frm.MdiParent = MAIN_FORM
|
frm.MdiParent = MAIN_FORM
|
||||||
|
|||||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' übernehmen, indem Sie "*" eingeben:
|
' übernehmen, indem Sie "*" eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("2.0.1.0")>
|
<Assembly: AssemblyVersion("2.1.0.0")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
|
|||||||
@@ -406,7 +406,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.TCDetails.Name = "TCDetails"
|
Me.TCDetails.Name = "TCDetails"
|
||||||
Me.TCDetails.SelectedTabPage = Me.TabPageDetails
|
Me.TCDetails.SelectedTabPage = Me.TabPageDetails
|
||||||
Me.TCDetails.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.[False]
|
Me.TCDetails.ShowHeaderFocus = DevExpress.Utils.DefaultBoolean.[False]
|
||||||
Me.TCDetails.Size = New System.Drawing.Size(764, 340)
|
Me.TCDetails.Size = New System.Drawing.Size(940, 340)
|
||||||
Me.TCDetails.TabIndex = 19
|
Me.TCDetails.TabIndex = 19
|
||||||
Me.TCDetails.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.TabPageDetails, Me.TabPageWD_Files, Me.TabPageFollowUp})
|
Me.TCDetails.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.TabPageDetails, Me.TabPageWD_Files, Me.TabPageFollowUp})
|
||||||
'
|
'
|
||||||
@@ -415,7 +415,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.TabPageDetails.Controls.Add(Me.pnlDetails)
|
Me.TabPageDetails.Controls.Add(Me.pnlDetails)
|
||||||
Me.TabPageDetails.Image = Global.DD_Record_Organiser.My.Resources.Resources.grid_Data_16xMD
|
Me.TabPageDetails.Image = Global.DD_Record_Organiser.My.Resources.Resources.grid_Data_16xMD
|
||||||
Me.TabPageDetails.Name = "TabPageDetails"
|
Me.TabPageDetails.Name = "TabPageDetails"
|
||||||
Me.TabPageDetails.Size = New System.Drawing.Size(762, 312)
|
Me.TabPageDetails.Size = New System.Drawing.Size(758, 309)
|
||||||
Me.TabPageDetails.Text = "Detailansicht:"
|
Me.TabPageDetails.Text = "Detailansicht:"
|
||||||
'
|
'
|
||||||
'pnlDetails
|
'pnlDetails
|
||||||
@@ -424,7 +424,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.pnlDetails.Dock = System.Windows.Forms.DockStyle.Fill
|
Me.pnlDetails.Dock = System.Windows.Forms.DockStyle.Fill
|
||||||
Me.pnlDetails.Location = New System.Drawing.Point(0, 0)
|
Me.pnlDetails.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.pnlDetails.Name = "pnlDetails"
|
Me.pnlDetails.Name = "pnlDetails"
|
||||||
Me.pnlDetails.Size = New System.Drawing.Size(762, 312)
|
Me.pnlDetails.Size = New System.Drawing.Size(758, 309)
|
||||||
Me.pnlDetails.TabIndex = 0
|
Me.pnlDetails.TabIndex = 0
|
||||||
'
|
'
|
||||||
'TabPageWD_Files
|
'TabPageWD_Files
|
||||||
@@ -433,7 +433,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.TabPageWD_Files.Controls.Add(Me.ToolStripDokumente)
|
Me.TabPageWD_Files.Controls.Add(Me.ToolStripDokumente)
|
||||||
Me.TabPageWD_Files.Image = Global.DD_Record_Organiser.My.Resources.Resources.Files_7954
|
Me.TabPageWD_Files.Image = Global.DD_Record_Organiser.My.Resources.Resources.Files_7954
|
||||||
Me.TabPageWD_Files.Name = "TabPageWD_Files"
|
Me.TabPageWD_Files.Name = "TabPageWD_Files"
|
||||||
Me.TabPageWD_Files.Size = New System.Drawing.Size(762, 312)
|
Me.TabPageWD_Files.Size = New System.Drawing.Size(758, 309)
|
||||||
Me.TabPageWD_Files.Text = "windream-Dateien"
|
Me.TabPageWD_Files.Text = "windream-Dateien"
|
||||||
Me.ttToolTip.SetToolTip(Me.TabPageWD_Files, "Zeigt die Dateien in windream zum ausgewählten Datensatz an")
|
Me.ttToolTip.SetToolTip(Me.TabPageWD_Files, "Zeigt die Dateien in windream zum ausgewählten Datensatz an")
|
||||||
'
|
'
|
||||||
@@ -445,7 +445,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.AxObjectListControl.Location = New System.Drawing.Point(0, 25)
|
Me.AxObjectListControl.Location = New System.Drawing.Point(0, 25)
|
||||||
Me.AxObjectListControl.Name = "AxObjectListControl"
|
Me.AxObjectListControl.Name = "AxObjectListControl"
|
||||||
Me.AxObjectListControl.OcxState = CType(resources.GetObject("AxObjectListControl.OcxState"), System.Windows.Forms.AxHost.State)
|
Me.AxObjectListControl.OcxState = CType(resources.GetObject("AxObjectListControl.OcxState"), System.Windows.Forms.AxHost.State)
|
||||||
Me.AxObjectListControl.Size = New System.Drawing.Size(762, 287)
|
Me.AxObjectListControl.Size = New System.Drawing.Size(758, 284)
|
||||||
Me.AxObjectListControl.TabIndex = 5
|
Me.AxObjectListControl.TabIndex = 5
|
||||||
Me.AxObjectListControl.TabStop = False
|
Me.AxObjectListControl.TabStop = False
|
||||||
'
|
'
|
||||||
@@ -454,7 +454,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.ToolStripDokumente.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblWindreamView, Me.ToolStripDropDownButton2})
|
Me.ToolStripDokumente.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblWindreamView, Me.ToolStripDropDownButton2})
|
||||||
Me.ToolStripDokumente.Location = New System.Drawing.Point(0, 0)
|
Me.ToolStripDokumente.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.ToolStripDokumente.Name = "ToolStripDokumente"
|
Me.ToolStripDokumente.Name = "ToolStripDokumente"
|
||||||
Me.ToolStripDokumente.Size = New System.Drawing.Size(762, 25)
|
Me.ToolStripDokumente.Size = New System.Drawing.Size(758, 25)
|
||||||
Me.ToolStripDokumente.TabIndex = 1
|
Me.ToolStripDokumente.TabIndex = 1
|
||||||
Me.ToolStripDokumente.Text = "ToolStrip2"
|
Me.ToolStripDokumente.Text = "ToolStrip2"
|
||||||
'
|
'
|
||||||
@@ -488,7 +488,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.TabPageFollowUp.Controls.Add(Me.ListViewFollowUp)
|
Me.TabPageFollowUp.Controls.Add(Me.ListViewFollowUp)
|
||||||
Me.TabPageFollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.Task_16xMD
|
Me.TabPageFollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.Task_16xMD
|
||||||
Me.TabPageFollowUp.Name = "TabPageFollowUp"
|
Me.TabPageFollowUp.Name = "TabPageFollowUp"
|
||||||
Me.TabPageFollowUp.Size = New System.Drawing.Size(762, 312)
|
Me.TabPageFollowUp.Size = New System.Drawing.Size(934, 309)
|
||||||
Me.TabPageFollowUp.Text = "Wiedervorlage"
|
Me.TabPageFollowUp.Text = "Wiedervorlage"
|
||||||
'
|
'
|
||||||
'grpbxFU_Profile
|
'grpbxFU_Profile
|
||||||
@@ -701,7 +701,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.XtraTabControl1.Location = New System.Drawing.Point(0, 0)
|
Me.XtraTabControl1.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.XtraTabControl1.Name = "XtraTabControl1"
|
Me.XtraTabControl1.Name = "XtraTabControl1"
|
||||||
Me.XtraTabControl1.SelectedTabPage = Me.TabPageParentEntity
|
Me.XtraTabControl1.SelectedTabPage = Me.TabPageParentEntity
|
||||||
Me.XtraTabControl1.Size = New System.Drawing.Size(525, 340)
|
Me.XtraTabControl1.Size = New System.Drawing.Size(356, 340)
|
||||||
Me.XtraTabControl1.TabIndex = 0
|
Me.XtraTabControl1.TabIndex = 0
|
||||||
Me.XtraTabControl1.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.TabPageParentEntity})
|
Me.XtraTabControl1.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.TabPageParentEntity})
|
||||||
'
|
'
|
||||||
@@ -715,7 +715,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.TabPageParentEntity.Controls.Add(Me.Label4)
|
Me.TabPageParentEntity.Controls.Add(Me.Label4)
|
||||||
Me.TabPageParentEntity.Controls.Add(Me.GridControlParentEntity)
|
Me.TabPageParentEntity.Controls.Add(Me.GridControlParentEntity)
|
||||||
Me.TabPageParentEntity.Name = "TabPageParentEntity"
|
Me.TabPageParentEntity.Name = "TabPageParentEntity"
|
||||||
Me.TabPageParentEntity.Size = New System.Drawing.Size(523, 315)
|
Me.TabPageParentEntity.Size = New System.Drawing.Size(350, 312)
|
||||||
Me.TabPageParentEntity.Text = "Parent-Entity"
|
Me.TabPageParentEntity.Text = "Parent-Entity"
|
||||||
'
|
'
|
||||||
'Button1
|
'Button1
|
||||||
@@ -723,7 +723,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.Button1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
Me.Button1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
Me.Button1.Image = Global.DD_Record_Organiser.My.Resources.Resources.delete
|
Me.Button1.Image = Global.DD_Record_Organiser.My.Resources.Resources.delete
|
||||||
Me.Button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
Me.Button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
Me.Button1.Location = New System.Drawing.Point(-324, 276)
|
Me.Button1.Location = New System.Drawing.Point(-659, 276)
|
||||||
Me.Button1.Name = "Button1"
|
Me.Button1.Name = "Button1"
|
||||||
Me.Button1.Size = New System.Drawing.Size(98, 27)
|
Me.Button1.Size = New System.Drawing.Size(98, 27)
|
||||||
Me.Button1.TabIndex = 18
|
Me.Button1.TabIndex = 18
|
||||||
@@ -753,7 +753,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.lblParentID.AutoSize = True
|
Me.lblParentID.AutoSize = True
|
||||||
Me.lblParentID.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
Me.lblParentID.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.lblParentID.ForeColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(0, Byte), Integer))
|
Me.lblParentID.ForeColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(0, Byte), Integer))
|
||||||
Me.lblParentID.Location = New System.Drawing.Point(-413, 38)
|
Me.lblParentID.Location = New System.Drawing.Point(-748, 38)
|
||||||
Me.lblParentID.Name = "lblParentID"
|
Me.lblParentID.Name = "lblParentID"
|
||||||
Me.lblParentID.Size = New System.Drawing.Size(168, 16)
|
Me.lblParentID.Size = New System.Drawing.Size(168, 16)
|
||||||
Me.lblParentID.TabIndex = 16
|
Me.lblParentID.TabIndex = 16
|
||||||
@@ -764,7 +764,7 @@ Partial Class frmForm_Constructor
|
|||||||
Me.Label4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
Me.Label4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
Me.Label4.AutoSize = True
|
Me.Label4.AutoSize = True
|
||||||
Me.Label4.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
Me.Label4.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.Label4.Location = New System.Drawing.Point(-413, 12)
|
Me.Label4.Location = New System.Drawing.Point(-748, 12)
|
||||||
Me.Label4.Name = "Label4"
|
Me.Label4.Name = "Label4"
|
||||||
Me.Label4.Size = New System.Drawing.Size(160, 16)
|
Me.Label4.Size = New System.Drawing.Size(160, 16)
|
||||||
Me.Label4.TabIndex = 15
|
Me.Label4.TabIndex = 15
|
||||||
|
|||||||
@@ -157,7 +157,7 @@
|
|||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
|
||||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABS
|
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABS
|
||||||
CQAAAk1TRnQBSQFMAgEBAgEAAcgBCQHIAQkBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
CQAAAk1TRnQBSQFMAgEBAgEAAdgBCQHYAQkBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||||
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
||||||
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
||||||
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
||||||
|
|||||||
@@ -22,12 +22,13 @@ Partial Class frmForm_Constructor_Main
|
|||||||
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
||||||
<System.Diagnostics.DebuggerStepThrough()> _
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
Private Sub InitializeComponent()
|
Private Sub InitializeComponent()
|
||||||
|
Me.components = New System.ComponentModel.Container()
|
||||||
Dim GridLevelNode1 As DevExpress.XtraGrid.GridLevelNode = New DevExpress.XtraGrid.GridLevelNode()
|
Dim GridLevelNode1 As DevExpress.XtraGrid.GridLevelNode = New DevExpress.XtraGrid.GridLevelNode()
|
||||||
Dim GridLevelNode2 As DevExpress.XtraGrid.GridLevelNode = New DevExpress.XtraGrid.GridLevelNode()
|
Dim GridLevelNode2 As DevExpress.XtraGrid.GridLevelNode = New DevExpress.XtraGrid.GridLevelNode()
|
||||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmForm_Constructor_Main))
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmForm_Constructor_Main))
|
||||||
Me.grvwGrid = New DevExpress.XtraGrid.Views.Grid.GridView()
|
Me.grvwGrid = New DevExpress.XtraGrid.Views.Grid.GridView()
|
||||||
Me.GridControlMain = New DevExpress.XtraGrid.GridControl()
|
Me.GridControlMain = New DevExpress.XtraGrid.GridControl()
|
||||||
Me.ContextMenuGrid = New System.Windows.Forms.ContextMenuStrip()
|
Me.ContextMenuGrid = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
||||||
Me.FunktionenDataGridToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
Me.FunktionenDataGridToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator()
|
Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator()
|
||||||
Me.AnsichtUmschaltenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
Me.AnsichtUmschaltenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
@@ -51,7 +52,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.SplitContainerMain = New DevExpress.XtraEditors.SplitContainerControl()
|
Me.SplitContainerMain = New DevExpress.XtraEditors.SplitContainerControl()
|
||||||
Me.SplitContainerTop = New DevExpress.XtraEditors.SplitContainerControl()
|
Me.SplitContainerTop = New DevExpress.XtraEditors.SplitContainerControl()
|
||||||
Me.TreeViewMain = New System.Windows.Forms.TreeView()
|
Me.TreeViewMain = New System.Windows.Forms.TreeView()
|
||||||
Me.CMSEntity = New System.Windows.Forms.ContextMenuStrip()
|
Me.CMSEntity = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
||||||
Me.ResetEbenenAuswahlToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
Me.ResetEbenenAuswahlToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.DateiimportEntitätToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
Me.DateiimportEntitätToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.FormDesignerToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
Me.FormDesignerToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
@@ -95,19 +96,19 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.VerknüpfungenAnzeigenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
Me.VerknüpfungenAnzeigenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.tsButtonShowTaskOverview = New System.Windows.Forms.ToolStripButton()
|
Me.tsButtonShowTaskOverview = New System.Windows.Forms.ToolStripButton()
|
||||||
Me.tsButtonShowWorkflowTasks = New System.Windows.Forms.ToolStripButton()
|
Me.tsButtonShowWorkflowTasks = New System.Windows.Forms.ToolStripButton()
|
||||||
Me.BindingSource_Entity = New System.Windows.Forms.BindingSource()
|
Me.BindingSource_Entity = New System.Windows.Forms.BindingSource(Me.components)
|
||||||
Me.DD_ECMAdmin = New DD_Record_Organiser.DD_ECMAdmin()
|
Me.DD_ECMAdmin = New DD_Record_Organiser.DD_ECMAdmin()
|
||||||
Me.ImageCollection1 = New DevExpress.Utils.ImageCollection()
|
Me.ImageCollection1 = New DevExpress.Utils.ImageCollection(Me.components)
|
||||||
Me.ttToolTip = New System.Windows.Forms.ToolTip()
|
Me.ttToolTip = New System.Windows.Forms.ToolTip(Me.components)
|
||||||
Me.ContextMenuDetails = New System.Windows.Forms.ContextMenuStrip()
|
Me.ContextMenuDetails = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
||||||
Me.DD_DMSDataSet = New DD_Record_Organiser.DD_DMSDataSet()
|
Me.DD_DMSDataSet = New DD_Record_Organiser.DD_DMSDataSet()
|
||||||
Me.VWPMO_WF_USER_ACTIVEBindingSource = New System.Windows.Forms.BindingSource()
|
Me.VWPMO_WF_USER_ACTIVEBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||||
Me.VWPMO_WF_USER_ACTIVETableAdapter = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.VWPMO_WF_USER_ACTIVETableAdapter()
|
Me.VWPMO_WF_USER_ACTIVETableAdapter = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.VWPMO_WF_USER_ACTIVETableAdapter()
|
||||||
Me.TableAdapterManager = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.TableAdapterManager()
|
Me.TableAdapterManager = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.TableAdapterManager()
|
||||||
Me.TBPMO_FILES_USERTableAdapter = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBPMO_FILES_USERTableAdapter()
|
Me.TBPMO_FILES_USERTableAdapter = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.TBPMO_FILES_USERTableAdapter()
|
||||||
Me.VWPMO_WF_ACTIVEBindingSource = New System.Windows.Forms.BindingSource()
|
Me.VWPMO_WF_ACTIVEBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||||
Me.VWPMO_WF_ACTIVETableAdapter = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.VWPMO_WF_ACTIVETableAdapter()
|
Me.VWPMO_WF_ACTIVETableAdapter = New DD_Record_Organiser.DD_DMSDataSetTableAdapters.VWPMO_WF_ACTIVETableAdapter()
|
||||||
Me.TBPMO_FILES_USERBindingSource = New System.Windows.Forms.BindingSource()
|
Me.TBPMO_FILES_USERBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||||
CType(Me.grvwGrid, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.grvwGrid, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
CType(Me.GridControlMain, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.GridControlMain, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.ContextMenuGrid.SuspendLayout()
|
Me.ContextMenuGrid.SuspendLayout()
|
||||||
@@ -172,7 +173,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.GridControlMain.Location = New System.Drawing.Point(0, 0)
|
Me.GridControlMain.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.GridControlMain.MainView = Me.grvwTiles
|
Me.GridControlMain.MainView = Me.grvwTiles
|
||||||
Me.GridControlMain.Name = "GridControlMain"
|
Me.GridControlMain.Name = "GridControlMain"
|
||||||
Me.GridControlMain.Size = New System.Drawing.Size(779, 270)
|
Me.GridControlMain.Size = New System.Drawing.Size(786, 270)
|
||||||
Me.GridControlMain.TabIndex = 0
|
Me.GridControlMain.TabIndex = 0
|
||||||
Me.GridControlMain.UseEmbeddedNavigator = True
|
Me.GridControlMain.UseEmbeddedNavigator = True
|
||||||
Me.GridControlMain.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwCarousel, Me.grvwTiles, Me.grvwGrid})
|
Me.GridControlMain.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwCarousel, Me.grvwTiles, Me.grvwGrid})
|
||||||
@@ -426,7 +427,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.SplitContainerBottom.Panel1.Controls.Add(Me.ToolStripEdit)
|
Me.SplitContainerBottom.Panel1.Controls.Add(Me.ToolStripEdit)
|
||||||
Me.SplitContainerBottom.Panel1.Text = "Panel1"
|
Me.SplitContainerBottom.Panel1.Text = "Panel1"
|
||||||
Me.SplitContainerBottom.Panel2.Text = "Panel2"
|
Me.SplitContainerBottom.Panel2.Text = "Panel2"
|
||||||
Me.SplitContainerBottom.Size = New System.Drawing.Size(1074, 365)
|
Me.SplitContainerBottom.Size = New System.Drawing.Size(1074, 372)
|
||||||
Me.SplitContainerBottom.SplitterPosition = 448
|
Me.SplitContainerBottom.SplitterPosition = 448
|
||||||
Me.SplitContainerBottom.TabIndex = 0
|
Me.SplitContainerBottom.TabIndex = 0
|
||||||
Me.SplitContainerBottom.Text = "SplitContainerControl1"
|
Me.SplitContainerBottom.Text = "SplitContainerControl1"
|
||||||
@@ -442,7 +443,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.TCDetails.Location = New System.Drawing.Point(0, 25)
|
Me.TCDetails.Location = New System.Drawing.Point(0, 25)
|
||||||
Me.TCDetails.Name = "TCDetails"
|
Me.TCDetails.Name = "TCDetails"
|
||||||
Me.TCDetails.SelectedTabPage = Me.TabDetails
|
Me.TCDetails.SelectedTabPage = Me.TabDetails
|
||||||
Me.TCDetails.Size = New System.Drawing.Size(1062, 340)
|
Me.TCDetails.Size = New System.Drawing.Size(1069, 347)
|
||||||
Me.TCDetails.TabIndex = 1
|
Me.TCDetails.TabIndex = 1
|
||||||
Me.TCDetails.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.TabDetails, Me.TabWindream, Me.TabFollowUp})
|
Me.TCDetails.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.TabDetails, Me.TabWindream, Me.TabFollowUp})
|
||||||
'
|
'
|
||||||
@@ -451,7 +452,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.TabDetails.Controls.Add(Me.pnlDetails)
|
Me.TabDetails.Controls.Add(Me.pnlDetails)
|
||||||
Me.TabDetails.Image = Global.DD_Record_Organiser.My.Resources.Resources.grid_Data_16xMD
|
Me.TabDetails.Image = Global.DD_Record_Organiser.My.Resources.Resources.grid_Data_16xMD
|
||||||
Me.TabDetails.Name = "TabDetails"
|
Me.TabDetails.Name = "TabDetails"
|
||||||
Me.TabDetails.Size = New System.Drawing.Size(1060, 312)
|
Me.TabDetails.Size = New System.Drawing.Size(1063, 316)
|
||||||
Me.TabDetails.Text = "Detailansicht"
|
Me.TabDetails.Text = "Detailansicht"
|
||||||
'
|
'
|
||||||
'pnlDetails
|
'pnlDetails
|
||||||
@@ -460,7 +461,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.pnlDetails.Dock = System.Windows.Forms.DockStyle.Fill
|
Me.pnlDetails.Dock = System.Windows.Forms.DockStyle.Fill
|
||||||
Me.pnlDetails.Location = New System.Drawing.Point(0, 0)
|
Me.pnlDetails.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.pnlDetails.Name = "pnlDetails"
|
Me.pnlDetails.Name = "pnlDetails"
|
||||||
Me.pnlDetails.Size = New System.Drawing.Size(1060, 312)
|
Me.pnlDetails.Size = New System.Drawing.Size(1063, 316)
|
||||||
Me.pnlDetails.TabIndex = 0
|
Me.pnlDetails.TabIndex = 0
|
||||||
'
|
'
|
||||||
'TabWindream
|
'TabWindream
|
||||||
@@ -469,7 +470,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.TabWindream.Controls.Add(Me.ToolStripDokumente)
|
Me.TabWindream.Controls.Add(Me.ToolStripDokumente)
|
||||||
Me.TabWindream.Image = Global.DD_Record_Organiser.My.Resources.Resources.Files_7954
|
Me.TabWindream.Image = Global.DD_Record_Organiser.My.Resources.Resources.Files_7954
|
||||||
Me.TabWindream.Name = "TabWindream"
|
Me.TabWindream.Name = "TabWindream"
|
||||||
Me.TabWindream.Size = New System.Drawing.Size(1060, 312)
|
Me.TabWindream.Size = New System.Drawing.Size(1063, 316)
|
||||||
Me.TabWindream.Text = "windream-Dateien"
|
Me.TabWindream.Text = "windream-Dateien"
|
||||||
'
|
'
|
||||||
'AxObjectListControl
|
'AxObjectListControl
|
||||||
@@ -480,7 +481,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.AxObjectListControl.Location = New System.Drawing.Point(0, 25)
|
Me.AxObjectListControl.Location = New System.Drawing.Point(0, 25)
|
||||||
Me.AxObjectListControl.Name = "AxObjectListControl"
|
Me.AxObjectListControl.Name = "AxObjectListControl"
|
||||||
Me.AxObjectListControl.OcxState = CType(resources.GetObject("AxObjectListControl.OcxState"), System.Windows.Forms.AxHost.State)
|
Me.AxObjectListControl.OcxState = CType(resources.GetObject("AxObjectListControl.OcxState"), System.Windows.Forms.AxHost.State)
|
||||||
Me.AxObjectListControl.Size = New System.Drawing.Size(1060, 287)
|
Me.AxObjectListControl.Size = New System.Drawing.Size(1063, 291)
|
||||||
Me.AxObjectListControl.TabIndex = 6
|
Me.AxObjectListControl.TabIndex = 6
|
||||||
Me.AxObjectListControl.TabStop = False
|
Me.AxObjectListControl.TabStop = False
|
||||||
'
|
'
|
||||||
@@ -489,7 +490,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.ToolStripDokumente.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblWindreamView, Me.ToolStripDropDownButton2})
|
Me.ToolStripDokumente.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblWindreamView, Me.ToolStripDropDownButton2})
|
||||||
Me.ToolStripDokumente.Location = New System.Drawing.Point(0, 0)
|
Me.ToolStripDokumente.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.ToolStripDokumente.Name = "ToolStripDokumente"
|
Me.ToolStripDokumente.Name = "ToolStripDokumente"
|
||||||
Me.ToolStripDokumente.Size = New System.Drawing.Size(1060, 25)
|
Me.ToolStripDokumente.Size = New System.Drawing.Size(1063, 25)
|
||||||
Me.ToolStripDokumente.TabIndex = 2
|
Me.ToolStripDokumente.TabIndex = 2
|
||||||
Me.ToolStripDokumente.Text = "ToolStrip2"
|
Me.ToolStripDokumente.Text = "ToolStrip2"
|
||||||
'
|
'
|
||||||
@@ -523,7 +524,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.TabFollowUp.Controls.Add(Me.ListViewFollowUp)
|
Me.TabFollowUp.Controls.Add(Me.ListViewFollowUp)
|
||||||
Me.TabFollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.Task_16xMD
|
Me.TabFollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.Task_16xMD
|
||||||
Me.TabFollowUp.Name = "TabFollowUp"
|
Me.TabFollowUp.Name = "TabFollowUp"
|
||||||
Me.TabFollowUp.Size = New System.Drawing.Size(1060, 312)
|
Me.TabFollowUp.Size = New System.Drawing.Size(1063, 316)
|
||||||
Me.TabFollowUp.Text = "Wiedervorlage"
|
Me.TabFollowUp.Text = "Wiedervorlage"
|
||||||
'
|
'
|
||||||
'grpbxFU_Profile
|
'grpbxFU_Profile
|
||||||
@@ -693,7 +694,7 @@ Partial Class frmForm_Constructor_Main
|
|||||||
Me.ToolStripEdit.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tsButtonAdd, Me.tsButtonSave, Me.tsButtonDelete, Me.tsButtonEditMode, Me.ToolStripDropDownButton1, Me.tsButtonShowTaskOverview, Me.tsButtonShowWorkflowTasks})
|
Me.ToolStripEdit.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tsButtonAdd, Me.tsButtonSave, Me.tsButtonDelete, Me.tsButtonEditMode, Me.ToolStripDropDownButton1, Me.tsButtonShowTaskOverview, Me.tsButtonShowWorkflowTasks})
|
||||||
Me.ToolStripEdit.Location = New System.Drawing.Point(0, 0)
|
Me.ToolStripEdit.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.ToolStripEdit.Name = "ToolStripEdit"
|
Me.ToolStripEdit.Name = "ToolStripEdit"
|
||||||
Me.ToolStripEdit.Size = New System.Drawing.Size(1062, 25)
|
Me.ToolStripEdit.Size = New System.Drawing.Size(1069, 25)
|
||||||
Me.ToolStripEdit.TabIndex = 0
|
Me.ToolStripEdit.TabIndex = 0
|
||||||
Me.ToolStripEdit.Text = "ToolStrip1"
|
Me.ToolStripEdit.Text = "ToolStrip1"
|
||||||
'
|
'
|
||||||
|
|||||||
@@ -2499,4 +2499,8 @@ Public Class frmForm_Constructor_Main
|
|||||||
Private Sub CallRecursive(ByVal aTreeView As TreeView)
|
Private Sub CallRecursive(ByVal aTreeView As TreeView)
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub btnAddUser_FollowUp_Click(sender As Object, e As EventArgs) Handles btnAddUser_FollowUp.Click
|
||||||
|
|
||||||
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
@@ -25,6 +25,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.components = New System.ComponentModel.Container()
|
Me.components = New System.ComponentModel.Container()
|
||||||
Dim GridLevelNode1 As DevExpress.XtraGrid.GridLevelNode = New DevExpress.XtraGrid.GridLevelNode()
|
Dim GridLevelNode1 As DevExpress.XtraGrid.GridLevelNode = New DevExpress.XtraGrid.GridLevelNode()
|
||||||
Dim GridLevelNode2 As DevExpress.XtraGrid.GridLevelNode = New DevExpress.XtraGrid.GridLevelNode()
|
Dim GridLevelNode2 As DevExpress.XtraGrid.GridLevelNode = New DevExpress.XtraGrid.GridLevelNode()
|
||||||
|
Dim GridLevelNode3 As DevExpress.XtraGrid.GridLevelNode = New DevExpress.XtraGrid.GridLevelNode()
|
||||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmForm_Constructor_Main_2))
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmForm_Constructor_Main_2))
|
||||||
Me.grvwGrid = New DevExpress.XtraGrid.Views.Grid.GridView()
|
Me.grvwGrid = New DevExpress.XtraGrid.Views.Grid.GridView()
|
||||||
Me.GridControlMain = New DevExpress.XtraGrid.GridControl()
|
Me.GridControlMain = New DevExpress.XtraGrid.GridControl()
|
||||||
@@ -67,6 +68,9 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.ToolStripDropDownButton2 = New System.Windows.Forms.ToolStripDropDownButton()
|
Me.ToolStripDropDownButton2 = New System.Windows.Forms.ToolStripDropDownButton()
|
||||||
Me.KonfigurationToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
Me.KonfigurationToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.TabFollowUp = New DevExpress.XtraTab.XtraTabPage()
|
Me.TabFollowUp = New DevExpress.XtraTab.XtraTabPage()
|
||||||
|
Me.ListViewFollowUps = New System.Windows.Forms.ListView()
|
||||||
|
Me.ColumnHeader1 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
||||||
|
Me.ColumnHeader2 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
||||||
Me.grpbxFU_Profile = New System.Windows.Forms.GroupBox()
|
Me.grpbxFU_Profile = New System.Windows.Forms.GroupBox()
|
||||||
Me.GroupBox4 = New System.Windows.Forms.GroupBox()
|
Me.GroupBox4 = New System.Windows.Forms.GroupBox()
|
||||||
Me.btnRemoveUser_FollowUp = New System.Windows.Forms.Button()
|
Me.btnRemoveUser_FollowUp = New System.Windows.Forms.Button()
|
||||||
@@ -78,11 +82,8 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.lblFollowUp_save = New System.Windows.Forms.Label()
|
Me.lblFollowUp_save = New System.Windows.Forms.Label()
|
||||||
Me.chkFollowUp = New System.Windows.Forms.CheckBox()
|
Me.chkFollowUp = New System.Windows.Forms.CheckBox()
|
||||||
Me.dtpFollowUp = New System.Windows.Forms.DateTimePicker()
|
Me.dtpFollowUp = New System.Windows.Forms.DateTimePicker()
|
||||||
Me.Label9 = New System.Windows.Forms.Label()
|
Me.lblWiedervorlage_Control = New System.Windows.Forms.Label()
|
||||||
Me.Label5 = New System.Windows.Forms.Label()
|
Me.Label5 = New System.Windows.Forms.Label()
|
||||||
Me.ListViewFollowUp = New System.Windows.Forms.ListView()
|
|
||||||
Me.ColumnHeader1 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
|
||||||
Me.ColumnHeader2 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
|
||||||
Me.TabPos = New DevExpress.XtraTab.XtraTabPage()
|
Me.TabPos = New DevExpress.XtraTab.XtraTabPage()
|
||||||
Me.Panel1 = New System.Windows.Forms.Panel()
|
Me.Panel1 = New System.Windows.Forms.Panel()
|
||||||
Me.GridControlPos = New DevExpress.XtraGrid.GridControl()
|
Me.GridControlPos = New DevExpress.XtraGrid.GridControl()
|
||||||
@@ -191,11 +192,12 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
GridLevelNode1.RelationName = "Level1"
|
GridLevelNode1.RelationName = "Level1"
|
||||||
GridLevelNode2.LevelTemplate = Me.grvwCarousel
|
GridLevelNode2.LevelTemplate = Me.grvwCarousel
|
||||||
GridLevelNode2.RelationName = "Level2"
|
GridLevelNode2.RelationName = "Level2"
|
||||||
Me.GridControlMain.LevelTree.Nodes.AddRange(New DevExpress.XtraGrid.GridLevelNode() {GridLevelNode1, GridLevelNode2})
|
GridLevelNode3.RelationName = "Level3"
|
||||||
|
Me.GridControlMain.LevelTree.Nodes.AddRange(New DevExpress.XtraGrid.GridLevelNode() {GridLevelNode1, GridLevelNode2, GridLevelNode3})
|
||||||
Me.GridControlMain.Location = New System.Drawing.Point(0, 0)
|
Me.GridControlMain.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.GridControlMain.MainView = Me.grvwTiles
|
Me.GridControlMain.MainView = Me.grvwTiles
|
||||||
Me.GridControlMain.Name = "GridControlMain"
|
Me.GridControlMain.Name = "GridControlMain"
|
||||||
Me.GridControlMain.Size = New System.Drawing.Size(779, 270)
|
Me.GridControlMain.Size = New System.Drawing.Size(786, 270)
|
||||||
Me.GridControlMain.TabIndex = 0
|
Me.GridControlMain.TabIndex = 0
|
||||||
Me.GridControlMain.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwCarousel, Me.grvwTiles, Me.grvwGrid})
|
Me.GridControlMain.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwCarousel, Me.grvwTiles, Me.grvwGrid})
|
||||||
'
|
'
|
||||||
@@ -449,7 +451,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.SplitContainerBottom.Panel1.Controls.Add(Me.ToolStripEdit)
|
Me.SplitContainerBottom.Panel1.Controls.Add(Me.ToolStripEdit)
|
||||||
Me.SplitContainerBottom.Panel1.Text = "Panel1"
|
Me.SplitContainerBottom.Panel1.Text = "Panel1"
|
||||||
Me.SplitContainerBottom.Panel2.Text = "Panel2"
|
Me.SplitContainerBottom.Panel2.Text = "Panel2"
|
||||||
Me.SplitContainerBottom.Size = New System.Drawing.Size(1074, 365)
|
Me.SplitContainerBottom.Size = New System.Drawing.Size(1074, 372)
|
||||||
Me.SplitContainerBottom.SplitterPosition = 448
|
Me.SplitContainerBottom.SplitterPosition = 448
|
||||||
Me.SplitContainerBottom.TabIndex = 0
|
Me.SplitContainerBottom.TabIndex = 0
|
||||||
Me.SplitContainerBottom.Text = "SplitContainerControl1"
|
Me.SplitContainerBottom.Text = "SplitContainerControl1"
|
||||||
@@ -465,7 +467,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.TCDetails.Location = New System.Drawing.Point(0, 25)
|
Me.TCDetails.Location = New System.Drawing.Point(0, 25)
|
||||||
Me.TCDetails.Name = "TCDetails"
|
Me.TCDetails.Name = "TCDetails"
|
||||||
Me.TCDetails.SelectedTabPage = Me.TabDetails
|
Me.TCDetails.SelectedTabPage = Me.TabDetails
|
||||||
Me.TCDetails.Size = New System.Drawing.Size(1062, 340)
|
Me.TCDetails.Size = New System.Drawing.Size(1069, 347)
|
||||||
Me.TCDetails.TabIndex = 1
|
Me.TCDetails.TabIndex = 1
|
||||||
Me.TCDetails.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.TabDetails, Me.TabWindream, Me.TabFollowUp, Me.TabPos})
|
Me.TCDetails.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.TabDetails, Me.TabWindream, Me.TabFollowUp, Me.TabPos})
|
||||||
'
|
'
|
||||||
@@ -474,7 +476,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.TabDetails.Controls.Add(Me.pnlDetails)
|
Me.TabDetails.Controls.Add(Me.pnlDetails)
|
||||||
Me.TabDetails.Image = Global.DD_Record_Organiser.My.Resources.Resources.grid_Data_16xMD
|
Me.TabDetails.Image = Global.DD_Record_Organiser.My.Resources.Resources.grid_Data_16xMD
|
||||||
Me.TabDetails.Name = "TabDetails"
|
Me.TabDetails.Name = "TabDetails"
|
||||||
Me.TabDetails.Size = New System.Drawing.Size(1060, 312)
|
Me.TabDetails.Size = New System.Drawing.Size(1063, 316)
|
||||||
Me.TabDetails.Text = "Detailansicht"
|
Me.TabDetails.Text = "Detailansicht"
|
||||||
'
|
'
|
||||||
'pnlDetails
|
'pnlDetails
|
||||||
@@ -483,7 +485,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.pnlDetails.Dock = System.Windows.Forms.DockStyle.Fill
|
Me.pnlDetails.Dock = System.Windows.Forms.DockStyle.Fill
|
||||||
Me.pnlDetails.Location = New System.Drawing.Point(0, 0)
|
Me.pnlDetails.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.pnlDetails.Name = "pnlDetails"
|
Me.pnlDetails.Name = "pnlDetails"
|
||||||
Me.pnlDetails.Size = New System.Drawing.Size(1060, 312)
|
Me.pnlDetails.Size = New System.Drawing.Size(1063, 316)
|
||||||
Me.pnlDetails.TabIndex = 0
|
Me.pnlDetails.TabIndex = 0
|
||||||
'
|
'
|
||||||
'TabWindream
|
'TabWindream
|
||||||
@@ -492,7 +494,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.TabWindream.Controls.Add(Me.ToolStripDokumente)
|
Me.TabWindream.Controls.Add(Me.ToolStripDokumente)
|
||||||
Me.TabWindream.Image = Global.DD_Record_Organiser.My.Resources.Resources.Files_7954
|
Me.TabWindream.Image = Global.DD_Record_Organiser.My.Resources.Resources.Files_7954
|
||||||
Me.TabWindream.Name = "TabWindream"
|
Me.TabWindream.Name = "TabWindream"
|
||||||
Me.TabWindream.Size = New System.Drawing.Size(1060, 312)
|
Me.TabWindream.Size = New System.Drawing.Size(1063, 316)
|
||||||
Me.TabWindream.Text = "windream-Dateien"
|
Me.TabWindream.Text = "windream-Dateien"
|
||||||
'
|
'
|
||||||
'AxObjectListControl
|
'AxObjectListControl
|
||||||
@@ -503,7 +505,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.AxObjectListControl.Location = New System.Drawing.Point(0, 25)
|
Me.AxObjectListControl.Location = New System.Drawing.Point(0, 25)
|
||||||
Me.AxObjectListControl.Name = "AxObjectListControl"
|
Me.AxObjectListControl.Name = "AxObjectListControl"
|
||||||
Me.AxObjectListControl.OcxState = CType(resources.GetObject("AxObjectListControl.OcxState"), System.Windows.Forms.AxHost.State)
|
Me.AxObjectListControl.OcxState = CType(resources.GetObject("AxObjectListControl.OcxState"), System.Windows.Forms.AxHost.State)
|
||||||
Me.AxObjectListControl.Size = New System.Drawing.Size(1060, 287)
|
Me.AxObjectListControl.Size = New System.Drawing.Size(1063, 291)
|
||||||
Me.AxObjectListControl.TabIndex = 6
|
Me.AxObjectListControl.TabIndex = 6
|
||||||
Me.AxObjectListControl.TabStop = False
|
Me.AxObjectListControl.TabStop = False
|
||||||
'
|
'
|
||||||
@@ -512,7 +514,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.ToolStripDokumente.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblWindreamView, Me.ToolStripDropDownButton2})
|
Me.ToolStripDokumente.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblWindreamView, Me.ToolStripDropDownButton2})
|
||||||
Me.ToolStripDokumente.Location = New System.Drawing.Point(0, 0)
|
Me.ToolStripDokumente.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.ToolStripDokumente.Name = "ToolStripDokumente"
|
Me.ToolStripDokumente.Name = "ToolStripDokumente"
|
||||||
Me.ToolStripDokumente.Size = New System.Drawing.Size(1060, 25)
|
Me.ToolStripDokumente.Size = New System.Drawing.Size(1063, 25)
|
||||||
Me.ToolStripDokumente.TabIndex = 2
|
Me.ToolStripDokumente.TabIndex = 2
|
||||||
Me.ToolStripDokumente.Text = "ToolStrip2"
|
Me.ToolStripDokumente.Text = "ToolStrip2"
|
||||||
'
|
'
|
||||||
@@ -541,14 +543,39 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
'
|
'
|
||||||
'TabFollowUp
|
'TabFollowUp
|
||||||
'
|
'
|
||||||
|
Me.TabFollowUp.Controls.Add(Me.ListViewFollowUps)
|
||||||
Me.TabFollowUp.Controls.Add(Me.grpbxFU_Profile)
|
Me.TabFollowUp.Controls.Add(Me.grpbxFU_Profile)
|
||||||
Me.TabFollowUp.Controls.Add(Me.Label5)
|
Me.TabFollowUp.Controls.Add(Me.Label5)
|
||||||
Me.TabFollowUp.Controls.Add(Me.ListViewFollowUp)
|
|
||||||
Me.TabFollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.Task_16xMD
|
Me.TabFollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.Task_16xMD
|
||||||
Me.TabFollowUp.Name = "TabFollowUp"
|
Me.TabFollowUp.Name = "TabFollowUp"
|
||||||
Me.TabFollowUp.Size = New System.Drawing.Size(1060, 312)
|
Me.TabFollowUp.Size = New System.Drawing.Size(1063, 316)
|
||||||
Me.TabFollowUp.Text = "Wiedervorlage"
|
Me.TabFollowUp.Text = "Wiedervorlage"
|
||||||
'
|
'
|
||||||
|
'ListViewFollowUps
|
||||||
|
'
|
||||||
|
Me.ListViewFollowUps.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Left) _
|
||||||
|
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.ListViewFollowUps.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader1, Me.ColumnHeader2})
|
||||||
|
Me.ListViewFollowUps.FullRowSelect = True
|
||||||
|
Me.ListViewFollowUps.HideSelection = False
|
||||||
|
Me.ListViewFollowUps.Location = New System.Drawing.Point(14, 36)
|
||||||
|
Me.ListViewFollowUps.Name = "ListViewFollowUps"
|
||||||
|
Me.ListViewFollowUps.Size = New System.Drawing.Size(263, 261)
|
||||||
|
Me.ListViewFollowUps.TabIndex = 5
|
||||||
|
Me.ListViewFollowUps.UseCompatibleStateImageBehavior = False
|
||||||
|
Me.ListViewFollowUps.View = System.Windows.Forms.View.Details
|
||||||
|
'
|
||||||
|
'ColumnHeader1
|
||||||
|
'
|
||||||
|
Me.ColumnHeader1.Text = "ID"
|
||||||
|
Me.ColumnHeader1.Width = 40
|
||||||
|
'
|
||||||
|
'ColumnHeader2
|
||||||
|
'
|
||||||
|
Me.ColumnHeader2.Text = "Title"
|
||||||
|
Me.ColumnHeader2.Width = 200
|
||||||
|
'
|
||||||
'grpbxFU_Profile
|
'grpbxFU_Profile
|
||||||
'
|
'
|
||||||
Me.grpbxFU_Profile.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
Me.grpbxFU_Profile.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||||
@@ -557,7 +584,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.grpbxFU_Profile.Controls.Add(Me.lblFollowUp_save)
|
Me.grpbxFU_Profile.Controls.Add(Me.lblFollowUp_save)
|
||||||
Me.grpbxFU_Profile.Controls.Add(Me.chkFollowUp)
|
Me.grpbxFU_Profile.Controls.Add(Me.chkFollowUp)
|
||||||
Me.grpbxFU_Profile.Controls.Add(Me.dtpFollowUp)
|
Me.grpbxFU_Profile.Controls.Add(Me.dtpFollowUp)
|
||||||
Me.grpbxFU_Profile.Controls.Add(Me.Label9)
|
Me.grpbxFU_Profile.Controls.Add(Me.lblWiedervorlage_Control)
|
||||||
Me.grpbxFU_Profile.Location = New System.Drawing.Point(283, 28)
|
Me.grpbxFU_Profile.Location = New System.Drawing.Point(283, 28)
|
||||||
Me.grpbxFU_Profile.Name = "grpbxFU_Profile"
|
Me.grpbxFU_Profile.Name = "grpbxFU_Profile"
|
||||||
Me.grpbxFU_Profile.Size = New System.Drawing.Size(774, 269)
|
Me.grpbxFU_Profile.Size = New System.Drawing.Size(774, 269)
|
||||||
@@ -574,6 +601,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.GroupBox4.Controls.Add(Me.Label6)
|
Me.GroupBox4.Controls.Add(Me.Label6)
|
||||||
Me.GroupBox4.Controls.Add(Me.ListBoxUser2Profile)
|
Me.GroupBox4.Controls.Add(Me.ListBoxUser2Profile)
|
||||||
Me.GroupBox4.Controls.Add(Me.Label7)
|
Me.GroupBox4.Controls.Add(Me.Label7)
|
||||||
|
Me.GroupBox4.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.GroupBox4.Location = New System.Drawing.Point(177, 20)
|
Me.GroupBox4.Location = New System.Drawing.Point(177, 20)
|
||||||
Me.GroupBox4.Name = "GroupBox4"
|
Me.GroupBox4.Name = "GroupBox4"
|
||||||
Me.GroupBox4.Size = New System.Drawing.Size(594, 243)
|
Me.GroupBox4.Size = New System.Drawing.Size(594, 243)
|
||||||
@@ -583,6 +611,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
'
|
'
|
||||||
'btnRemoveUser_FollowUp
|
'btnRemoveUser_FollowUp
|
||||||
'
|
'
|
||||||
|
Me.btnRemoveUser_FollowUp.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.btnRemoveUser_FollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.delete
|
Me.btnRemoveUser_FollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.delete
|
||||||
Me.btnRemoveUser_FollowUp.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
Me.btnRemoveUser_FollowUp.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
Me.btnRemoveUser_FollowUp.Location = New System.Drawing.Point(248, 124)
|
Me.btnRemoveUser_FollowUp.Location = New System.Drawing.Point(248, 124)
|
||||||
@@ -594,6 +623,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
'
|
'
|
||||||
'btnAddUser_FollowUp
|
'btnAddUser_FollowUp
|
||||||
'
|
'
|
||||||
|
Me.btnAddUser_FollowUp.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.btnAddUser_FollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.AddMark_10580
|
Me.btnAddUser_FollowUp.Image = Global.DD_Record_Organiser.My.Resources.Resources.AddMark_10580
|
||||||
Me.btnAddUser_FollowUp.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
Me.btnAddUser_FollowUp.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
|
||||||
Me.btnAddUser_FollowUp.Location = New System.Drawing.Point(248, 95)
|
Me.btnAddUser_FollowUp.Location = New System.Drawing.Point(248, 95)
|
||||||
@@ -605,6 +635,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
'
|
'
|
||||||
'cmbFollowUpUser
|
'cmbFollowUpUser
|
||||||
'
|
'
|
||||||
|
Me.cmbFollowUpUser.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.cmbFollowUpUser.FormattingEnabled = True
|
Me.cmbFollowUpUser.FormattingEnabled = True
|
||||||
Me.cmbFollowUpUser.Location = New System.Drawing.Point(248, 68)
|
Me.cmbFollowUpUser.Location = New System.Drawing.Point(248, 68)
|
||||||
Me.cmbFollowUpUser.Name = "cmbFollowUpUser"
|
Me.cmbFollowUpUser.Name = "cmbFollowUpUser"
|
||||||
@@ -614,9 +645,10 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
'Label6
|
'Label6
|
||||||
'
|
'
|
||||||
Me.Label6.AutoSize = True
|
Me.Label6.AutoSize = True
|
||||||
|
Me.Label6.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.Label6.Location = New System.Drawing.Point(245, 50)
|
Me.Label6.Location = New System.Drawing.Point(245, 50)
|
||||||
Me.Label6.Name = "Label6"
|
Me.Label6.Name = "Label6"
|
||||||
Me.Label6.Size = New System.Drawing.Size(61, 13)
|
Me.Label6.Size = New System.Drawing.Size(64, 13)
|
||||||
Me.Label6.TabIndex = 2
|
Me.Label6.TabIndex = 2
|
||||||
Me.Label6.Text = "Email-User:"
|
Me.Label6.Text = "Email-User:"
|
||||||
'
|
'
|
||||||
@@ -624,6 +656,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
'
|
'
|
||||||
Me.ListBoxUser2Profile.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
Me.ListBoxUser2Profile.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
||||||
Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
|
Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
|
||||||
|
Me.ListBoxUser2Profile.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
||||||
Me.ListBoxUser2Profile.FormattingEnabled = True
|
Me.ListBoxUser2Profile.FormattingEnabled = True
|
||||||
Me.ListBoxUser2Profile.Location = New System.Drawing.Point(9, 50)
|
Me.ListBoxUser2Profile.Location = New System.Drawing.Point(9, 50)
|
||||||
Me.ListBoxUser2Profile.Name = "ListBoxUser2Profile"
|
Me.ListBoxUser2Profile.Name = "ListBoxUser2Profile"
|
||||||
@@ -663,20 +696,22 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
'
|
'
|
||||||
'dtpFollowUp
|
'dtpFollowUp
|
||||||
'
|
'
|
||||||
|
Me.dtpFollowUp.Enabled = False
|
||||||
Me.dtpFollowUp.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
|
Me.dtpFollowUp.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
|
||||||
Me.dtpFollowUp.Location = New System.Drawing.Point(9, 33)
|
Me.dtpFollowUp.Location = New System.Drawing.Point(9, 33)
|
||||||
Me.dtpFollowUp.Name = "dtpFollowUp"
|
Me.dtpFollowUp.Name = "dtpFollowUp"
|
||||||
Me.dtpFollowUp.Size = New System.Drawing.Size(102, 21)
|
Me.dtpFollowUp.Size = New System.Drawing.Size(102, 21)
|
||||||
Me.dtpFollowUp.TabIndex = 1
|
Me.dtpFollowUp.TabIndex = 1
|
||||||
'
|
'
|
||||||
'Label9
|
'lblWiedervorlage_Control
|
||||||
'
|
'
|
||||||
Me.Label9.AutoSize = True
|
Me.lblWiedervorlage_Control.AutoSize = True
|
||||||
Me.Label9.Location = New System.Drawing.Point(6, 17)
|
Me.lblWiedervorlage_Control.Location = New System.Drawing.Point(6, 17)
|
||||||
Me.Label9.Name = "Label9"
|
Me.lblWiedervorlage_Control.Name = "lblWiedervorlage_Control"
|
||||||
Me.Label9.Size = New System.Drawing.Size(38, 13)
|
Me.lblWiedervorlage_Control.Size = New System.Drawing.Size(38, 13)
|
||||||
Me.Label9.TabIndex = 0
|
Me.lblWiedervorlage_Control.TabIndex = 0
|
||||||
Me.Label9.Text = "Label9"
|
Me.lblWiedervorlage_Control.Text = "Label9"
|
||||||
|
Me.lblWiedervorlage_Control.Visible = False
|
||||||
'
|
'
|
||||||
'Label5
|
'Label5
|
||||||
'
|
'
|
||||||
@@ -687,29 +722,6 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.Label5.TabIndex = 3
|
Me.Label5.TabIndex = 3
|
||||||
Me.Label5.Text = "Hinterlegte Wiedervorlagen"
|
Me.Label5.Text = "Hinterlegte Wiedervorlagen"
|
||||||
'
|
'
|
||||||
'ListViewFollowUp
|
|
||||||
'
|
|
||||||
Me.ListViewFollowUp.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
|
|
||||||
Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
|
|
||||||
Me.ListViewFollowUp.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader1, Me.ColumnHeader2})
|
|
||||||
Me.ListViewFollowUp.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
||||||
Me.ListViewFollowUp.FullRowSelect = True
|
|
||||||
Me.ListViewFollowUp.Location = New System.Drawing.Point(14, 28)
|
|
||||||
Me.ListViewFollowUp.Name = "ListViewFollowUp"
|
|
||||||
Me.ListViewFollowUp.Size = New System.Drawing.Size(244, 269)
|
|
||||||
Me.ListViewFollowUp.TabIndex = 2
|
|
||||||
Me.ListViewFollowUp.UseCompatibleStateImageBehavior = False
|
|
||||||
'
|
|
||||||
'ColumnHeader1
|
|
||||||
'
|
|
||||||
Me.ColumnHeader1.Text = "ID"
|
|
||||||
Me.ColumnHeader1.Width = 40
|
|
||||||
'
|
|
||||||
'ColumnHeader2
|
|
||||||
'
|
|
||||||
Me.ColumnHeader2.Text = "Wiedervorlagentitel"
|
|
||||||
Me.ColumnHeader2.Width = 280
|
|
||||||
'
|
|
||||||
'TabPos
|
'TabPos
|
||||||
'
|
'
|
||||||
Me.TabPos.Controls.Add(Me.Panel1)
|
Me.TabPos.Controls.Add(Me.Panel1)
|
||||||
@@ -717,7 +729,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.TabPos.Image = CType(resources.GetObject("TabPos.Image"), System.Drawing.Image)
|
Me.TabPos.Image = CType(resources.GetObject("TabPos.Image"), System.Drawing.Image)
|
||||||
Me.TabPos.Name = "TabPos"
|
Me.TabPos.Name = "TabPos"
|
||||||
Me.TabPos.PageVisible = False
|
Me.TabPos.PageVisible = False
|
||||||
Me.TabPos.Size = New System.Drawing.Size(1060, 312)
|
Me.TabPos.Size = New System.Drawing.Size(1063, 316)
|
||||||
Me.TabPos.Text = "Positionen"
|
Me.TabPos.Text = "Positionen"
|
||||||
'
|
'
|
||||||
'Panel1
|
'Panel1
|
||||||
@@ -726,7 +738,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill
|
Me.Panel1.Dock = System.Windows.Forms.DockStyle.Fill
|
||||||
Me.Panel1.Location = New System.Drawing.Point(0, 25)
|
Me.Panel1.Location = New System.Drawing.Point(0, 25)
|
||||||
Me.Panel1.Name = "Panel1"
|
Me.Panel1.Name = "Panel1"
|
||||||
Me.Panel1.Size = New System.Drawing.Size(1060, 287)
|
Me.Panel1.Size = New System.Drawing.Size(1063, 291)
|
||||||
Me.Panel1.TabIndex = 2
|
Me.Panel1.TabIndex = 2
|
||||||
'
|
'
|
||||||
'GridControlPos
|
'GridControlPos
|
||||||
@@ -735,7 +747,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.GridControlPos.Location = New System.Drawing.Point(0, 0)
|
Me.GridControlPos.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.GridControlPos.MainView = Me.grvwGridPos
|
Me.GridControlPos.MainView = Me.grvwGridPos
|
||||||
Me.GridControlPos.Name = "GridControlPos"
|
Me.GridControlPos.Name = "GridControlPos"
|
||||||
Me.GridControlPos.Size = New System.Drawing.Size(1060, 287)
|
Me.GridControlPos.Size = New System.Drawing.Size(1063, 291)
|
||||||
Me.GridControlPos.TabIndex = 0
|
Me.GridControlPos.TabIndex = 0
|
||||||
Me.GridControlPos.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwGridPos})
|
Me.GridControlPos.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwGridPos})
|
||||||
'
|
'
|
||||||
@@ -762,7 +774,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.BindingNavigatorPOS.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
|
Me.BindingNavigatorPOS.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
|
||||||
Me.BindingNavigatorPOS.Name = "BindingNavigatorPOS"
|
Me.BindingNavigatorPOS.Name = "BindingNavigatorPOS"
|
||||||
Me.BindingNavigatorPOS.PositionItem = Me.BindingNavigatorPositionItem
|
Me.BindingNavigatorPOS.PositionItem = Me.BindingNavigatorPositionItem
|
||||||
Me.BindingNavigatorPOS.Size = New System.Drawing.Size(1060, 25)
|
Me.BindingNavigatorPOS.Size = New System.Drawing.Size(1063, 25)
|
||||||
Me.BindingNavigatorPOS.TabIndex = 1
|
Me.BindingNavigatorPOS.TabIndex = 1
|
||||||
Me.BindingNavigatorPOS.Text = "BindingNavigator1"
|
Me.BindingNavigatorPOS.Text = "BindingNavigator1"
|
||||||
'
|
'
|
||||||
@@ -857,7 +869,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Me.ToolStripEdit.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tsButtonAdd, Me.tsButtonSave, Me.tsButtonDelete, Me.tsButtonEditMode, Me.ToolStripDropDownButton1, Me.tsButtonShowTaskOverview, Me.tsButtonShowWorkflowTasks})
|
Me.ToolStripEdit.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tsButtonAdd, Me.tsButtonSave, Me.tsButtonDelete, Me.tsButtonEditMode, Me.ToolStripDropDownButton1, Me.tsButtonShowTaskOverview, Me.tsButtonShowWorkflowTasks})
|
||||||
Me.ToolStripEdit.Location = New System.Drawing.Point(0, 0)
|
Me.ToolStripEdit.Location = New System.Drawing.Point(0, 0)
|
||||||
Me.ToolStripEdit.Name = "ToolStripEdit"
|
Me.ToolStripEdit.Name = "ToolStripEdit"
|
||||||
Me.ToolStripEdit.Size = New System.Drawing.Size(1062, 25)
|
Me.ToolStripEdit.Size = New System.Drawing.Size(1069, 25)
|
||||||
Me.ToolStripEdit.TabIndex = 0
|
Me.ToolStripEdit.TabIndex = 0
|
||||||
Me.ToolStripEdit.Text = "ToolStrip1"
|
Me.ToolStripEdit.Text = "ToolStrip1"
|
||||||
'
|
'
|
||||||
@@ -890,6 +902,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
'
|
'
|
||||||
'tsButtonEditMode
|
'tsButtonEditMode
|
||||||
'
|
'
|
||||||
|
Me.tsButtonEditMode.Enabled = False
|
||||||
Me.tsButtonEditMode.Image = Global.DD_Record_Organiser.My.Resources.Resources.EditLabel_13239
|
Me.tsButtonEditMode.Image = Global.DD_Record_Organiser.My.Resources.Resources.EditLabel_13239
|
||||||
Me.tsButtonEditMode.ImageTransparentColor = System.Drawing.Color.Magenta
|
Me.tsButtonEditMode.ImageTransparentColor = System.Drawing.Color.Magenta
|
||||||
Me.tsButtonEditMode.Name = "tsButtonEditMode"
|
Me.tsButtonEditMode.Name = "tsButtonEditMode"
|
||||||
@@ -1155,11 +1168,8 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Friend WithEvents lblFollowUp_save As System.Windows.Forms.Label
|
Friend WithEvents lblFollowUp_save As System.Windows.Forms.Label
|
||||||
Friend WithEvents chkFollowUp As System.Windows.Forms.CheckBox
|
Friend WithEvents chkFollowUp As System.Windows.Forms.CheckBox
|
||||||
Friend WithEvents dtpFollowUp As System.Windows.Forms.DateTimePicker
|
Friend WithEvents dtpFollowUp As System.Windows.Forms.DateTimePicker
|
||||||
Friend WithEvents Label9 As System.Windows.Forms.Label
|
Friend WithEvents lblWiedervorlage_Control As System.Windows.Forms.Label
|
||||||
Friend WithEvents Label5 As System.Windows.Forms.Label
|
Friend WithEvents Label5 As System.Windows.Forms.Label
|
||||||
Friend WithEvents ListViewFollowUp As System.Windows.Forms.ListView
|
|
||||||
Friend WithEvents ColumnHeader1 As System.Windows.Forms.ColumnHeader
|
|
||||||
Friend WithEvents ColumnHeader2 As System.Windows.Forms.ColumnHeader
|
|
||||||
Friend WithEvents ttToolTip As System.Windows.Forms.ToolTip
|
Friend WithEvents ttToolTip As System.Windows.Forms.ToolTip
|
||||||
Friend WithEvents ContextMenuDetails As System.Windows.Forms.ContextMenuStrip
|
Friend WithEvents ContextMenuDetails As System.Windows.Forms.ContextMenuStrip
|
||||||
Friend WithEvents ToolStripDokumente As System.Windows.Forms.ToolStrip
|
Friend WithEvents ToolStripDokumente As System.Windows.Forms.ToolStrip
|
||||||
@@ -1196,4 +1206,7 @@ Partial Class frmForm_Constructor_Main_2
|
|||||||
Friend WithEvents BindingNavigatorMoveNextItem As System.Windows.Forms.ToolStripButton
|
Friend WithEvents BindingNavigatorMoveNextItem As System.Windows.Forms.ToolStripButton
|
||||||
Friend WithEvents BindingNavigatorMoveLastItem As System.Windows.Forms.ToolStripButton
|
Friend WithEvents BindingNavigatorMoveLastItem As System.Windows.Forms.ToolStripButton
|
||||||
Friend WithEvents BindingNavigatorSeparator2 As System.Windows.Forms.ToolStripSeparator
|
Friend WithEvents BindingNavigatorSeparator2 As System.Windows.Forms.ToolStripSeparator
|
||||||
|
Friend WithEvents ListViewFollowUps As System.Windows.Forms.ListView
|
||||||
|
Friend WithEvents ColumnHeader1 As System.Windows.Forms.ColumnHeader
|
||||||
|
Friend WithEvents ColumnHeader2 As System.Windows.Forms.ColumnHeader
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -102,75 +102,80 @@
|
|||||||
#Region "+++++ Drag Drop Funktionen +++++"
|
#Region "+++++ Drag Drop Funktionen +++++"
|
||||||
|
|
||||||
Public Sub ControlDragDrop(type As String, Parent As GroupBox)
|
Public Sub ControlDragDrop(type As String, Parent As GroupBox)
|
||||||
Dim r As New System.Random()
|
Try
|
||||||
Dim def_font_family As String = DefaultFont.Name
|
Dim r As New System.Random()
|
||||||
Dim def_font_color As Integer = DefaultForeColor.ToArgb
|
Dim def_font_family As String = DefaultFont.Name
|
||||||
Dim def_font_style As Integer = 0
|
Dim def_font_color As Integer = DefaultForeColor.ToArgb
|
||||||
Dim def_font_size As Integer = 8
|
Dim def_font_style As Integer = 0
|
||||||
|
Dim def_font_size As Integer = 8
|
||||||
|
|
||||||
Dim random As Integer = r.Next(8, 100)
|
Dim random As Integer = r.Next(8, 100)
|
||||||
Select Case type
|
Select Case type
|
||||||
Case "lbl"
|
Case "lbl"
|
||||||
CtrlBuilder.AddLabel("lbl" & random, "Bezeichnung definieren", 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, "", True, Parent)
|
CtrlBuilder.AddLabel("lbl" & random, "Bezeichnung definieren", 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, "", True, Parent)
|
||||||
' Aktuelles Control in die Datenbank speichern
|
' Aktuelles Control in die Datenbank speichern
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
Case "txt"
|
Case "txt"
|
||||||
CtrlBuilder.AddTextBox("txt" & random, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, True, 0, 0, False, False, "String", True, Parent)
|
CtrlBuilder.AddTextBox("txt" & random, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, True, 0, 0, False, False, "String", True, Parent)
|
||||||
' Aktuelles Control in die Datenbank speichern
|
' Aktuelles Control in die Datenbank speichern
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
Case "cmb"
|
Case "cmb"
|
||||||
CtrlBuilder.AddComboBox("cmb" & random, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, True, 0, 0, "String", True, False, "", "", Parent)
|
CtrlBuilder.AddComboBox("cmb" & random, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, True, 0, 0, "String", True, False, "", "", Parent)
|
||||||
' Aktuelles Control in die Datenbank speichern
|
' Aktuelles Control in die Datenbank speichern
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
Case "dtp"
|
Case "dtp"
|
||||||
CtrlBuilder.AddDateTimePicker("dtp" & random, 0, 0, def_font_family, def_font_size, def_font_style, 0, False, 0, 0, False, True, Parent)
|
CtrlBuilder.AddDateTimePicker("dtp" & random, 0, 0, def_font_family, def_font_size, def_font_style, 0, False, 0, 0, False, True, Parent)
|
||||||
' Aktuelles Control in die Datenbank speichern
|
' Aktuelles Control in die Datenbank speichern
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
Case "dgv"
|
Case "dgv"
|
||||||
CtrlBuilder.AddDataGridView("dgv" & random, 0, 0, 0, 0, True, False, Parent)
|
CtrlBuilder.AddDataGridView("dgv" & random, 0, 0, 0, 0, True, False, Parent)
|
||||||
' Aktuelles Control in die Datenbank speichern
|
' Aktuelles Control in die Datenbank speichern
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
Case "chk"
|
Case "chk"
|
||||||
CtrlBuilder.AddCheckBox("chk" & random, "Bezeichn. defnieren", False, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, False, 0, 0, True, False, Parent)
|
CtrlBuilder.AddCheckBox("chk" & random, "Bezeichn. defnieren", False, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, False, 0, 0, True, False, Parent)
|
||||||
' Aktuelles Control in die Datenbank speichern
|
' Aktuelles Control in die Datenbank speichern
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
Case "rb"
|
Case "rb"
|
||||||
CtrlBuilder.AddRadioButton("rb" & random, "Bezeichn. defnieren", False, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, False, 0, 0, True, False, Parent)
|
CtrlBuilder.AddRadioButton("rb" & random, "Bezeichn. defnieren", False, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, False, 0, 0, True, False, Parent)
|
||||||
' Aktuelles Control in die Datenbank speichern
|
' Aktuelles Control in die Datenbank speichern
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
Case "pb"
|
Case "pb"
|
||||||
CtrlBuilder.AddPictureBox("pb" & random, 0, 0, 0, 0, True, False, Parent)
|
CtrlBuilder.AddPictureBox("pb" & random, 0, 0, 0, 0, True, False, Parent)
|
||||||
' Aktuelles Control in die Datenbank speichern
|
' Aktuelles Control in die Datenbank speichern
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
Case "gb"
|
Case "gb"
|
||||||
CtrlBuilder.AddGroupBox("gb" & random, "Bezeichn. defnieren", 0, 0, 0, 0, ColorToInt(SystemColors.Control), def_font_color, def_font_family, def_font_size, def_font_style, True, Parent)
|
CtrlBuilder.AddGroupBox("gb" & random, "Bezeichn. defnieren", 0, 0, 0, 0, ColorToInt(SystemColors.Control), def_font_color, def_font_family, def_font_size, def_font_style, True, Parent)
|
||||||
' Aktuelles Control in die Datenbank speichern
|
' Aktuelles Control in die Datenbank speichern
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
Case "f_addappointment"
|
Case "f_addappointment"
|
||||||
CtrlBuilder.FunctionAddAppointment("f_addappointment" & random, "Zu Kalender hinzufügen", 0, 0, 0, 0, True, Parent)
|
CtrlBuilder.FunctionAddAppointment("f_addappointment" & random, "Zu Kalender hinzufügen", 0, 0, 0, 0, True, Parent)
|
||||||
|
|
||||||
If ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl) = True Then
|
If ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl) = True Then
|
||||||
Dim ControlId = GetControlID_for_Name(CtrlBuilder.CurrentControl.Name, CURRENT_FORM_ID)
|
Dim ControlId = GetControlID_for_Name(CtrlBuilder.CurrentControl.Name, CURRENT_FORM_ID)
|
||||||
ClassFunctionCommands.InsertFunction(ControlId, "ADDAPPOINTMENT")
|
ClassFunctionCommands.InsertFunction(ControlId, "ADDAPPOINTMENT")
|
||||||
End If
|
End If
|
||||||
Case "f_addformdata"
|
Case "f_addformdata"
|
||||||
CtrlBuilder.FunctionAddFormData("f_addformdata" & random, "Add form Data", 0, 0, 0, 0, True, Parent)
|
CtrlBuilder.FunctionAddFormData("f_addformdata" & random, "Add form Data", 0, 0, 0, 0, True, Parent)
|
||||||
|
|
||||||
|
If ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl) = True Then
|
||||||
|
Dim ControlId = GetControlID_for_Name(CtrlBuilder.CurrentControl.Name, CURRENT_FORM_ID)
|
||||||
|
ClassFunctionCommands.InsertFunction(ControlId, "ADDFORMDATA")
|
||||||
|
End If
|
||||||
|
Case "lstbxcheck"
|
||||||
|
CtrlBuilder.AddCheckedListBox("chlb" & random, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, True, 0, 0, True, False, "", "", Parent)
|
||||||
|
' Aktuelles Control in die Datenbank speichern
|
||||||
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
|
Case "lstbx"
|
||||||
|
CtrlBuilder.AddListBox("lbx" & random, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, True, 0, 0, True, False, "", "", Parent)
|
||||||
|
' Aktuelles Control in die Datenbank speichern
|
||||||
|
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
||||||
|
Case Else
|
||||||
|
MsgBox("Event '" & type & "' nicht definiert")
|
||||||
|
End Select
|
||||||
|
Catch ex As Exception
|
||||||
|
MsgBox("unexpected Error in ControlDragDrop: " & vbNewLine, MsgBoxStyle.Critical)
|
||||||
|
End Try
|
||||||
|
|
||||||
If ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl) = True Then
|
|
||||||
Dim ControlId = GetControlID_for_Name(CtrlBuilder.CurrentControl.Name, CURRENT_FORM_ID)
|
|
||||||
ClassFunctionCommands.InsertFunction(ControlId, "ADDFORMDATA")
|
|
||||||
End If
|
|
||||||
Case "lstbxcheck"
|
|
||||||
CtrlBuilder.AddCheckedListBox("chlb" & random, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, True, 0, 0, True, False, "", "", Parent)
|
|
||||||
' Aktuelles Control in die Datenbank speichern
|
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
|
||||||
Case "lstbx"
|
|
||||||
CtrlBuilder.AddListBox("lbx" & random, 0, 0, def_font_family, def_font_color, def_font_size, def_font_style, 0, True, 0, 0, True, False, "", "", Parent)
|
|
||||||
' Aktuelles Control in die Datenbank speichern
|
|
||||||
ClassControlCommands.InsertControl(CtrlBuilder.CurrentControl)
|
|
||||||
Case Else
|
|
||||||
MsgBox("Event '" & type & "' nicht definiert")
|
|
||||||
End Select
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Public Sub Groupbox_DragDrop(sender As Object, e As DragEventArgs)
|
Public Sub Groupbox_DragDrop(sender As Object, e As DragEventArgs)
|
||||||
|
|||||||
@@ -293,7 +293,11 @@ Public Class frmSQLEditor
|
|||||||
|
|
||||||
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
||||||
Try
|
Try
|
||||||
Dim upd As String = "UPDATE TBPMO_CONTROL SET SQL_COMMAND_1 = '" & txtValue.Text & "', CONNECTION_ID_1 = " & cmbConnection.SelectedValue & ", CHANGED_WHO = '" & Environment.UserName & "' WHERE GUID = " & CURRENT_CONTROL_ID
|
Dim sql_comamnd As String = txtValue.Text
|
||||||
|
If txtValue.Text.Contains("'") Then
|
||||||
|
sql_comamnd = txtValue.Text.Replace("'", "''")
|
||||||
|
End If
|
||||||
|
Dim upd As String = "UPDATE TBPMO_CONTROL SET SQL_COMMAND_1 = '" & sql_comamnd & "', CONNECTION_ID_1 = " & cmbConnection.SelectedValue & ", CHANGED_WHO = '" & Environment.UserName & "' WHERE GUID = " & CURRENT_CONTROL_ID
|
||||||
If ClassDatabase.Execute_non_Query(upd, True) Then
|
If ClassDatabase.Execute_non_Query(upd, True) Then
|
||||||
MsgBox("SQL-Befehl erfolgreich gespeichert!", MsgBoxStyle.Exclamation)
|
MsgBox("SQL-Befehl erfolgreich gespeichert!", MsgBoxStyle.Exclamation)
|
||||||
End If
|
End If
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
||||||
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
||||||
<Product Name="Record Organizer" Id="*" UpgradeCode="{6387325E-F6D7-46BE-BBA8-D0E37BEEF800}" Version="2.0.1.0" Manufacturer="Digital Data" Language="1031" Codepage="1252">
|
<Product Name="Record Organizer" Id="*" UpgradeCode="{6387325E-F6D7-46BE-BBA8-D0E37BEEF800}" Version="2.1.0.0" Manufacturer="Digital Data" Language="1031" Codepage="1252">
|
||||||
<Package Id="*" Keywords="Installer" Description="Digital Data Record Organizer Setup" Comments="Record Organizer is a registered Trademark of Digital Data" Manufacturer="Digital Data" InstallerVersion="100" Languages="1031" Compressed="yes" SummaryCodepage="1252"/>
|
<Package Id="*" Keywords="Installer" Description="Digital Data Record Organizer Setup" Comments="Record Organizer is a registered Trademark of Digital Data" Manufacturer="Digital Data" InstallerVersion="100" Languages="1031" Compressed="yes" SummaryCodepage="1252"/>
|
||||||
|
|
||||||
<!-- Nicht entfernen! -->
|
<!-- Nicht entfernen! -->
|
||||||
|
|||||||
Reference in New Issue
Block a user