This commit is contained in:
SchreiberM
2016-09-27 16:15:30 +02:00
8 changed files with 4501 additions and 4455 deletions

View File

@@ -100,6 +100,8 @@ Public Class ClassFunctionCommandsUI
Dim PlaceString As Object = dr.Item("STRING3") Dim PlaceString As Object = dr.Item("STRING3")
Dim DescString As Object = dr.Item("STRING4") Dim DescString As Object = dr.Item("STRING4")
' Setzt das Start-Datum des Termins fest.
' Wenn kein Start-Datum gefunden wurde, wird das aktuelle Datum benutzt.
If Not IsDBNull(FromDateID) Then If Not IsDBNull(FromDateID) Then
If FromDateID <> 0 Then If FromDateID <> 0 Then
FromDateName = Get_Name_for_ControlID(FromDateID, FormID) FromDateName = Get_Name_for_ControlID(FromDateID, FormID)
@@ -112,16 +114,23 @@ Public Class ClassFunctionCommandsUI
apt.Start = Date.Now apt.Start = Date.Now
End If End If
' Setzt das End-Datum des Termins fest.
' Wenn kein End-Datum gefunden wurde, wird das Start-Datum benutzt.
If Not IsDBNull(ToDateID) Then If Not IsDBNull(ToDateID) Then
If ToDateID <> 0 Then If ToDateID <> 0 Then
ToDateName = Get_Name_for_ControlID(ToDateID, FormID) ToDateName = Get_Name_for_ControlID(ToDateID, FormID)
ToDateValue = Date.Parse(FindControlValue(ToDateName, PanelControls))
apt.End = ToDateValue If (Date.TryParse(FindControlValue(ToDateName, PanelControls), ToDateValue) = True) Then
apt.End = ToDateValue
Else
apt.End = apt.Start
End If
Else Else
apt.End = Date.Now apt.End = apt.Start
End If End If
Else Else
apt.End = Date.Now apt.End = apt.Start
End If End If
If Not IsDBNull(SubjectString) OrElse Not String.IsNullOrWhiteSpace(SubjectString) Then If Not IsDBNull(SubjectString) OrElse Not String.IsNullOrWhiteSpace(SubjectString) Then

View File

@@ -267,6 +267,9 @@
<DesignTime>True</DesignTime> <DesignTime>True</DesignTime>
<DependentUpon>DD_DMSDataSet.xsd</DependentUpon> <DependentUpon>DD_DMSDataSet.xsd</DependentUpon>
</Compile> </Compile>
<Compile Include="DD_ECMAdmin.vb">
<DependentUpon>DD_ECMAdmin.xsd</DependentUpon>
</Compile>
<Compile Include="frmChooseParentRecord.Designer.vb"> <Compile Include="frmChooseParentRecord.Designer.vb">
<DependentUpon>frmChooseParentRecord.vb</DependentUpon> <DependentUpon>frmChooseParentRecord.vb</DependentUpon>
</Compile> </Compile>
@@ -713,6 +716,9 @@
<EmbeddedResource Include="frmWD_Link_to_Record.resx"> <EmbeddedResource Include="frmWD_Link_to_Record.resx">
<DependentUpon>frmWD_Link_to_Record.vb</DependentUpon> <DependentUpon>frmWD_Link_to_Record.vb</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="frmWD_Resultlist_Config.en-US.resx">
<DependentUpon>frmWD_Resultlist_Config.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="frmWD_Resultlist_Config.resx"> <EmbeddedResource Include="frmWD_Resultlist_Config.resx">
<DependentUpon>frmWD_Resultlist_Config.vb</DependentUpon> <DependentUpon>frmWD_Resultlist_Config.vb</DependentUpon>
</EmbeddedResource> </EmbeddedResource>

File diff suppressed because it is too large Load Diff

View File

@@ -468,9 +468,9 @@ WHERE (GUID = @GUID)</CommandText>
<InsertCommand> <InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="true"> <DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>INSERT INTO TBPMO_DOCSEARCH_RESULTLIST_CONFIG <CommandText>INSERT INTO TBPMO_DOCSEARCH_RESULTLIST_CONFIG
(ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, VISIBLE) (ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE, EDITABLE)
VALUES (@ENTITY_ID,@LANGUAGE,@COLUMN_VIEW,@HEADER_CAPTION,@WIDTH,@TYPE_ID,@ADDED_WHO,@VISIBLE); VALUES (@ENTITY_ID,@LANGUAGE,@COLUMN_VIEW,@HEADER_CAPTION,@WIDTH,@TYPE_ID,@ADDED_WHO,@ADDED_WHEN,@CHANGED_WHO,@CHANGED_WHEN,@VISIBLE,@EDITABLE);
SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG WHERE (GUID = SCOPE_IDENTITY())</CommandText> SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE, EDITABLE FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG WHERE (GUID = SCOPE_IDENTITY())</CommandText>
<Parameters> <Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="ENTITY_ID" ColumnName="ENTITY_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@ENTITY_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ENTITY_ID" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="ENTITY_ID" ColumnName="ENTITY_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@ENTITY_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ENTITY_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="LANGUAGE" ColumnName="LANGUAGE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(5)" DbType="AnsiString" Direction="Input" ParameterName="@LANGUAGE" Precision="0" ProviderType="VarChar" Scale="0" Size="5" SourceColumn="LANGUAGE" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="LANGUAGE" ColumnName="LANGUAGE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(5)" DbType="AnsiString" Direction="Input" ParameterName="@LANGUAGE" Precision="0" ProviderType="VarChar" Scale="0" Size="5" SourceColumn="LANGUAGE" SourceColumnNullMapping="false" SourceVersion="Current" />
@@ -479,7 +479,11 @@ SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, A
<Parameter AllowDbNull="false" AutogeneratedName="WIDTH" ColumnName="WIDTH" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@WIDTH" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="WIDTH" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="WIDTH" ColumnName="WIDTH" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@WIDTH" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="WIDTH" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="TYPE_ID" ColumnName="TYPE_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="tinyint" DbType="Byte" Direction="Input" ParameterName="@TYPE_ID" Precision="0" ProviderType="TinyInt" Scale="0" Size="1" SourceColumn="TYPE_ID" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="TYPE_ID" ColumnName="TYPE_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="tinyint" DbType="Byte" Direction="Input" ParameterName="@TYPE_ID" Precision="0" ProviderType="TinyInt" Scale="0" Size="1" SourceColumn="TYPE_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="ADDED_WHO" ColumnName="ADDED_WHO" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@ADDED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="ADDED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="ADDED_WHO" ColumnName="ADDED_WHO" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@ADDED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="ADDED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="ADDED_WHEN" ColumnName="ADDED_WHEN" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@ADDED_WHEN" Precision="0" ProviderType="DateTime" Scale="0" Size="8" SourceColumn="ADDED_WHEN" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="CHANGED_WHO" ColumnName="CHANGED_WHO" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@CHANGED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="CHANGED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="CHANGED_WHEN" ColumnName="CHANGED_WHEN" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@CHANGED_WHEN" Precision="0" ProviderType="DateTime" Scale="0" Size="8" SourceColumn="CHANGED_WHEN" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="VISIBLE" ColumnName="VISIBLE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@VISIBLE" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="VISIBLE" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="VISIBLE" ColumnName="VISIBLE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@VISIBLE" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="VISIBLE" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="EDITABLE" ColumnName="EDITABLE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@EDITABLE" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="EDITABLE" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters> </Parameters>
</DbCommand> </DbCommand>
</InsertCommand> </InsertCommand>
@@ -494,9 +498,9 @@ FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG</CommandText>
<DbCommand CommandType="Text" ModifiedByUser="true"> <DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>UPDATE TBPMO_DOCSEARCH_RESULTLIST_CONFIG <CommandText>UPDATE TBPMO_DOCSEARCH_RESULTLIST_CONFIG
SET ENTITY_ID = @ENTITY_ID, LANGUAGE = @LANGUAGE, COLUMN_VIEW = @COLUMN_VIEW, HEADER_CAPTION = @HEADER_CAPTION, WIDTH = @WIDTH, TYPE_ID = @TYPE_ID, SET ENTITY_ID = @ENTITY_ID, LANGUAGE = @LANGUAGE, COLUMN_VIEW = @COLUMN_VIEW, HEADER_CAPTION = @HEADER_CAPTION, WIDTH = @WIDTH, TYPE_ID = @TYPE_ID,
CHANGED_WHO = @CHANGED_WHO, VISIBLE = @VISIBLE ADDED_WHO = @ADDED_WHO, ADDED_WHEN = @ADDED_WHEN, CHANGED_WHO = @CHANGED_WHO, CHANGED_WHEN = @CHANGED_WHEN, VISIBLE = @VISIBLE, EDITABLE = @EDITABLE
WHERE (GUID = @GUID); WHERE (GUID = @GUID);
SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG WHERE (GUID = @GUID)</CommandText> SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, VISIBLE, EDITABLE FROM TBPMO_DOCSEARCH_RESULTLIST_CONFIG WHERE (GUID = @GUID)</CommandText>
<Parameters> <Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="ENTITY_ID" ColumnName="ENTITY_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@ENTITY_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ENTITY_ID" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="ENTITY_ID" ColumnName="ENTITY_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@ENTITY_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ENTITY_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="LANGUAGE" ColumnName="LANGUAGE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(5)" DbType="AnsiString" Direction="Input" ParameterName="@LANGUAGE" Precision="0" ProviderType="VarChar" Scale="0" Size="5" SourceColumn="LANGUAGE" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="LANGUAGE" ColumnName="LANGUAGE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(5)" DbType="AnsiString" Direction="Input" ParameterName="@LANGUAGE" Precision="0" ProviderType="VarChar" Scale="0" Size="5" SourceColumn="LANGUAGE" SourceColumnNullMapping="false" SourceVersion="Current" />
@@ -504,8 +508,12 @@ SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, A
<Parameter AllowDbNull="false" AutogeneratedName="HEADER_CAPTION" ColumnName="HEADER_CAPTION" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@HEADER_CAPTION" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="HEADER_CAPTION" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="HEADER_CAPTION" ColumnName="HEADER_CAPTION" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@HEADER_CAPTION" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="HEADER_CAPTION" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="WIDTH" ColumnName="WIDTH" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@WIDTH" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="WIDTH" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="WIDTH" ColumnName="WIDTH" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@WIDTH" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="WIDTH" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="TYPE_ID" ColumnName="TYPE_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="tinyint" DbType="Byte" Direction="Input" ParameterName="@TYPE_ID" Precision="0" ProviderType="TinyInt" Scale="0" Size="1" SourceColumn="TYPE_ID" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="TYPE_ID" ColumnName="TYPE_ID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="tinyint" DbType="Byte" Direction="Input" ParameterName="@TYPE_ID" Precision="0" ProviderType="TinyInt" Scale="0" Size="1" SourceColumn="TYPE_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="ADDED_WHO" ColumnName="ADDED_WHO" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@ADDED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="ADDED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="ADDED_WHEN" ColumnName="ADDED_WHEN" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@ADDED_WHEN" Precision="0" ProviderType="DateTime" Scale="0" Size="8" SourceColumn="ADDED_WHEN" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="CHANGED_WHO" ColumnName="CHANGED_WHO" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@CHANGED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="CHANGED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="true" AutogeneratedName="CHANGED_WHO" ColumnName="CHANGED_WHO" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@CHANGED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="CHANGED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="CHANGED_WHEN" ColumnName="CHANGED_WHEN" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@CHANGED_WHEN" Precision="0" ProviderType="DateTime" Scale="0" Size="8" SourceColumn="CHANGED_WHEN" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="VISIBLE" ColumnName="VISIBLE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@VISIBLE" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="VISIBLE" SourceColumnNullMapping="false" SourceVersion="Current" /> <Parameter AllowDbNull="false" AutogeneratedName="VISIBLE" ColumnName="VISIBLE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@VISIBLE" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="VISIBLE" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="EDITABLE" ColumnName="EDITABLE" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="bit" DbType="Boolean" Direction="Input" ParameterName="@EDITABLE" Precision="0" ProviderType="Bit" Scale="0" Size="1" SourceColumn="EDITABLE" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="GUID" ColumnName="GUID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@GUID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="GUID" SourceColumnNullMapping="false" SourceVersion="Original" /> <Parameter AllowDbNull="false" AutogeneratedName="GUID" ColumnName="GUID" DataSourceName="DD_ECM.dbo.TBPMO_DOCSEARCH_RESULTLIST_CONFIG" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@GUID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="GUID" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters> </Parameters>
</DbCommand> </DbCommand>
@@ -525,6 +533,7 @@ SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, A
<Mapping SourceColumn="CHANGED_WHO" DataSetColumn="CHANGED_WHO" /> <Mapping SourceColumn="CHANGED_WHO" DataSetColumn="CHANGED_WHO" />
<Mapping SourceColumn="CHANGED_WHEN" DataSetColumn="CHANGED_WHEN" /> <Mapping SourceColumn="CHANGED_WHEN" DataSetColumn="CHANGED_WHEN" />
<Mapping SourceColumn="VISIBLE" DataSetColumn="VISIBLE" /> <Mapping SourceColumn="VISIBLE" DataSetColumn="VISIBLE" />
<Mapping SourceColumn="EDITABLE" DataSetColumn="EDITABLE" />
</Mappings> </Mappings>
<Sources /> <Sources />
</TableAdapter> </TableAdapter>
@@ -1043,6 +1052,7 @@ SELECT GUID, ENTITY_ID, LANGUAGE, COLUMN_VIEW, HEADER_CAPTION, WIDTH, TYPE_ID, A
</xs:element> </xs:element>
<xs:element name="CHANGED_WHEN" msprop:Generator_ColumnVarNameInTable="columnCHANGED_WHEN" msprop:Generator_ColumnPropNameInRow="CHANGED_WHEN" msprop:Generator_ColumnPropNameInTable="CHANGED_WHENColumn" msprop:Generator_UserColumnName="CHANGED_WHEN" type="xs:dateTime" minOccurs="0" /> <xs:element name="CHANGED_WHEN" msprop:Generator_ColumnVarNameInTable="columnCHANGED_WHEN" msprop:Generator_ColumnPropNameInRow="CHANGED_WHEN" msprop:Generator_ColumnPropNameInTable="CHANGED_WHENColumn" msprop:Generator_UserColumnName="CHANGED_WHEN" type="xs:dateTime" minOccurs="0" />
<xs:element name="VISIBLE" msprop:Generator_ColumnVarNameInTable="columnVISIBLE" msprop:Generator_ColumnPropNameInRow="VISIBLE" msprop:Generator_ColumnPropNameInTable="VISIBLEColumn" msprop:Generator_UserColumnName="VISIBLE" type="xs:boolean" /> <xs:element name="VISIBLE" msprop:Generator_ColumnVarNameInTable="columnVISIBLE" msprop:Generator_ColumnPropNameInRow="VISIBLE" msprop:Generator_ColumnPropNameInTable="VISIBLEColumn" msprop:Generator_UserColumnName="VISIBLE" type="xs:boolean" />
<xs:element name="EDITABLE" msprop:Generator_ColumnVarNameInTable="columnEDITABLE" msprop:Generator_ColumnPropNameInRow="EDITABLE" msprop:Generator_ColumnPropNameInTable="EDITABLEColumn" msprop:Generator_UserColumnName="EDITABLE" type="xs:boolean" />
</xs:sequence> </xs:sequence>
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>

View File

@@ -13,11 +13,11 @@
<Shape ID="DesignTable:TBWH_ENTITIES" ZOrder="7" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" /> <Shape ID="DesignTable:TBWH_ENTITIES" ZOrder="7" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
<Shape ID="DesignTable:TBWH_USER_GROUPS" ZOrder="6" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" /> <Shape ID="DesignTable:TBWH_USER_GROUPS" ZOrder="6" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
<Shape ID="DesignTable:TBPMO_SAP_FUBA" ZOrder="4" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" /> <Shape ID="DesignTable:TBPMO_SAP_FUBA" ZOrder="4" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
<Shape ID="DesignTable:TBPMO_DOCSEARCH_RESULTLIST_CONFIG" ZOrder="1" X="34" Y="348" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:DT_VORSCHAU" ZOrder="9" X="1342" Y="401" Height="48" Width="154" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="44" /> <Shape ID="DesignTable:DT_VORSCHAU" ZOrder="9" X="1342" Y="401" Height="48" Width="154" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="44" />
<Shape ID="DesignTable:TBAD_Users" ZOrder="5" X="365" Y="384" Height="144" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" /> <Shape ID="DesignTable:TBAD_Users" ZOrder="5" X="365" Y="384" Height="144" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:TBWH_Users1" ZOrder="3" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" /> <Shape ID="DesignTable:TBWH_Users1" ZOrder="3" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
<Shape ID="DesignTable:TBWH_Users2" ZOrder="2" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" /> <Shape ID="DesignTable:TBWH_Users2" ZOrder="2" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
<Shape ID="DesignTable:TBPMO_DOCSEARCH_RESULTLIST_CONFIG" ZOrder="1" X="34" Y="348" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
</Shapes> </Shapes>
<Connectors> <Connectors>
<Connector ID="DesignRelation:FK_TBPMO_FORM_CONSTRUCTOR_DETAIL_CONSTRUCT_ID" ZOrder="11" LineWidth="11"> <Connector ID="DesignRelation:FK_TBPMO_FORM_CONSTRUCTOR_DETAIL_CONSTRUCT_ID" ZOrder="11" LineWidth="11">

View File

@@ -53,6 +53,7 @@ Partial Class frmWD_Resultlist_Config
Me.colCHANGED_WHEN = New DevExpress.XtraGrid.Columns.GridColumn() Me.colCHANGED_WHEN = New DevExpress.XtraGrid.Columns.GridColumn()
Me.colVISIBLE = New DevExpress.XtraGrid.Columns.GridColumn() Me.colVISIBLE = New DevExpress.XtraGrid.Columns.GridColumn()
Me.colNAME = New DevExpress.XtraGrid.Columns.GridColumn() Me.colNAME = New DevExpress.XtraGrid.Columns.GridColumn()
Me.EDITABLECheckBox = New System.Windows.Forms.CheckBox()
Me.GroupBox1 = New System.Windows.Forms.GroupBox() Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.Label4 = New System.Windows.Forms.Label() Me.Label4 = New System.Windows.Forms.Label()
Me.Label3 = New System.Windows.Forms.Label() Me.Label3 = New System.Windows.Forms.Label()
@@ -128,12 +129,12 @@ Partial Class frmWD_Resultlist_Config
' '
'SplitContainer1.Panel1 'SplitContainer1.Panel1
' '
resources.ApplyResources(Me.SplitContainer1.Panel1, "SplitContainer1.Panel1")
Me.SplitContainer1.Panel1.Controls.Add(Me.GridMain) Me.SplitContainer1.Panel1.Controls.Add(Me.GridMain)
' '
'SplitContainer1.Panel2 'SplitContainer1.Panel2
' '
resources.ApplyResources(Me.SplitContainer1.Panel2, "SplitContainer1.Panel2") resources.ApplyResources(Me.SplitContainer1.Panel2, "SplitContainer1.Panel2")
Me.SplitContainer1.Panel2.Controls.Add(Me.EDITABLECheckBox)
Me.SplitContainer1.Panel2.Controls.Add(Me.GroupBox1) Me.SplitContainer1.Panel2.Controls.Add(Me.GroupBox1)
Me.SplitContainer1.Panel2.Controls.Add(Me.labelSuccess) Me.SplitContainer1.Panel2.Controls.Add(Me.labelSuccess)
Me.SplitContainer1.Panel2.Controls.Add(Me.TYPE_IDComboBox) Me.SplitContainer1.Panel2.Controls.Add(Me.TYPE_IDComboBox)
@@ -164,18 +165,6 @@ Partial Class frmWD_Resultlist_Config
' '
resources.ApplyResources(Me.GridMain, "GridMain") resources.ApplyResources(Me.GridMain, "GridMain")
Me.GridMain.DataSource = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource Me.GridMain.DataSource = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource
Me.GridMain.EmbeddedNavigator.AccessibleDescription = resources.GetString("GridMain.EmbeddedNavigator.AccessibleDescription")
Me.GridMain.EmbeddedNavigator.AccessibleName = resources.GetString("GridMain.EmbeddedNavigator.AccessibleName")
Me.GridMain.EmbeddedNavigator.AllowHtmlTextInToolTip = CType(resources.GetObject("GridMain.EmbeddedNavigator.AllowHtmlTextInToolTip"), DevExpress.Utils.DefaultBoolean)
Me.GridMain.EmbeddedNavigator.Anchor = CType(resources.GetObject("GridMain.EmbeddedNavigator.Anchor"), System.Windows.Forms.AnchorStyles)
Me.GridMain.EmbeddedNavigator.BackgroundImage = CType(resources.GetObject("GridMain.EmbeddedNavigator.BackgroundImage"), System.Drawing.Image)
Me.GridMain.EmbeddedNavigator.BackgroundImageLayout = CType(resources.GetObject("GridMain.EmbeddedNavigator.BackgroundImageLayout"), System.Windows.Forms.ImageLayout)
Me.GridMain.EmbeddedNavigator.ImeMode = CType(resources.GetObject("GridMain.EmbeddedNavigator.ImeMode"), System.Windows.Forms.ImeMode)
Me.GridMain.EmbeddedNavigator.MaximumSize = CType(resources.GetObject("GridMain.EmbeddedNavigator.MaximumSize"), System.Drawing.Size)
Me.GridMain.EmbeddedNavigator.TextLocation = CType(resources.GetObject("GridMain.EmbeddedNavigator.TextLocation"), DevExpress.XtraEditors.NavigatorButtonsTextLocation)
Me.GridMain.EmbeddedNavigator.ToolTip = resources.GetString("GridMain.EmbeddedNavigator.ToolTip")
Me.GridMain.EmbeddedNavigator.ToolTipIconType = CType(resources.GetObject("GridMain.EmbeddedNavigator.ToolTipIconType"), DevExpress.Utils.ToolTipIconType)
Me.GridMain.EmbeddedNavigator.ToolTipTitle = resources.GetString("GridMain.EmbeddedNavigator.ToolTipTitle")
Me.GridMain.MainView = Me.grvwMain Me.GridMain.MainView = Me.grvwMain
Me.GridMain.Name = "GridMain" Me.GridMain.Name = "GridMain"
Me.GridMain.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwMain}) Me.GridMain.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.grvwMain})
@@ -192,7 +181,6 @@ Partial Class frmWD_Resultlist_Config
' '
'grvwMain 'grvwMain
' '
resources.ApplyResources(Me.grvwMain, "grvwMain")
Me.grvwMain.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID, Me.colENTITY_ID, Me.colLANGUAGE, Me.colCOLUMN_VIEW, Me.colHEADER_CAPTION, Me.colWIDTH, Me.colTYPE_ID, Me.colADDED_WHO, Me.colADDED_WHEN, Me.colCHANGED_WHO, Me.colCHANGED_WHEN, Me.colVISIBLE, Me.colNAME}) Me.grvwMain.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID, Me.colENTITY_ID, Me.colLANGUAGE, Me.colCOLUMN_VIEW, Me.colHEADER_CAPTION, Me.colWIDTH, Me.colTYPE_ID, Me.colADDED_WHO, Me.colADDED_WHEN, Me.colCHANGED_WHO, Me.colCHANGED_WHEN, Me.colVISIBLE, Me.colNAME})
Me.grvwMain.GridControl = Me.GridMain Me.grvwMain.GridControl = Me.GridMain
Me.grvwMain.Name = "grvwMain" Me.grvwMain.Name = "grvwMain"
@@ -201,75 +189,75 @@ Partial Class frmWD_Resultlist_Config
' '
'colGUID 'colGUID
' '
resources.ApplyResources(Me.colGUID, "colGUID")
Me.colGUID.FieldName = "GUID" Me.colGUID.FieldName = "GUID"
Me.colGUID.Name = "colGUID" Me.colGUID.Name = "colGUID"
resources.ApplyResources(Me.colGUID, "colGUID")
' '
'colENTITY_ID 'colENTITY_ID
' '
resources.ApplyResources(Me.colENTITY_ID, "colENTITY_ID")
Me.colENTITY_ID.FieldName = "ENTITY_ID" Me.colENTITY_ID.FieldName = "ENTITY_ID"
Me.colENTITY_ID.Name = "colENTITY_ID" Me.colENTITY_ID.Name = "colENTITY_ID"
resources.ApplyResources(Me.colENTITY_ID, "colENTITY_ID")
' '
'colLANGUAGE 'colLANGUAGE
' '
resources.ApplyResources(Me.colLANGUAGE, "colLANGUAGE")
Me.colLANGUAGE.FieldName = "LANGUAGE" Me.colLANGUAGE.FieldName = "LANGUAGE"
Me.colLANGUAGE.Name = "colLANGUAGE" Me.colLANGUAGE.Name = "colLANGUAGE"
resources.ApplyResources(Me.colLANGUAGE, "colLANGUAGE")
' '
'colCOLUMN_VIEW 'colCOLUMN_VIEW
' '
resources.ApplyResources(Me.colCOLUMN_VIEW, "colCOLUMN_VIEW")
Me.colCOLUMN_VIEW.FieldName = "COLUMN_VIEW" Me.colCOLUMN_VIEW.FieldName = "COLUMN_VIEW"
Me.colCOLUMN_VIEW.Name = "colCOLUMN_VIEW" Me.colCOLUMN_VIEW.Name = "colCOLUMN_VIEW"
resources.ApplyResources(Me.colCOLUMN_VIEW, "colCOLUMN_VIEW")
' '
'colHEADER_CAPTION 'colHEADER_CAPTION
' '
resources.ApplyResources(Me.colHEADER_CAPTION, "colHEADER_CAPTION")
Me.colHEADER_CAPTION.FieldName = "HEADER_CAPTION" Me.colHEADER_CAPTION.FieldName = "HEADER_CAPTION"
Me.colHEADER_CAPTION.Name = "colHEADER_CAPTION" Me.colHEADER_CAPTION.Name = "colHEADER_CAPTION"
resources.ApplyResources(Me.colHEADER_CAPTION, "colHEADER_CAPTION")
' '
'colWIDTH 'colWIDTH
' '
resources.ApplyResources(Me.colWIDTH, "colWIDTH")
Me.colWIDTH.FieldName = "WIDTH" Me.colWIDTH.FieldName = "WIDTH"
Me.colWIDTH.Name = "colWIDTH" Me.colWIDTH.Name = "colWIDTH"
resources.ApplyResources(Me.colWIDTH, "colWIDTH")
' '
'colTYPE_ID 'colTYPE_ID
' '
resources.ApplyResources(Me.colTYPE_ID, "colTYPE_ID")
Me.colTYPE_ID.FieldName = "TYPE_ID" Me.colTYPE_ID.FieldName = "TYPE_ID"
Me.colTYPE_ID.Name = "colTYPE_ID" Me.colTYPE_ID.Name = "colTYPE_ID"
resources.ApplyResources(Me.colTYPE_ID, "colTYPE_ID")
' '
'colADDED_WHO 'colADDED_WHO
' '
resources.ApplyResources(Me.colADDED_WHO, "colADDED_WHO")
Me.colADDED_WHO.FieldName = "ADDED_WHO" Me.colADDED_WHO.FieldName = "ADDED_WHO"
Me.colADDED_WHO.Name = "colADDED_WHO" Me.colADDED_WHO.Name = "colADDED_WHO"
resources.ApplyResources(Me.colADDED_WHO, "colADDED_WHO")
' '
'colADDED_WHEN 'colADDED_WHEN
' '
resources.ApplyResources(Me.colADDED_WHEN, "colADDED_WHEN")
Me.colADDED_WHEN.FieldName = "ADDED_WHEN" Me.colADDED_WHEN.FieldName = "ADDED_WHEN"
Me.colADDED_WHEN.Name = "colADDED_WHEN" Me.colADDED_WHEN.Name = "colADDED_WHEN"
resources.ApplyResources(Me.colADDED_WHEN, "colADDED_WHEN")
' '
'colCHANGED_WHO 'colCHANGED_WHO
' '
resources.ApplyResources(Me.colCHANGED_WHO, "colCHANGED_WHO")
Me.colCHANGED_WHO.FieldName = "CHANGED_WHO" Me.colCHANGED_WHO.FieldName = "CHANGED_WHO"
Me.colCHANGED_WHO.Name = "colCHANGED_WHO" Me.colCHANGED_WHO.Name = "colCHANGED_WHO"
resources.ApplyResources(Me.colCHANGED_WHO, "colCHANGED_WHO")
' '
'colCHANGED_WHEN 'colCHANGED_WHEN
' '
resources.ApplyResources(Me.colCHANGED_WHEN, "colCHANGED_WHEN")
Me.colCHANGED_WHEN.FieldName = "CHANGED_WHEN" Me.colCHANGED_WHEN.FieldName = "CHANGED_WHEN"
Me.colCHANGED_WHEN.Name = "colCHANGED_WHEN" Me.colCHANGED_WHEN.Name = "colCHANGED_WHEN"
resources.ApplyResources(Me.colCHANGED_WHEN, "colCHANGED_WHEN")
' '
'colVISIBLE 'colVISIBLE
' '
resources.ApplyResources(Me.colVISIBLE, "colVISIBLE")
Me.colVISIBLE.FieldName = "VISIBLE" Me.colVISIBLE.FieldName = "VISIBLE"
Me.colVISIBLE.Name = "colVISIBLE" Me.colVISIBLE.Name = "colVISIBLE"
resources.ApplyResources(Me.colVISIBLE, "colVISIBLE")
' '
'colNAME 'colNAME
' '
@@ -278,13 +266,20 @@ Partial Class frmWD_Resultlist_Config
Me.colNAME.Name = "colNAME" Me.colNAME.Name = "colNAME"
Me.colNAME.UnboundType = DevExpress.Data.UnboundColumnType.[String] Me.colNAME.UnboundType = DevExpress.Data.UnboundColumnType.[String]
' '
'EDITABLECheckBox
'
Me.EDITABLECheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "EDITABLE", True))
resources.ApplyResources(Me.EDITABLECheckBox, "EDITABLECheckBox")
Me.EDITABLECheckBox.Name = "EDITABLECheckBox"
Me.EDITABLECheckBox.UseVisualStyleBackColor = True
'
'GroupBox1 'GroupBox1
' '
resources.ApplyResources(Me.GroupBox1, "GroupBox1")
Me.GroupBox1.Controls.Add(Me.Label4) Me.GroupBox1.Controls.Add(Me.Label4)
Me.GroupBox1.Controls.Add(Me.Label3) Me.GroupBox1.Controls.Add(Me.Label3)
Me.GroupBox1.Controls.Add(Me.Label2) Me.GroupBox1.Controls.Add(Me.Label2)
Me.GroupBox1.Controls.Add(Me.Label1) Me.GroupBox1.Controls.Add(Me.Label1)
resources.ApplyResources(Me.GroupBox1, "GroupBox1")
Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.TabStop = False Me.GroupBox1.TabStop = False
' '
@@ -316,11 +311,11 @@ Partial Class frmWD_Resultlist_Config
' '
'TYPE_IDComboBox 'TYPE_IDComboBox
' '
resources.ApplyResources(Me.TYPE_IDComboBox, "TYPE_IDComboBox")
Me.TYPE_IDComboBox.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "TYPE_ID", True)) Me.TYPE_IDComboBox.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "TYPE_ID", True))
Me.TYPE_IDComboBox.DataSource = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource Me.TYPE_IDComboBox.DataSource = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource
Me.TYPE_IDComboBox.DisplayMember = "TYPE_ID" Me.TYPE_IDComboBox.DisplayMember = "TYPE_ID"
Me.TYPE_IDComboBox.FormattingEnabled = True Me.TYPE_IDComboBox.FormattingEnabled = True
resources.ApplyResources(Me.TYPE_IDComboBox, "TYPE_IDComboBox")
Me.TYPE_IDComboBox.Name = "TYPE_IDComboBox" Me.TYPE_IDComboBox.Name = "TYPE_IDComboBox"
Me.TYPE_IDComboBox.ValueMember = "TYPE_ID" Me.TYPE_IDComboBox.ValueMember = "TYPE_ID"
' '
@@ -331,19 +326,19 @@ Partial Class frmWD_Resultlist_Config
' '
'LANGUAGEComboBox 'LANGUAGEComboBox
' '
resources.ApplyResources(Me.LANGUAGEComboBox, "LANGUAGEComboBox")
Me.LANGUAGEComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "LANGUAGE", True)) Me.LANGUAGEComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "LANGUAGE", True))
Me.LANGUAGEComboBox.FormattingEnabled = True Me.LANGUAGEComboBox.FormattingEnabled = True
Me.LANGUAGEComboBox.Items.AddRange(New Object() {resources.GetString("LANGUAGEComboBox.Items"), resources.GetString("LANGUAGEComboBox.Items1")}) Me.LANGUAGEComboBox.Items.AddRange(New Object() {resources.GetString("LANGUAGEComboBox.Items"), resources.GetString("LANGUAGEComboBox.Items1")})
resources.ApplyResources(Me.LANGUAGEComboBox, "LANGUAGEComboBox")
Me.LANGUAGEComboBox.Name = "LANGUAGEComboBox" Me.LANGUAGEComboBox.Name = "LANGUAGEComboBox"
' '
'ComboBox1 'ComboBox1
' '
resources.ApplyResources(Me.ComboBox1, "ComboBox1")
Me.ComboBox1.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "ENTITY_ID", True)) Me.ComboBox1.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "ENTITY_ID", True))
Me.ComboBox1.DataSource = Me.TBWH_ENTITYBindingSource Me.ComboBox1.DataSource = Me.TBWH_ENTITYBindingSource
Me.ComboBox1.DisplayMember = "FORM_TITLE" Me.ComboBox1.DisplayMember = "FORM_TITLE"
Me.ComboBox1.FormattingEnabled = True Me.ComboBox1.FormattingEnabled = True
resources.ApplyResources(Me.ComboBox1, "ComboBox1")
Me.ComboBox1.Name = "ComboBox1" Me.ComboBox1.Name = "ComboBox1"
Me.ComboBox1.ValueMember = "FORM_ID" Me.ComboBox1.ValueMember = "FORM_ID"
' '
@@ -359,8 +354,8 @@ Partial Class frmWD_Resultlist_Config
' '
'GUIDTextBox 'GUIDTextBox
' '
resources.ApplyResources(Me.GUIDTextBox, "GUIDTextBox")
Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "GUID", True)) Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "GUID", True))
resources.ApplyResources(Me.GUIDTextBox, "GUIDTextBox")
Me.GUIDTextBox.Name = "GUIDTextBox" Me.GUIDTextBox.Name = "GUIDTextBox"
Me.GUIDTextBox.ReadOnly = True Me.GUIDTextBox.ReadOnly = True
' '
@@ -376,8 +371,8 @@ Partial Class frmWD_Resultlist_Config
' '
'COLUMN_VIEWTextBox 'COLUMN_VIEWTextBox
' '
resources.ApplyResources(Me.COLUMN_VIEWTextBox, "COLUMN_VIEWTextBox")
Me.COLUMN_VIEWTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "COLUMN_VIEW", True)) Me.COLUMN_VIEWTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "COLUMN_VIEW", True))
resources.ApplyResources(Me.COLUMN_VIEWTextBox, "COLUMN_VIEWTextBox")
Me.COLUMN_VIEWTextBox.Name = "COLUMN_VIEWTextBox" Me.COLUMN_VIEWTextBox.Name = "COLUMN_VIEWTextBox"
' '
'HEADER_CAPTIONLabel 'HEADER_CAPTIONLabel
@@ -387,8 +382,8 @@ Partial Class frmWD_Resultlist_Config
' '
'HEADER_CAPTIONTextBox 'HEADER_CAPTIONTextBox
' '
resources.ApplyResources(Me.HEADER_CAPTIONTextBox, "HEADER_CAPTIONTextBox")
Me.HEADER_CAPTIONTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "HEADER_CAPTION", True)) Me.HEADER_CAPTIONTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "HEADER_CAPTION", True))
resources.ApplyResources(Me.HEADER_CAPTIONTextBox, "HEADER_CAPTIONTextBox")
Me.HEADER_CAPTIONTextBox.Name = "HEADER_CAPTIONTextBox" Me.HEADER_CAPTIONTextBox.Name = "HEADER_CAPTIONTextBox"
' '
'WIDTHLabel 'WIDTHLabel
@@ -398,8 +393,8 @@ Partial Class frmWD_Resultlist_Config
' '
'WIDTHTextBox 'WIDTHTextBox
' '
resources.ApplyResources(Me.WIDTHTextBox, "WIDTHTextBox")
Me.WIDTHTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "WIDTH", True)) Me.WIDTHTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "WIDTH", True))
resources.ApplyResources(Me.WIDTHTextBox, "WIDTHTextBox")
Me.WIDTHTextBox.Name = "WIDTHTextBox" Me.WIDTHTextBox.Name = "WIDTHTextBox"
' '
'TYPE_IDLabel 'TYPE_IDLabel
@@ -414,8 +409,8 @@ Partial Class frmWD_Resultlist_Config
' '
'ADDED_WHOTextBox 'ADDED_WHOTextBox
' '
resources.ApplyResources(Me.ADDED_WHOTextBox, "ADDED_WHOTextBox")
Me.ADDED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "ADDED_WHO", True)) Me.ADDED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "ADDED_WHO", True))
resources.ApplyResources(Me.ADDED_WHOTextBox, "ADDED_WHOTextBox")
Me.ADDED_WHOTextBox.Name = "ADDED_WHOTextBox" Me.ADDED_WHOTextBox.Name = "ADDED_WHOTextBox"
Me.ADDED_WHOTextBox.ReadOnly = True Me.ADDED_WHOTextBox.ReadOnly = True
' '
@@ -426,8 +421,8 @@ Partial Class frmWD_Resultlist_Config
' '
'ADDED_WHENTextBox 'ADDED_WHENTextBox
' '
resources.ApplyResources(Me.ADDED_WHENTextBox, "ADDED_WHENTextBox")
Me.ADDED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "ADDED_WHEN", True)) Me.ADDED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "ADDED_WHEN", True))
resources.ApplyResources(Me.ADDED_WHENTextBox, "ADDED_WHENTextBox")
Me.ADDED_WHENTextBox.Name = "ADDED_WHENTextBox" Me.ADDED_WHENTextBox.Name = "ADDED_WHENTextBox"
Me.ADDED_WHENTextBox.ReadOnly = True Me.ADDED_WHENTextBox.ReadOnly = True
' '
@@ -438,8 +433,8 @@ Partial Class frmWD_Resultlist_Config
' '
'CHANGED_WHOTextBox 'CHANGED_WHOTextBox
' '
resources.ApplyResources(Me.CHANGED_WHOTextBox, "CHANGED_WHOTextBox")
Me.CHANGED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "CHANGED_WHO", True)) Me.CHANGED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "CHANGED_WHO", True))
resources.ApplyResources(Me.CHANGED_WHOTextBox, "CHANGED_WHOTextBox")
Me.CHANGED_WHOTextBox.Name = "CHANGED_WHOTextBox" Me.CHANGED_WHOTextBox.Name = "CHANGED_WHOTextBox"
Me.CHANGED_WHOTextBox.ReadOnly = True Me.CHANGED_WHOTextBox.ReadOnly = True
' '
@@ -450,15 +445,15 @@ Partial Class frmWD_Resultlist_Config
' '
'CHANGED_WHENTextBox 'CHANGED_WHENTextBox
' '
resources.ApplyResources(Me.CHANGED_WHENTextBox, "CHANGED_WHENTextBox")
Me.CHANGED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "CHANGED_WHEN", True)) Me.CHANGED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "CHANGED_WHEN", True))
resources.ApplyResources(Me.CHANGED_WHENTextBox, "CHANGED_WHENTextBox")
Me.CHANGED_WHENTextBox.Name = "CHANGED_WHENTextBox" Me.CHANGED_WHENTextBox.Name = "CHANGED_WHENTextBox"
Me.CHANGED_WHENTextBox.ReadOnly = True Me.CHANGED_WHENTextBox.ReadOnly = True
' '
'VISIBLECheckBox 'VISIBLECheckBox
' '
resources.ApplyResources(Me.VISIBLECheckBox, "VISIBLECheckBox")
Me.VISIBLECheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "VISIBLE", True)) Me.VISIBLECheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource, "VISIBLE", True))
resources.ApplyResources(Me.VISIBLECheckBox, "VISIBLECheckBox")
Me.VISIBLECheckBox.Name = "VISIBLECheckBox" Me.VISIBLECheckBox.Name = "VISIBLECheckBox"
Me.VISIBLECheckBox.UseVisualStyleBackColor = True Me.VISIBLECheckBox.UseVisualStyleBackColor = True
' '
@@ -478,13 +473,13 @@ Partial Class frmWD_Resultlist_Config
' '
'TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator 'TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator
' '
resources.ApplyResources(Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator, "TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator")
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.AddNewItem = Me.BindingNavigatorAddNewItem Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.AddNewItem = Me.BindingNavigatorAddNewItem
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.BindingSource = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.BindingSource = Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingSource
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.CountItem = Me.BindingNavigatorCountItem Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.CountItem = Me.BindingNavigatorCountItem
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.CountItemFormat = "of {0}" Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.CountItemFormat = "of {0}"
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.DeleteItem = Me.BindingNavigatorDeleteItem Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.DeleteItem = Me.BindingNavigatorDeleteItem
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem}) Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem})
resources.ApplyResources(Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator, "TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator")
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem
@@ -494,37 +489,37 @@ Partial Class frmWD_Resultlist_Config
' '
'BindingNavigatorAddNewItem 'BindingNavigatorAddNewItem
' '
resources.ApplyResources(Me.BindingNavigatorAddNewItem, "BindingNavigatorAddNewItem")
Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
resources.ApplyResources(Me.BindingNavigatorAddNewItem, "BindingNavigatorAddNewItem")
Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem" Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem"
' '
'BindingNavigatorCountItem 'BindingNavigatorCountItem
' '
resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem" Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
' '
'BindingNavigatorDeleteItem 'BindingNavigatorDeleteItem
' '
resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem")
Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem")
Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem" Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem"
' '
'BindingNavigatorMoveFirstItem 'BindingNavigatorMoveFirstItem
' '
resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem" Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
' '
'BindingNavigatorMovePreviousItem 'BindingNavigatorMovePreviousItem
' '
resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem" Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
' '
'BindingNavigatorSeparator 'BindingNavigatorSeparator
' '
resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator" Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
' '
'BindingNavigatorPositionItem 'BindingNavigatorPositionItem
' '
@@ -533,30 +528,30 @@ Partial Class frmWD_Resultlist_Config
' '
'BindingNavigatorSeparator1 'BindingNavigatorSeparator1
' '
resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1" Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
' '
'BindingNavigatorMoveNextItem 'BindingNavigatorMoveNextItem
' '
resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem" Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
' '
'BindingNavigatorMoveLastItem 'BindingNavigatorMoveLastItem
' '
resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem" Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
' '
'BindingNavigatorSeparator2 'BindingNavigatorSeparator2
' '
resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2" Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
' '
'TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem 'TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem
' '
resources.ApplyResources(Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem, "TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem")
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
resources.ApplyResources(Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem, "TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem")
Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.Name = "TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem" Me.TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem.Name = "TBPMO_DOCSEARCH_RESULTLIST_CONFIGBindingNavigatorSaveItem"
' '
'TBWH_ENTITYTableAdapter 'TBWH_ENTITYTableAdapter
@@ -686,4 +681,5 @@ Partial Class frmWD_Resultlist_Config
Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents colNAME As DevExpress.XtraGrid.Columns.GridColumn Friend WithEvents colNAME As DevExpress.XtraGrid.Columns.GridColumn
Friend WithEvents EDITABLECheckBox As System.Windows.Forms.CheckBox
End Class End Class

View File

@@ -117,48 +117,22 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<data name="GroupBox1.Text" xml:space="preserve"> <assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<value>Column Types:</value> <data name="CheckBox1.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data> </data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="labelSuccess.Size" type="System.Drawing.Size, System.Drawing"> <data name="CheckBox1.Location" type="System.Drawing.Point, System.Drawing">
<value>120, 16</value> <value>220, 205</value>
</data> </data>
<data name="labelSuccess.Text" xml:space="preserve"> <data name="CheckBox1.Size" type="System.Drawing.Size, System.Drawing">
<value>Changes saved!</value> <value>81, 17</value>
</data> </data>
<data name="LANGUAGELabel1.Size" type="System.Drawing.Size, System.Drawing"> <data name="CheckBox1.TabIndex" type="System.Int32, mscorlib">
<value>58, 13</value> <value>32</value>
</data> </data>
<data name="LANGUAGELabel1.Text" xml:space="preserve"> <data name="CheckBox1.Text" xml:space="preserve">
<value>Language:</value> <value>CheckBox1</value>
</data>
<data name="ENTITY_IDLabel.Size" type="System.Drawing.Size, System.Drawing">
<value>36, 13</value>
</data>
<data name="ENTITY_IDLabel.Text" xml:space="preserve">
<value>Entity:</value>
</data>
<data name="HEADER_CAPTIONLabel.Size" type="System.Drawing.Size, System.Drawing">
<value>68, 13</value>
</data>
<data name="HEADER_CAPTIONLabel.Text" xml:space="preserve">
<value>Column Title:</value>
</data>
<data name="WIDTHLabel.Size" type="System.Drawing.Size, System.Drawing">
<value>76, 13</value>
</data>
<data name="WIDTHLabel.Text" xml:space="preserve">
<value>Column Width:</value>
</data>
<data name="TYPE_IDLabel.Size" type="System.Drawing.Size, System.Drawing">
<value>72, 13</value>
</data>
<data name="TYPE_IDLabel.Text" xml:space="preserve">
<value>Column Type:</value>
</data>
<data name="VISIBLECheckBox.Text" xml:space="preserve">
<value>Visible</value>
</data> </data>
<data name="BindingNavigatorAddNewItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <data name="BindingNavigatorAddNewItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value> <value>

File diff suppressed because it is too large Load Diff