Dodaj pliki projektów.

This commit is contained in:
2025-10-31 12:50:24 +01:00
parent 06b6823bd9
commit 7173a37b29
169 changed files with 53145 additions and 0 deletions

1
.svn/entries Normal file
View File

@@ -0,0 +1 @@
12

1
.svn/format Normal file
View File

@@ -0,0 +1 @@
12

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -0,0 +1,197 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Globalization;
using System.Text;
using System.Reflection;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.IO;
using System.Threading;
using System.Windows.Markup;
using System.Data.Odbc;
using System.Data.SqlClient;
using Haftmittel.Properties;
namespace Haftmittel
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private int tow = 0;
private int ope = 0;
private string connstr = string.Empty;
public MainWindow()
{
try
{
string[] cmd = Environment.GetCommandLineArgs();
if (cmd.Count() < 2)
{
MessageBox.Show("Za mało parametrów");
this.Close();
return;
}
if (OdczytajPlik(cmd[1]))
{
if (string.IsNullOrWhiteSpace(connstr))
{
connstr = Settings.Default.ConnectionString;
}
else
{
connstr = PrzerobConnectionString(connstr);
}
DataContext = new ClassHaftmittel(tow, ope, connstr);
}
else
{
this.Close();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
Thread.CurrentThread.CurrentUICulture = new CultureInfo(Settings.Default.Language);
this.Language = XmlLanguage.GetLanguage(Thread.CurrentThread.CurrentUICulture.Name);
try
{
InitializeComponent();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
/// <summary>
/// odczytuje plik CSV wysłany z XLa
/// </summary>
/// <param name="nazwa"></param>
private bool OdczytajPlik(string nazwa)
{
try
{
StreamReader reader = File.OpenText(nazwa);
string line;
while ((line = reader.ReadLine()) != null)
{
string[] items = line.Split(';');
// pierwszy parametr to GID towaru, drugi operatora
tow = Convert.ToInt32(items[1]);
ope = Convert.ToInt32(items[2]);
for (int licz = 3; licz < items.Length - 1; licz++)
{
if (!string.IsNullOrWhiteSpace(items[licz]))
{
connstr += @items[licz] + ";";
}
}
connstr = connstr.Replace("\"", "");
}
return true;
}
catch (Exception)
{
MessageBox.Show(string.Format("Problemy z otwarciem lub zawartością pliku {0}", nazwa));
return false;
}
}
private void Image_MouseDown_1(object sender, MouseButtonEventArgs e)
{
// (DataContext as ClassHaftmittel).SDS_Obrazek1Change();
if ((sender as Image).Opacity == 1)
{
(sender as Image).Opacity = 0.2;
}
else
{
(sender as Image).Opacity = 1;
}
}
private void Button_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
if (DataContext != null)
{
if ((DataContext as ClassHaftmittel).IsChanged)
{
if (MessageBox.Show("Niezapisane dane. Zakończyć?", "Koniec", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
{
e.Cancel = false;
}
else
{
e.Cancel = true;
}
}
}
}
private void ComboBox_KeyDown(object sender, KeyEventArgs e)
{
ObservableCollection<ClassSkladnik> lc = ((sender as ComboBox).ItemsSource as ObservableCollection<ClassSkladnik>);
ClassSkladnik c = lc.Where(x => x.Kod.ToUpper().StartsWith(e.Key.ToString().Last().ToString())).FirstOrDefault();
if (c != null)
{
(sender as ComboBox).SelectedItem = c;
}
}
private string PrzerobConnectionString(string connstr)
{
if (!string.IsNullOrWhiteSpace(connstr))
{
var odbc = new OdbcConnectionStringBuilder(connstr);
var sql = new SqlConnectionStringBuilder()
{
DataSource = odbc["server"].ToString(),
InitialCatalog = odbc["database"].ToString(),
UserID = odbc["uid"].ToString(),
Password = odbc["pwd"].ToString(),
PersistSecurityInfo = (odbc["trusted_connection"].ToString() == "true")
};
return sql.ConnectionString;
}
else
{
throw new Exception("Problem z dostępem do bazy");
}
}
}
}

View File

@@ -0,0 +1,17 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="Haftmittel.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="ConnectionString" Type="(Connection string)" Scope="Application">
<DesignTimeValue Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;ConnectionString&gt;Data Source=192.168.17.100;Initial Catalog=CDNXL_GOTEC_80;User ID=sa;Password=Cdn01&lt;/ConnectionString&gt;
&lt;ProviderName&gt;System.Data.SqlClient&lt;/ProviderName&gt;
&lt;/SerializableConnectionString&gt;</DesignTimeValue>
<Value Profile="(Default)">Data Source=192.168.17.100;Initial Catalog=CDNXL_GOTEC_80;User ID=sa;Password=Cdn01</Value>
</Setting>
<Setting Name="Language" Type="System.String" Scope="Application">
<Value Profile="(Default)">pl-PL</Value>
</Setting>
</Settings>
</SettingsFile>

View File

@@ -0,0 +1,482 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="DataSetLista" targetNamespace="http://tempuri.org/DataSetLista.xsd" xmlns:mstns="http://tempuri.org/DataSetLista.xsd" xmlns="http://tempuri.org/DataSetLista.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:annotation>
<xs:appinfo source="urn:schemas-microsoft-com:xml-msdatasource">
<DataSource DefaultConnectionIndex="0" FunctionsComponentName="QueriesTableAdapter" Modifier="AutoLayout, AnsiClass, Class, Public" SchemaSerializationMode="IncludeSchema" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<Connections>
<Connection AppSettingsObjectName="Settings" AppSettingsPropertyName="ConnectionString" ConnectionStringObject="" IsAppSettingsProperty="true" Modifier="Assembly" Name="ConnectionString (Settings)" ParameterPrefix="@" PropertyReference="ApplicationSettings.Haftmittel.Properties.Settings.GlobalReference.Default.ConnectionString" Provider="System.Data.SqlClient" />
</Connections>
<Tables>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="ListaOldTableAdapter" GeneratorDataComponentClassName="ListaOldTableAdapter" Name="ListaOld" UserDataComponentName="ListaOldTableAdapter">
<MainSource>
<DbSource ConnectionRef="ConnectionString (Settings)" DbObjectName="CDNXL_GOTEC_80.myconsult_haftmittel.Lista" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Fill" GenerateShortCommands="true" GeneratorSourceName="Fill" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [myconsult_haftmittel].[Lista] ([hml_TwrTyp], [hml_TwrNumer], [hml_DataPowstania], [hml_DataArchiwizacji], [hml_Herstellort], [hml_SDStext], [hml_SDS1], [hml_SDS2], [hml_SDS3], [hml_SDS4], [hml_SDS5], [hml_SDS6], [hml_SDS7], [hml_SDS8], [hml_SDS9], [hml_SDS10], [hml_Schichten], [hml_Eigenschaften], [hml_Anleitung], [hml_FS_od], [hml_FS_do], [hml_Dichte], [hml_Viskositat_od], [hml_Viskositat_do], [hml_Farbe], [hml_Verdunnung], [hml_Schichtdicke_od], [hml_Schichtdicke_do], [hml_Leistung], [hml_Lagerkapazitat], [hml_Verarbeitung], [hml_Inh0_Id], [hml_Inh0_Procent], [hml_Inh0_ProcentDo], [hml_Inh1_Id], [hml_Inh1_Procent], [hml_Inh1_ProcentDo], [hml_Inh2_Id], [hml_Inh2_Procent], [hml_Inh2_ProcentDo], [hml_Inh3_Id], [hml_Inh3_Procent], [hml_Inh3_ProcentDo], [hml_Inh4_Id], [hml_Inh4_Procent], [hml_Inh4_ProcentDo], [hml_Inh5_Id], [hml_Inh5_Procent], [hml_Inh5_ProcentDo], [hml_Inh6_Id], [hml_Inh6_Procent], [hml_Inh6_ProcentDo], [hml_Inh7_Id], [hml_Inh7_Procent], [hml_Inh7_ProcentDo], [hml_Inh8_Id], [hml_Inh8_Procent], [hml_Inh8_ProcentDo], [hml_Inh9_Id], [hml_Inh9_Procent], [hml_Inh9_ProcentDo], [hml_Behelter], [hml_OpeNumer], [hml_Dichte_do], [hml_Inh10_Id], [hml_Inh11_Id], [hml_Inh12_Id], [hml_Inh13_Id], [hml_Inh14_Id], [hml_Inh15_Id], [hml_Inh16_Id], [hml_Inh17_Id], [hml_Inh18_Id], [hml_Inh19_Id], [hml_Inh10_Procent], [hml_Inh11_Procent], [hml_Inh12_Procent], [hml_Inh13_Procent], [hml_Inh14_Procent], [hml_Inh15_Procent], [hml_Inh16_Procent], [hml_Inh17_Procent], [hml_Inh18_Procent], [hml_Inh19_Procent], [hml_Inh10_ProcentDo], [hml_Inh11_ProcentDo], [hml_Inh12_ProcentDo], [hml_Inh13_ProcentDo], [hml_Inh14_ProcentDo], [hml_Inh15_ProcentDo], [hml_Inh16_ProcentDo], [hml_Inh17_ProcentDo], [hml_Inh18_ProcentDo], [hml_Inh19_ProcentDo]) VALUES (@hml_TwrTyp, @hml_TwrNumer, @hml_DataPowstania, @hml_DataArchiwizacji, @hml_Herstellort, @hml_SDStext, @hml_SDS1, @hml_SDS2, @hml_SDS3, @hml_SDS4, @hml_SDS5, @hml_SDS6, @hml_SDS7, @hml_SDS8, @hml_SDS9, @hml_SDS10, @hml_Schichten, @hml_Eigenschaften, @hml_Anleitung, @hml_FS_od, @hml_FS_do, @hml_Dichte, @hml_Viskositat_od, @hml_Viskositat_do, @hml_Farbe, @hml_Verdunnung, @hml_Schichtdicke_od, @hml_Schichtdicke_do, @hml_Leistung, @hml_Lagerkapazitat, @hml_Verarbeitung, @hml_Inh0_Id, @hml_Inh0_Procent, @hml_Inh0_ProcentDo, @hml_Inh1_Id, @hml_Inh1_Procent, @hml_Inh1_ProcentDo, @hml_Inh2_Id, @hml_Inh2_Procent, @hml_Inh2_ProcentDo, @hml_Inh3_Id, @hml_Inh3_Procent, @hml_Inh3_ProcentDo, @hml_Inh4_Id, @hml_Inh4_Procent, @hml_Inh4_ProcentDo, @hml_Inh5_Id, @hml_Inh5_Procent, @hml_Inh5_ProcentDo, @hml_Inh6_Id, @hml_Inh6_Procent, @hml_Inh6_ProcentDo, @hml_Inh7_Id, @hml_Inh7_Procent, @hml_Inh7_ProcentDo, @hml_Inh8_Id, @hml_Inh8_Procent, @hml_Inh8_ProcentDo, @hml_Inh9_Id, @hml_Inh9_Procent, @hml_Inh9_ProcentDo, @hml_Behelter, @hml_OpeNumer, @hml_Dichte_do, @hml_Inh10_Id, @hml_Inh11_Id, @hml_Inh12_Id, @hml_Inh13_Id, @hml_Inh14_Id, @hml_Inh15_Id, @hml_Inh16_Id, @hml_Inh17_Id, @hml_Inh18_Id, @hml_Inh19_Id, @hml_Inh10_Procent, @hml_Inh11_Procent, @hml_Inh12_Procent, @hml_Inh13_Procent, @hml_Inh14_Procent, @hml_Inh15_Procent, @hml_Inh16_Procent, @hml_Inh17_Procent, @hml_Inh18_Procent, @hml_Inh19_Procent, @hml_Inh10_ProcentDo, @hml_Inh11_ProcentDo, @hml_Inh12_ProcentDo, @hml_Inh13_ProcentDo, @hml_Inh14_ProcentDo, @hml_Inh15_ProcentDo, @hml_Inh16_ProcentDo, @hml_Inh17_ProcentDo, @hml_Inh18_ProcentDo, @hml_Inh19_ProcentDo)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int16" Direction="Input" ParameterName="@hml_TwrTyp" Precision="0" ProviderType="SmallInt" Scale="0" Size="0" SourceColumn="hml_TwrTyp" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_TwrNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@hml_DataPowstania" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="hml_DataPowstania" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@hml_DataArchiwizacji" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="hml_DataArchiwizacji" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Herstellort" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Herstellort" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_SDStext" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_SDStext" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS1" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS2" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS3" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS3" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS4" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS5" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS5" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS6" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS6" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS7" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS7" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS8" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS9" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS9" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS10" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS10" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Schichten" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Schichten" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Eigenschaften" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Eigenschaften" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Anleitung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Anleitung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_FS_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_FS_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_FS_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_FS_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Dichte" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Dichte" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Viskositat_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Viskositat_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Viskositat_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Viskositat_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Farbe" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Farbe" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Verdunnung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Verdunnung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Schichtdicke_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Schichtdicke_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Schichtdicke_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Schichtdicke_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Leistung" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Leistung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Lagerkapazitat" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Lagerkapazitat" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Verarbeitung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Verarbeitung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh0_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh0_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh0_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh0_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh0_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh0_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh1_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh1_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh1_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh1_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh1_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh1_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh2_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh2_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh2_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh2_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh2_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh2_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh3_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh3_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh3_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh3_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh3_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh3_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh4_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh4_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh4_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh4_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh4_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh4_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh5_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh5_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh5_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh5_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh5_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh5_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh6_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh6_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh6_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh6_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh6_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh6_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh7_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh7_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh7_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh7_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh7_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh7_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh8_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh8_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh8_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh8_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh8_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh8_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh9_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh9_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh9_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh9_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh9_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh9_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Behelter" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Behelter" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_OpeNumer" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_OpeNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Dichte_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Dichte_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh10_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh10_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh11_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh11_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh12_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh12_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh13_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh13_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh14_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh14_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh15_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh15_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh16_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh16_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh17_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh17_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh18_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh18_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh19_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh19_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh10_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh10_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh11_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh11_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh12_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh12_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh13_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh13_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh14_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh14_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh15_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh15_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh16_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh16_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh17_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh17_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh18_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh18_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh19_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh19_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh10_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh10_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh11_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh11_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh12_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh12_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh13_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh13_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh14_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh14_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh15_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh15_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh16_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh16_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh17_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh17_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh18_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh18_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh19_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh19_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT *
, COALESCE(CDN.NazwaObiektu(128, hml_OpeNumer, 0, 2), '') AS Ope_Ident
FROM myconsult_haftmittel.Lista
WHERE hml_TwrNumer = @TwrNumer
ORDER BY hml_DataPowstania</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="TwrNumer" ColumnName="hml_TwrNumer" DataSourceName="CDNXL_GOTEC_80.myconsult_haftmittel.Lista" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="hml_TwrNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="hml_TwrTyp" DataSetColumn="hml_TwrTyp" />
<Mapping SourceColumn="hml_TwrNumer" DataSetColumn="hml_TwrNumer" />
<Mapping SourceColumn="hml_DataPowstania" DataSetColumn="hml_DataPowstania" />
<Mapping SourceColumn="hml_DataArchiwizacji" DataSetColumn="hml_DataArchiwizacji" />
<Mapping SourceColumn="hml_Herstellort" DataSetColumn="hml_Herstellort" />
<Mapping SourceColumn="hml_SDStext" DataSetColumn="hml_SDStext" />
<Mapping SourceColumn="hml_SDS1" DataSetColumn="hml_SDS1" />
<Mapping SourceColumn="hml_SDS2" DataSetColumn="hml_SDS2" />
<Mapping SourceColumn="hml_SDS3" DataSetColumn="hml_SDS3" />
<Mapping SourceColumn="hml_SDS4" DataSetColumn="hml_SDS4" />
<Mapping SourceColumn="hml_SDS5" DataSetColumn="hml_SDS5" />
<Mapping SourceColumn="hml_SDS6" DataSetColumn="hml_SDS6" />
<Mapping SourceColumn="hml_SDS7" DataSetColumn="hml_SDS7" />
<Mapping SourceColumn="hml_SDS8" DataSetColumn="hml_SDS8" />
<Mapping SourceColumn="hml_SDS9" DataSetColumn="hml_SDS9" />
<Mapping SourceColumn="hml_SDS10" DataSetColumn="hml_SDS10" />
<Mapping SourceColumn="hml_Schichten" DataSetColumn="hml_Schichten" />
<Mapping SourceColumn="hml_Eigenschaften" DataSetColumn="hml_Eigenschaften" />
<Mapping SourceColumn="hml_Anleitung" DataSetColumn="hml_Anleitung" />
<Mapping SourceColumn="hml_FS_od" DataSetColumn="hml_FS_od" />
<Mapping SourceColumn="hml_FS_do" DataSetColumn="hml_FS_do" />
<Mapping SourceColumn="hml_Dichte" DataSetColumn="hml_Dichte" />
<Mapping SourceColumn="hml_Viskositat_od" DataSetColumn="hml_Viskositat_od" />
<Mapping SourceColumn="hml_Viskositat_do" DataSetColumn="hml_Viskositat_do" />
<Mapping SourceColumn="hml_Farbe" DataSetColumn="hml_Farbe" />
<Mapping SourceColumn="hml_Verdunnung" DataSetColumn="hml_Verdunnung" />
<Mapping SourceColumn="hml_Schichtdicke_od" DataSetColumn="hml_Schichtdicke_od" />
<Mapping SourceColumn="hml_Schichtdicke_do" DataSetColumn="hml_Schichtdicke_do" />
<Mapping SourceColumn="hml_Leistung" DataSetColumn="hml_Leistung" />
<Mapping SourceColumn="hml_Lagerkapazitat" DataSetColumn="hml_Lagerkapazitat" />
<Mapping SourceColumn="hml_Verarbeitung" DataSetColumn="hml_Verarbeitung" />
<Mapping SourceColumn="hml_Inh0_Id" DataSetColumn="hml_Inh0_Id" />
<Mapping SourceColumn="hml_Inh0_Procent" DataSetColumn="hml_Inh0_Procent" />
<Mapping SourceColumn="hml_Inh0_ProcentDo" DataSetColumn="hml_Inh0_ProcentDo" />
<Mapping SourceColumn="hml_Inh1_Id" DataSetColumn="hml_Inh1_Id" />
<Mapping SourceColumn="hml_Inh1_Procent" DataSetColumn="hml_Inh1_Procent" />
<Mapping SourceColumn="hml_Inh1_ProcentDo" DataSetColumn="hml_Inh1_ProcentDo" />
<Mapping SourceColumn="hml_Inh2_Id" DataSetColumn="hml_Inh2_Id" />
<Mapping SourceColumn="hml_Inh2_Procent" DataSetColumn="hml_Inh2_Procent" />
<Mapping SourceColumn="hml_Inh2_ProcentDo" DataSetColumn="hml_Inh2_ProcentDo" />
<Mapping SourceColumn="hml_Inh3_Id" DataSetColumn="hml_Inh3_Id" />
<Mapping SourceColumn="hml_Inh3_Procent" DataSetColumn="hml_Inh3_Procent" />
<Mapping SourceColumn="hml_Inh3_ProcentDo" DataSetColumn="hml_Inh3_ProcentDo" />
<Mapping SourceColumn="hml_Inh4_Id" DataSetColumn="hml_Inh4_Id" />
<Mapping SourceColumn="hml_Inh4_Procent" DataSetColumn="hml_Inh4_Procent" />
<Mapping SourceColumn="hml_Inh4_ProcentDo" DataSetColumn="hml_Inh4_ProcentDo" />
<Mapping SourceColumn="hml_Inh5_Id" DataSetColumn="hml_Inh5_Id" />
<Mapping SourceColumn="hml_Inh5_Procent" DataSetColumn="hml_Inh5_Procent" />
<Mapping SourceColumn="hml_Inh5_ProcentDo" DataSetColumn="hml_Inh5_ProcentDo" />
<Mapping SourceColumn="hml_Inh6_Id" DataSetColumn="hml_Inh6_Id" />
<Mapping SourceColumn="hml_Inh6_Procent" DataSetColumn="hml_Inh6_Procent" />
<Mapping SourceColumn="hml_Inh6_ProcentDo" DataSetColumn="hml_Inh6_ProcentDo" />
<Mapping SourceColumn="hml_Inh7_Id" DataSetColumn="hml_Inh7_Id" />
<Mapping SourceColumn="hml_Inh7_Procent" DataSetColumn="hml_Inh7_Procent" />
<Mapping SourceColumn="hml_Inh7_ProcentDo" DataSetColumn="hml_Inh7_ProcentDo" />
<Mapping SourceColumn="hml_Inh8_Id" DataSetColumn="hml_Inh8_Id" />
<Mapping SourceColumn="hml_Inh8_Procent" DataSetColumn="hml_Inh8_Procent" />
<Mapping SourceColumn="hml_Inh8_ProcentDo" DataSetColumn="hml_Inh8_ProcentDo" />
<Mapping SourceColumn="hml_Inh9_Id" DataSetColumn="hml_Inh9_Id" />
<Mapping SourceColumn="hml_Inh9_Procent" DataSetColumn="hml_Inh9_Procent" />
<Mapping SourceColumn="hml_Inh9_ProcentDo" DataSetColumn="hml_Inh9_ProcentDo" />
<Mapping SourceColumn="hml_Behelter" DataSetColumn="hml_Behelter" />
<Mapping SourceColumn="hml_OpeNumer" DataSetColumn="hml_OpeNumer" />
<Mapping SourceColumn="Ope_Ident" DataSetColumn="Ope_Ident" />
<Mapping SourceColumn="hml_Dichte_do" DataSetColumn="hml_Dichte_do" />
<Mapping SourceColumn="hml_Inh10_Id" DataSetColumn="hml_Inh10_Id" />
<Mapping SourceColumn="hml_Inh11_Id" DataSetColumn="hml_Inh11_Id" />
<Mapping SourceColumn="hml_Inh12_Id" DataSetColumn="hml_Inh12_Id" />
<Mapping SourceColumn="hml_Inh13_Id" DataSetColumn="hml_Inh13_Id" />
<Mapping SourceColumn="hml_Inh14_Id" DataSetColumn="hml_Inh14_Id" />
<Mapping SourceColumn="hml_Inh15_Id" DataSetColumn="hml_Inh15_Id" />
<Mapping SourceColumn="hml_Inh16_Id" DataSetColumn="hml_Inh16_Id" />
<Mapping SourceColumn="hml_Inh17_Id" DataSetColumn="hml_Inh17_Id" />
<Mapping SourceColumn="hml_Inh18_Id" DataSetColumn="hml_Inh18_Id" />
<Mapping SourceColumn="hml_Inh19_Id" DataSetColumn="hml_Inh19_Id" />
<Mapping SourceColumn="hml_Inh10_Procent" DataSetColumn="hml_Inh10_Procent" />
<Mapping SourceColumn="hml_Inh11_Procent" DataSetColumn="hml_Inh11_Procent" />
<Mapping SourceColumn="hml_Inh12_Procent" DataSetColumn="hml_Inh12_Procent" />
<Mapping SourceColumn="hml_Inh13_Procent" DataSetColumn="hml_Inh13_Procent" />
<Mapping SourceColumn="hml_Inh14_Procent" DataSetColumn="hml_Inh14_Procent" />
<Mapping SourceColumn="hml_Inh15_Procent" DataSetColumn="hml_Inh15_Procent" />
<Mapping SourceColumn="hml_Inh16_Procent" DataSetColumn="hml_Inh16_Procent" />
<Mapping SourceColumn="hml_Inh17_Procent" DataSetColumn="hml_Inh17_Procent" />
<Mapping SourceColumn="hml_Inh18_Procent" DataSetColumn="hml_Inh18_Procent" />
<Mapping SourceColumn="hml_Inh19_Procent" DataSetColumn="hml_Inh19_Procent" />
<Mapping SourceColumn="hml_Inh10_ProcentDo" DataSetColumn="hml_Inh10_ProcentDo" />
<Mapping SourceColumn="hml_Inh11_ProcentDo" DataSetColumn="hml_Inh11_ProcentDo" />
<Mapping SourceColumn="hml_Inh12_ProcentDo" DataSetColumn="hml_Inh12_ProcentDo" />
<Mapping SourceColumn="hml_Inh13_ProcentDo" DataSetColumn="hml_Inh13_ProcentDo" />
<Mapping SourceColumn="hml_Inh14_ProcentDo" DataSetColumn="hml_Inh14_ProcentDo" />
<Mapping SourceColumn="hml_Inh15_ProcentDo" DataSetColumn="hml_Inh15_ProcentDo" />
<Mapping SourceColumn="hml_Inh16_ProcentDo" DataSetColumn="hml_Inh16_ProcentDo" />
<Mapping SourceColumn="hml_Inh17_ProcentDo" DataSetColumn="hml_Inh17_ProcentDo" />
<Mapping SourceColumn="hml_Inh18_ProcentDo" DataSetColumn="hml_Inh18_ProcentDo" />
<Mapping SourceColumn="hml_Inh19_ProcentDo" DataSetColumn="hml_Inh19_ProcentDo" />
</Mappings>
<Sources />
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="DaneTowaruTableAdapter" GeneratorDataComponentClassName="DaneTowaruTableAdapter" Name="DaneTowaru" UserDataComponentName="DaneTowaruTableAdapter">
<MainSource>
<DbSource ConnectionRef="ConnectionString (Settings)" DbObjectName="CDNXL_GOTEC_80.CDN.TwrKarty" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Fill" GenerateShortCommands="false" GeneratorSourceName="Fill" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT Twr_Kod, Twr_Nazwa, Twr_Jm,
CDN.NazwaObiektu(TWD_KntTyp, TWD_KntNumer, 0, 4) AS Dostawca,
coalesce(TwD_Cena, 0) AS TwD_Cena,
coalesce(TwD_Waluta,'') AS TwD_Waluta,
coalesce(TwJ_JmZ+ ' ' + cast(cast(TwJ_PrzeliczL / TwJ_PrzeliczM as decimal(15,2)) as varchar) + ' ' + Twr_Jm,'') AS TwJ_JmZ
FROM CDN.TwrKarty LEFT OUTER JOIN
CDN.TwrDost ON TWD_TwrTyp = Twr_GIDTyp AND TWD_TwrNumer = Twr_GIDNumer AND
TWD_TwrLp = Twr_DstDomyslny AND TWD_KlasaKnt = 8
LEFT OUTER JOIN CDN.TwrJm ON TwJ_TwrTyp = Twr_GIDTyp AND TwJ_TwrNumer = Twr_GIDNumer
AND TwJ_TwrLp = Twr_JmDomyslnaZak
WHERE Twr_GIDNumer = @TwrNumer</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="TwrNumer" ColumnName="Twr_GIDNumer" DataSourceName="CDNXL_GOTEC_80.CDN.TwrKarty" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="Twr_GIDNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="Twr_Kod" DataSetColumn="Twr_Kod" />
<Mapping SourceColumn="Twr_Nazwa" DataSetColumn="Twr_Nazwa" />
<Mapping SourceColumn="Twr_Jm" DataSetColumn="Twr_Jm" />
<Mapping SourceColumn="Dostawca" DataSetColumn="Dostawca" />
<Mapping SourceColumn="TwD_Cena" DataSetColumn="TwD_Cena" />
<Mapping SourceColumn="TwD_Waluta" DataSetColumn="TwD_Waluta" />
<Mapping SourceColumn="TwJ_JmZ" DataSetColumn="TwJ_JmZ" />
</Mappings>
<Sources />
</TableAdapter>
</Tables>
<Sources />
</DataSource>
</xs:appinfo>
</xs:annotation>
<xs:element name="DataSetLista" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DataSetLista" msprop:Generator_UserDSName="DataSetLista">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="ListaOld" msprop:Generator_TableClassName="ListaOldDataTable" msprop:Generator_TableVarName="tableListaOld" msprop:Generator_RowChangedName="ListaOldRowChanged" msprop:Generator_TablePropName="ListaOld" msprop:Generator_RowDeletingName="ListaOldRowDeleting" msprop:Generator_RowChangingName="ListaOldRowChanging" msprop:Generator_RowEvHandlerName="ListaOldRowChangeEventHandler" msprop:Generator_RowDeletedName="ListaOldRowDeleted" msprop:Generator_RowClassName="ListaOldRow" msprop:Generator_UserTableName="ListaOld" msprop:Generator_RowEvArgName="ListaOldRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="hml_TwrTyp" msprop:Generator_ColumnVarNameInTable="columnhml_TwrTyp" msprop:Generator_ColumnPropNameInRow="hml_TwrTyp" msprop:Generator_ColumnPropNameInTable="hml_TwrTypColumn" msprop:Generator_UserColumnName="hml_TwrTyp" type="xs:short" />
<xs:element name="hml_TwrNumer" msprop:Generator_ColumnVarNameInTable="columnhml_TwrNumer" msprop:Generator_ColumnPropNameInRow="hml_TwrNumer" msprop:Generator_ColumnPropNameInTable="hml_TwrNumerColumn" msprop:Generator_UserColumnName="hml_TwrNumer" type="xs:int" />
<xs:element name="hml_DataPowstania" msprop:Generator_ColumnVarNameInTable="columnhml_DataPowstania" msprop:Generator_ColumnPropNameInRow="hml_DataPowstania" msprop:Generator_ColumnPropNameInTable="hml_DataPowstaniaColumn" msprop:Generator_UserColumnName="hml_DataPowstania" type="xs:dateTime" minOccurs="0" />
<xs:element name="hml_DataArchiwizacji" msprop:Generator_ColumnVarNameInTable="columnhml_DataArchiwizacji" msprop:Generator_ColumnPropNameInRow="hml_DataArchiwizacji" msprop:Generator_ColumnPropNameInTable="hml_DataArchiwizacjiColumn" msprop:Generator_UserColumnName="hml_DataArchiwizacji" type="xs:dateTime" minOccurs="0" />
<xs:element name="hml_Herstellort" msprop:Generator_ColumnVarNameInTable="columnhml_Herstellort" msprop:Generator_ColumnPropNameInRow="hml_Herstellort" msprop:Generator_ColumnPropNameInTable="hml_HerstellortColumn" msprop:Generator_UserColumnName="hml_Herstellort" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_SDStext" msprop:Generator_ColumnVarNameInTable="columnhml_SDStext" msprop:Generator_ColumnPropNameInRow="hml_SDStext" msprop:Generator_ColumnPropNameInTable="hml_SDStextColumn" msprop:Generator_UserColumnName="hml_SDStext" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_SDS1" msprop:Generator_ColumnVarNameInTable="columnhml_SDS1" msprop:Generator_ColumnPropNameInRow="hml_SDS1" msprop:Generator_ColumnPropNameInTable="hml_SDS1Column" msprop:Generator_UserColumnName="hml_SDS1" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS2" msprop:Generator_ColumnVarNameInTable="columnhml_SDS2" msprop:Generator_ColumnPropNameInRow="hml_SDS2" msprop:Generator_ColumnPropNameInTable="hml_SDS2Column" msprop:Generator_UserColumnName="hml_SDS2" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS3" msprop:Generator_ColumnVarNameInTable="columnhml_SDS3" msprop:Generator_ColumnPropNameInRow="hml_SDS3" msprop:Generator_ColumnPropNameInTable="hml_SDS3Column" msprop:Generator_UserColumnName="hml_SDS3" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS4" msprop:Generator_ColumnVarNameInTable="columnhml_SDS4" msprop:Generator_ColumnPropNameInRow="hml_SDS4" msprop:Generator_ColumnPropNameInTable="hml_SDS4Column" msprop:Generator_UserColumnName="hml_SDS4" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS5" msprop:Generator_ColumnVarNameInTable="columnhml_SDS5" msprop:Generator_ColumnPropNameInRow="hml_SDS5" msprop:Generator_ColumnPropNameInTable="hml_SDS5Column" msprop:Generator_UserColumnName="hml_SDS5" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS6" msprop:Generator_ColumnVarNameInTable="columnhml_SDS6" msprop:Generator_ColumnPropNameInRow="hml_SDS6" msprop:Generator_ColumnPropNameInTable="hml_SDS6Column" msprop:Generator_UserColumnName="hml_SDS6" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS7" msprop:Generator_ColumnVarNameInTable="columnhml_SDS7" msprop:Generator_ColumnPropNameInRow="hml_SDS7" msprop:Generator_ColumnPropNameInTable="hml_SDS7Column" msprop:Generator_UserColumnName="hml_SDS7" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS8" msprop:Generator_ColumnVarNameInTable="columnhml_SDS8" msprop:Generator_ColumnPropNameInRow="hml_SDS8" msprop:Generator_ColumnPropNameInTable="hml_SDS8Column" msprop:Generator_UserColumnName="hml_SDS8" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS9" msprop:Generator_ColumnVarNameInTable="columnhml_SDS9" msprop:Generator_ColumnPropNameInRow="hml_SDS9" msprop:Generator_ColumnPropNameInTable="hml_SDS9Column" msprop:Generator_UserColumnName="hml_SDS9" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS10" msprop:Generator_ColumnVarNameInTable="columnhml_SDS10" msprop:Generator_ColumnPropNameInRow="hml_SDS10" msprop:Generator_ColumnPropNameInTable="hml_SDS10Column" msprop:Generator_UserColumnName="hml_SDS10" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_Schichten" msprop:Generator_ColumnVarNameInTable="columnhml_Schichten" msprop:Generator_ColumnPropNameInRow="hml_Schichten" msprop:Generator_ColumnPropNameInTable="hml_SchichtenColumn" msprop:Generator_UserColumnName="hml_Schichten" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Eigenschaften" msprop:Generator_ColumnVarNameInTable="columnhml_Eigenschaften" msprop:Generator_ColumnPropNameInRow="hml_Eigenschaften" msprop:Generator_ColumnPropNameInTable="hml_EigenschaftenColumn" msprop:Generator_UserColumnName="hml_Eigenschaften" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Anleitung" msprop:Generator_ColumnVarNameInTable="columnhml_Anleitung" msprop:Generator_ColumnPropNameInRow="hml_Anleitung" msprop:Generator_ColumnPropNameInTable="hml_AnleitungColumn" msprop:Generator_UserColumnName="hml_Anleitung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_FS_od" msprop:Generator_ColumnVarNameInTable="columnhml_FS_od" msprop:Generator_ColumnPropNameInRow="hml_FS_od" msprop:Generator_ColumnPropNameInTable="hml_FS_odColumn" msprop:Generator_UserColumnName="hml_FS_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_FS_do" msprop:Generator_ColumnVarNameInTable="columnhml_FS_do" msprop:Generator_ColumnPropNameInRow="hml_FS_do" msprop:Generator_ColumnPropNameInTable="hml_FS_doColumn" msprop:Generator_UserColumnName="hml_FS_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Dichte" msprop:Generator_ColumnVarNameInTable="columnhml_Dichte" msprop:Generator_ColumnPropNameInRow="hml_Dichte" msprop:Generator_ColumnPropNameInTable="hml_DichteColumn" msprop:Generator_UserColumnName="hml_Dichte" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Viskositat_od" msprop:Generator_ColumnVarNameInTable="columnhml_Viskositat_od" msprop:Generator_ColumnPropNameInRow="hml_Viskositat_od" msprop:Generator_ColumnPropNameInTable="hml_Viskositat_odColumn" msprop:Generator_UserColumnName="hml_Viskositat_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Viskositat_do" msprop:Generator_ColumnVarNameInTable="columnhml_Viskositat_do" msprop:Generator_ColumnPropNameInRow="hml_Viskositat_do" msprop:Generator_ColumnPropNameInTable="hml_Viskositat_doColumn" msprop:Generator_UserColumnName="hml_Viskositat_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Farbe" msprop:Generator_ColumnVarNameInTable="columnhml_Farbe" msprop:Generator_ColumnPropNameInRow="hml_Farbe" msprop:Generator_ColumnPropNameInTable="hml_FarbeColumn" msprop:Generator_UserColumnName="hml_Farbe" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Verdunnung" msprop:Generator_ColumnVarNameInTable="columnhml_Verdunnung" msprop:Generator_ColumnPropNameInRow="hml_Verdunnung" msprop:Generator_ColumnPropNameInTable="hml_VerdunnungColumn" msprop:Generator_UserColumnName="hml_Verdunnung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Schichtdicke_od" msprop:Generator_ColumnVarNameInTable="columnhml_Schichtdicke_od" msprop:Generator_ColumnPropNameInRow="hml_Schichtdicke_od" msprop:Generator_ColumnPropNameInTable="hml_Schichtdicke_odColumn" msprop:Generator_UserColumnName="hml_Schichtdicke_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Schichtdicke_do" msprop:Generator_ColumnVarNameInTable="columnhml_Schichtdicke_do" msprop:Generator_ColumnPropNameInRow="hml_Schichtdicke_do" msprop:Generator_ColumnPropNameInTable="hml_Schichtdicke_doColumn" msprop:Generator_UserColumnName="hml_Schichtdicke_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Leistung" msprop:Generator_ColumnVarNameInTable="columnhml_Leistung" msprop:Generator_ColumnPropNameInRow="hml_Leistung" msprop:Generator_ColumnPropNameInTable="hml_LeistungColumn" msprop:Generator_UserColumnName="hml_Leistung" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Lagerkapazitat" msprop:Generator_ColumnVarNameInTable="columnhml_Lagerkapazitat" msprop:Generator_ColumnPropNameInRow="hml_Lagerkapazitat" msprop:Generator_ColumnPropNameInTable="hml_LagerkapazitatColumn" msprop:Generator_UserColumnName="hml_Lagerkapazitat" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Verarbeitung" msprop:Generator_ColumnVarNameInTable="columnhml_Verarbeitung" msprop:Generator_ColumnPropNameInRow="hml_Verarbeitung" msprop:Generator_ColumnPropNameInTable="hml_VerarbeitungColumn" msprop:Generator_UserColumnName="hml_Verarbeitung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Inh0_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh0_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh0_IdColumn" msprop:Generator_UserColumnName="hml_Inh0_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh0_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh0_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh0_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh0_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh0_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh0_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh0_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh0_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh1_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh1_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh1_IdColumn" msprop:Generator_UserColumnName="hml_Inh1_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh1_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh1_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh1_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh1_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh1_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh1_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh1_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh1_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh2_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh2_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh2_IdColumn" msprop:Generator_UserColumnName="hml_Inh2_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh2_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh2_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh2_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh2_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh2_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh2_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh2_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh2_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh3_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh3_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh3_IdColumn" msprop:Generator_UserColumnName="hml_Inh3_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh3_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh3_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh3_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh3_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh3_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh3_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh3_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh3_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh4_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh4_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh4_IdColumn" msprop:Generator_UserColumnName="hml_Inh4_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh4_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh4_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh4_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh4_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh4_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh4_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh4_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh4_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh5_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh5_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh5_IdColumn" msprop:Generator_UserColumnName="hml_Inh5_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh5_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh5_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh5_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh5_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh5_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh5_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh5_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh5_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh6_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh6_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh6_IdColumn" msprop:Generator_UserColumnName="hml_Inh6_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh6_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh6_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh6_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh6_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh6_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh6_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh6_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh6_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh7_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh7_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh7_IdColumn" msprop:Generator_UserColumnName="hml_Inh7_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh7_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh7_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh7_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh7_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh7_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh7_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh7_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh7_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh8_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh8_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh8_IdColumn" msprop:Generator_UserColumnName="hml_Inh8_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh8_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh8_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh8_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh8_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh8_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh8_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh8_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh8_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh9_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh9_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh9_IdColumn" msprop:Generator_UserColumnName="hml_Inh9_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh9_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh9_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh9_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh9_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh9_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh9_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh9_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh9_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Behelter" msprop:Generator_ColumnVarNameInTable="columnhml_Behelter" msprop:Generator_ColumnPropNameInRow="hml_Behelter" msprop:Generator_ColumnPropNameInTable="hml_BehelterColumn" msprop:Generator_UserColumnName="hml_Behelter" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_OpeNumer" msprop:Generator_ColumnVarNameInTable="columnhml_OpeNumer" msprop:Generator_ColumnPropNameInRow="hml_OpeNumer" msprop:Generator_ColumnPropNameInTable="hml_OpeNumerColumn" msprop:Generator_UserColumnName="hml_OpeNumer" type="xs:int" minOccurs="0" />
<xs:element name="Ope_Ident" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnOpe_Ident" msprop:Generator_ColumnPropNameInRow="Ope_Ident" msprop:Generator_ColumnPropNameInTable="Ope_IdentColumn" msprop:Generator_UserColumnName="Ope_Ident" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1024" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Dichte_do" msprop:Generator_ColumnVarNameInTable="columnhml_Dichte_do" msprop:Generator_ColumnPropNameInRow="hml_Dichte_do" msprop:Generator_ColumnPropNameInTable="hml_Dichte_doColumn" msprop:Generator_UserColumnName="hml_Dichte_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh10_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh10_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh10_IdColumn" msprop:Generator_UserColumnName="hml_Inh10_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh11_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh11_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh11_IdColumn" msprop:Generator_UserColumnName="hml_Inh11_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh12_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh12_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh12_IdColumn" msprop:Generator_UserColumnName="hml_Inh12_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh13_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh13_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh13_IdColumn" msprop:Generator_UserColumnName="hml_Inh13_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh14_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh14_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh14_IdColumn" msprop:Generator_UserColumnName="hml_Inh14_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh15_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh15_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh15_IdColumn" msprop:Generator_UserColumnName="hml_Inh15_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh16_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh16_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh16_IdColumn" msprop:Generator_UserColumnName="hml_Inh16_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh17_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh17_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh17_IdColumn" msprop:Generator_UserColumnName="hml_Inh17_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh18_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh18_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh18_IdColumn" msprop:Generator_UserColumnName="hml_Inh18_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh19_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh19_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh19_IdColumn" msprop:Generator_UserColumnName="hml_Inh19_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh10_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh10_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh10_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh10_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh11_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh11_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh11_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh11_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh12_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh12_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh12_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh12_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh13_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh13_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh13_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh13_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh14_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh14_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh14_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh14_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh15_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh15_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh15_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh15_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh16_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh16_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh16_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh16_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh17_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh17_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh17_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh17_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh18_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh18_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh18_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh18_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh19_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh19_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh19_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh19_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh10_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh10_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh10_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh10_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh11_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh11_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh11_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh11_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh12_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh12_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh12_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh12_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh13_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh13_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh13_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh13_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh14_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh14_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh14_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh14_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh15_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh15_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh15_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh15_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh16_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh16_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh16_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh16_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh17_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh17_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh17_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh17_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh18_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh18_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh18_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh18_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh19_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh19_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh19_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh19_ProcentDo" type="xs:decimal" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DaneTowaru" msprop:Generator_TableClassName="DaneTowaruDataTable" msprop:Generator_TableVarName="tableDaneTowaru" msprop:Generator_TablePropName="DaneTowaru" msprop:Generator_RowDeletingName="DaneTowaruRowDeleting" msprop:Generator_RowChangingName="DaneTowaruRowChanging" msprop:Generator_RowEvHandlerName="DaneTowaruRowChangeEventHandler" msprop:Generator_RowDeletedName="DaneTowaruRowDeleted" msprop:Generator_UserTableName="DaneTowaru" msprop:Generator_RowChangedName="DaneTowaruRowChanged" msprop:Generator_RowEvArgName="DaneTowaruRowChangeEvent" msprop:Generator_RowClassName="DaneTowaruRow">
<xs:complexType>
<xs:sequence>
<xs:element name="Twr_Kod" msprop:Generator_ColumnVarNameInTable="columnTwr_Kod" msprop:Generator_ColumnPropNameInRow="Twr_Kod" msprop:Generator_ColumnPropNameInTable="Twr_KodColumn" msprop:Generator_UserColumnName="Twr_Kod" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Twr_Nazwa" msprop:Generator_ColumnVarNameInTable="columnTwr_Nazwa" msprop:Generator_ColumnPropNameInRow="Twr_Nazwa" msprop:Generator_ColumnPropNameInTable="Twr_NazwaColumn" msprop:Generator_UserColumnName="Twr_Nazwa" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Twr_Jm" msprop:Generator_ColumnVarNameInTable="columnTwr_Jm" msprop:Generator_ColumnPropNameInRow="Twr_Jm" msprop:Generator_ColumnPropNameInTable="Twr_JmColumn" msprop:Generator_UserColumnName="Twr_Jm" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="8" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Dostawca" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDostawca" msprop:Generator_ColumnPropNameInRow="Dostawca" msprop:Generator_ColumnPropNameInTable="DostawcaColumn" msprop:Generator_UserColumnName="Dostawca" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1024" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TwD_Cena" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTwD_Cena" msprop:Generator_ColumnPropNameInRow="TwD_Cena" msprop:Generator_ColumnPropNameInTable="TwD_CenaColumn" msprop:Generator_UserColumnName="TwD_Cena" type="xs:decimal" minOccurs="0" />
<xs:element name="TwD_Waluta" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTwD_Waluta" msprop:Generator_ColumnPropNameInRow="TwD_Waluta" msprop:Generator_ColumnPropNameInTable="TwD_WalutaColumn" msprop:Generator_UserColumnName="TwD_Waluta" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="3" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TwJ_JmZ" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTwJ_JmZ" msprop:Generator_ColumnPropNameInRow="TwJ_JmZ" msprop:Generator_ColumnPropNameInTable="TwJ_JmZColumn" msprop:Generator_UserColumnName="TwJ_JmZ" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="48" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1,282 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E76D8CE4-D8E0-4E10-8422-ECAC06E1B641}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Haftmittel</RootNamespace>
<AssemblyName>Haftmittel</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<StartupObject>APQP.App</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="ClassKonwerterNaKolory.cs" />
<Compile Include="ClassKonwerterNaProcenty.cs" />
<Compile Include="ClassProcentyValidationRule.cs" />
<Compile Include="ClassSkladnik.cs" />
<Compile Include="Database\DataSetLista.cs">
<DependentUpon>DataSetLista.xsd</DependentUpon>
</Compile>
<Compile Include="Database\DataSetLista.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>DataSetLista.xsd</DependentUpon>
</Compile>
<Compile Include="Database\DataSetListaSkladnikow.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>DataSetListaSkladnikow.xsd</DependentUpon>
</Compile>
<Compile Include="DelegateCommand.cs" />
<Compile Include="Historia.cs" />
<Compile Include="Obrazek.cs" />
<Compile Include="Skladnik.cs" />
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="ClassHaftmittel.cs" />
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="app.config" />
<None Include="Database\DataSetLista.xsc">
<DependentUpon>DataSetLista.xsd</DependentUpon>
</None>
<None Include="Database\DataSetLista.xsd">
<SubType>Designer</SubType>
<Generator>MSDataSetGenerator</Generator>
<LastGenOutput>DataSetLista.Designer.cs</LastGenOutput>
</None>
<None Include="Database\DataSetLista.xss">
<DependentUpon>DataSetLista.xsd</DependentUpon>
</None>
<None Include="Database\DataSetListaSkladnikow.xsc">
<DependentUpon>DataSetListaSkladnikow.xsd</DependentUpon>
</None>
<None Include="Database\DataSetListaSkladnikow.xsd">
<SubType>Designer</SubType>
<Generator>MSDataSetGenerator</Generator>
<LastGenOutput>DataSetListaSkladnikow.Designer.cs</LastGenOutput>
</None>
<None Include="Database\DataSetListaSkladnikow.xss">
<DependentUpon>DataSetListaSkladnikow.xsd</DependentUpon>
</None>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.4.5">
<Visible>False</Visible>
<ProductName>Windows Installer 4.5</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\o1.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o10.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o2.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o3.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o4.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o5.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o6.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o7.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o8.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o9.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Save.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Close.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Print.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh01.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh02.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh03.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh04.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh05.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh06.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh07.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh08.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh09.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Haftmittel
{
public class Historia
{
public DateTime data
{ get; set; }
public string wartosc
{ get; set; }
public string opemod
{ get; set; }
public Historia(DateTime d, string w, string o)
{
data = d;
wartosc = w;
opemod = o;
}
public override string ToString()
{
return string.Format("{0} {1,-10} {2}", data, opemod, wartosc);
}
}
}

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
namespace APQP
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!--<autogenerated>
This code was generated by a tool to store the dataset designer's layout information.
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="0" ViewPortY="0" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:Lista" ZOrder="1" X="157" Y="93" Height="305" Width="171" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
</Shapes>
<Connectors />
</DiagramLayout>

View File

@@ -0,0 +1,14 @@
namespace Haftmittel.Database
{
public partial class DataSetLista
{
}
}
namespace Haftmittel.Database {
public partial class DataSetLista {
}
}

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--<autogenerated>
This code was generated by a tool to store the dataset designer's layout information.
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="0" ViewPortY="57" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:ListaOld" ZOrder="1" X="19" Y="67" Height="305" Width="171" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:DaneTowaru" ZOrder="2" X="290" Y="72" Height="210" Width="218" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
</Shapes>
<Connectors />
</DiagramLayout>

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,8 @@
<Application x:Class="APQP.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -0,0 +1,104 @@
-- =========================================
-- Create table template
-- v 0.2 zmiana pól od obrazków na ze smallint na bit, zwiększenie ilości obrazków
-- =========================================
CREATE TABLE [myconsult_haftmittel].[Lista]
(
hml_TwrTyp smallint NOT NULL,
hml_TwrNumer int NOT NULL,
hml_DataPowstania datetime default GetDate(),
hml_DataArchiwizacji datetime default null,
hml_Herstellort nvarchar(max) default '',
hml_SDStext nvarchar(max) default '',
hml_SDS1 bit default 0,
hml_SDS2 bit default 0,
hml_SDS3 bit default 0,
hml_SDS4 bit default 0,
hml_SDS5 bit default 0,
hml_SDS6 bit default 0,
hml_SDS7 bit default 0,
hml_SDS8 bit default 0,
hml_SDS9 bit default 0,
hml_SDS10 bit default 0,
hml_Schichten nvarchar(max) default '',
hml_Eigenschaften nvarchar(max) default '',
hml_Anleitung nvarchar(max) default '',
hml_FS_od decimal(15,4) default 0,
hml_FS_do decimal(15,4) default 0,
hml_Dichte decimal(15,4) default 0,
hml_Dichte_do decimal(15,4) default 0,
hml_Viskositat_od decimal(15,4) default 0,
hml_Viskositat_do decimal(15,4) default 0,
hml_Farbe nvarchar(max) default '',
hml_Verdunnung nvarchar(max) default '',
hml_Schichtdicke_od decimal(15,4) default 0,
hml_Schichtdicke_do decimal(15,4) default 0,
hml_Leistung decimal(15,4) default 0,
hml_Lagerkapazitat decimal(15,4) default 0,
hml_Verarbeitung nvarchar(max) default '',
hml_Inh0_Id int default 0,
hml_Inh0_Procent decimal(18,4) default 0,
hml_Inh0_ProcentDo decimal(18,4) default 0,
hml_Inh1_Id int default 0,
hml_Inh1_Procent decimal(18,4) default 0,
hml_Inh1_ProcentDo decimal(18,4) default 0,
hml_Inh2_Id int default 0,
hml_Inh2_Procent decimal(18,4) default 0,
hml_Inh2_ProcentDo decimal(18,4) default 0,
hml_Inh3_Id int default 0,
hml_Inh3_Procent decimal(18,4) default 0,
hml_Inh3_ProcentDo decimal(18,4) default 0,
hml_Inh4_Id int default 0,
hml_Inh4_Procent decimal(18,4) default 0,
hml_Inh4_ProcentDo decimal(18,4) default 0,
hml_Inh5_Id int default 0,
hml_Inh5_Procent decimal(18,4) default 0,
hml_Inh5_ProcentDo decimal(18,4) default 0,
hml_Inh6_Id int default 0,
hml_Inh6_Procent decimal(18,4) default 0,
hml_Inh6_ProcentDo decimal(18,4) default 0,
hml_Inh7_Id int default 0,
hml_Inh7_Procent decimal(18,4) default 0,
hml_Inh7_ProcentDo decimal(18,4) default 0,
hml_Inh8_Id int default 0,
hml_Inh8_Procent decimal(18,4) default 0,
hml_Inh8_ProcentDo decimal(18,4) default 0,
hml_Inh9_Id int default 0,
hml_Inh9_Procent decimal(18,4) default 0,
hml_Inh9_ProcentDo decimal(18,4) default 0,
hml_Inh10_Id int default 0,
hml_Inh10_Procent decimal(18,4) default 0,
hml_Inh10_ProcentDo decimal(18,4) default 0,
hml_Inh11_Id int default 0,
hml_Inh11_Procent decimal(18,4) default 0,
hml_Inh11_ProcentDo decimal(18,4) default 0,
hml_Inh12_Id int default 0,
hml_Inh12_Procent decimal(18,4) default 0,
hml_Inh12_ProcentDo decimal(18,4) default 0,
hml_Inh13_Id int default 0,
hml_Inh13_Procent decimal(18,4) default 0,
hml_Inh13_ProcentDo decimal(18,4) default 0,
hml_Inh14_Id int default 0,
hml_Inh14_Procent decimal(18,4) default 0,
hml_Inh14_ProcentDo decimal(18,4) default 0,
hml_Inh15_Id int default 0,
hml_Inh15_Procent decimal(18,4) default 0,
hml_Inh15_ProcentDo decimal(18,4) default 0,
hml_Inh16_Id int default 0,
hml_Inh16_Procent decimal(18,4) default 0,
hml_Inh16_ProcentDo decimal(18,4) default 0,
hml_Inh17_Id int default 0,
hml_Inh17_Procent decimal(18,4) default 0,
hml_Inh17_ProcentDo decimal(18,4) default 0,
hml_Inh18_Id int default 0,
hml_Inh18_Procent decimal(18,4) default 0,
hml_Inh18_ProcentDo decimal(18,4) default 0,
hml_Inh19_Id int default 0,
hml_Inh19_Procent decimal(18,4) default 0,
hml_Inh19_ProcentDo decimal(18,4) default 0,
hml_Behelter nvarchar(max) default '',
hml_OpeNumer int default 0
)
GO

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@@ -0,0 +1,46 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Ten kod został wygenerowany przez narzędzie.
// Wersja wykonawcza:4.0.30319.42000
//
// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
// kod zostanie ponownie wygenerowany.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Haftmittel.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.4.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default {
get {
return defaultInstance;
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)]
[global::System.Configuration.DefaultSettingValueAttribute("Data Source=192.168.11.31\\sql08r2;Initial Catalog=CDNXL_GOTEC_80;User ID=sa;Passw" +
"ord=cdn")]
public string ConnectionString {
get {
return ((string)(this["ConnectionString"]));
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("pl-PL")]
public string Language {
get {
return ((string)(this["Language"]));
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,49 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Haftmittel
{
public class Obrazek : INotifyPropertyChanged
{
private bool _jest = false;
private List<Historia> _hist;
private string opis = string.Empty;
public bool Widoczny
{
get => _jest;
set
{
_jest = value;
OnPropertyChanged();
}
}
public string Opis
{
get => opis;
set
{
opis = value;
OnPropertyChanged();
}
}
public List<Historia> HistoriaObrazka
{
get => _hist;
set
{
_hist = value;
OnPropertyChanged();
}
}
#region Obsługa INotifyPropertyChanged
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged([CallerMemberName] string name = null) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
#endregion
}
}

View File

@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<Name>SQL</Name>
<SchemaVersion>2.0</SchemaVersion>
<ProjectVersion>4.1</ProjectVersion>
<ProjectGuid>{e37f93fc-c4a1-47e8-988f-3f91c68a5a1f}</ProjectGuid>
<DSP>Microsoft.Data.Tools.Schema.Sql.Sql120DatabaseSchemaProvider</DSP>
<OutputType>Database</OutputType>
<RootPath>
</RootPath>
<RootNamespace>SQL</RootNamespace>
<AssemblyName>SQL</AssemblyName>
<ModelCollation>1033, CI</ModelCollation>
<DefaultFileStructure>BySchemaAndSchemaType</DefaultFileStructure>
<DeployToDatabase>True</DeployToDatabase>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetLanguage>CS</TargetLanguage>
<AppDesignerFolder>Properties</AppDesignerFolder>
<SqlServerVerification>False</SqlServerVerification>
<IncludeCompositeObjects>True</IncludeCompositeObjects>
<TargetDatabaseSet>True</TargetDatabaseSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release\</OutputPath>
<BuildScriptName>$(MSBuildProjectName).sql</BuildScriptName>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\Debug\</OutputPath>
<BuildScriptName>$(MSBuildProjectName).sql</BuildScriptName>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<!-- Default to the v11.0 targets path if the targets file for the current VS version is not found -->
<SSDTExists Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.SqlTasks.targets')">True</SSDTExists>
<VisualStudioVersion Condition="'$(SSDTExists)' == ''">11.0</VisualStudioVersion>
</PropertyGroup>
<Import Condition="'$(SQLDBExtensionsRefPath)' != ''" Project="$(SQLDBExtensionsRefPath)\Microsoft.Data.Tools.Schema.SqlTasks.targets" />
<Import Condition="'$(SQLDBExtensionsRefPath)' == ''" Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.SqlTasks.targets" />
<ItemGroup>
<Folder Include="Properties" />
<Folder Include="myconsult_haftmittel" />
<Folder Include="myconsult_haftmittel\Tables" />
<Folder Include="myconsult_haftmittel\Procedures" />
</ItemGroup>
<ItemGroup>
<None Include="myconsult_haftmittel\Tables\FK_Lista_OpeKarty.sql" />
<None Include="myconsult_haftmittel\Tables\FK_Lista_TwrKarty.sql" />
<None Include="myconsult_haftmittel\Tables\Lista.sql" />
<None Include="myconsult_haftmittel\myconsult_haftmittel schema.sql" />
<None Include="myconsult_haftmittel\Procedures\ListaSkladnikow.sql" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!--<autogenerated>
This code was generated by a tool to store the dataset designer's layout information.
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="0" ViewPortY="0" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:haftmittel_ListaSkladnikow" ZOrder="1" X="58" Y="48" Height="134" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
</Shapes>
<Connectors />
</DiagramLayout>

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

View File

@@ -0,0 +1,46 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Ten kod został wygenerowany przez narzędzie.
// Wersja wykonawcza:4.0.30319.42000
//
// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
// kod zostanie ponownie wygenerowany.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Haftmittel.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.8.1.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default {
get {
return defaultInstance;
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)]
[global::System.Configuration.DefaultSettingValueAttribute("Data Source=192.168.17.100;Initial Catalog=CDNXL_GOTEC_80;User ID=sa;Password=Cdn" +
"01")]
public string ConnectionString {
get {
return ((string)(this["ConnectionString"]));
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("pl-PL")]
public string Language {
get {
return ((string)(this["Language"]));
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,37 @@
using System;
namespace Haftmittel
{
public class DelegateCommand<T> : System.Windows.Input.ICommand
{
private readonly Predicate<T> _canExecute;
private readonly Action<T> _execute;
public DelegateCommand(Action<T> execute)
: this(execute, null)
{
}
public DelegateCommand(Action<T> execute, Predicate<T> canExecute)
{
_execute = execute;
_canExecute = canExecute;
}
public bool CanExecute(object parameter)
{
if (_canExecute == null)
return true;
return _canExecute((parameter == null) ? default : (T)Convert.ChangeType(parameter, typeof(T)));
}
public void Execute(object parameter)
{
_execute((parameter == null) ? default : (T)Convert.ChangeType(parameter, typeof(T)));
}
public event EventHandler CanExecuteChanged;
public void RaiseCanExecuteChanged() => CanExecuteChanged?.Invoke(this, EventArgs.Empty);
}
}

View File

@@ -0,0 +1,17 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="Haftmittel.Properties" GeneratedClassName="Settings">
<Profiles />
<Settings>
<Setting Name="ConnectionString" Type="(Connection string)" Scope="Application">
<DesignTimeValue Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;ConnectionString&gt;Data Source=192.168.11.31\sql08r2;Initial Catalog=CDNXL_GOTEC_80;User ID=sa;Password=cdn&lt;/ConnectionString&gt;
&lt;ProviderName&gt;System.Data.SqlClient&lt;/ProviderName&gt;
&lt;/SerializableConnectionString&gt;</DesignTimeValue>
<Value Profile="(Default)">Data Source=192.168.11.31\sql08r2;Initial Catalog=CDNXL_GOTEC_80;User ID=sa;Password=cdn</Value>
</Setting>
<Setting Name="Language" Type="System.String" Scope="Application">
<Value Profile="(Default)">pl-PL</Value>
</Setting>
</Settings>
</SettingsFile>

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -0,0 +1,108 @@
-- =========================================
-- Create table template
-- v 0.2 zmiana pól od obrazków na ze smallint na bit, zwiększenie ilości obrazków
-- =========================================
CREATE TABLE [myconsult_haftmittel].[Lista]
(
hml_TwrTyp smallint NOT NULL,
hml_TwrNumer int NOT NULL,
hml_DataPowstania datetime default GetDate(),
hml_DataArchiwizacji datetime default null,
hml_Herstellort nvarchar(max) default '',
hml_SDStext nvarchar(max) default '',
hml_SDS1 bit default 0,
hml_SDS2 bit default 0,
hml_SDS3 bit default 0,
hml_SDS4 bit default 0,
hml_SDS5 bit default 0,
hml_SDS6 bit default 0,
hml_SDS7 bit default 0,
hml_SDS8 bit default 0,
hml_SDS9 bit default 0,
hml_SDS10 bit default 0,
hml_Schichten nvarchar(max) default '',
hml_Eigenschaften nvarchar(max) default '',
hml_Anleitung nvarchar(max) default '',
hml_FS_od decimal(15,4) default 0,
hml_FS_do decimal(15,4) default 0,
hml_Dichte decimal(15,4) default 0,
hml_Dichte_do decimal(15,4) default 0,
hml_Viskositat_od decimal(15,4) default 0,
hml_Viskositat_do decimal(15,4) default 0,
hml_Farbe nvarchar(max) default '',
hml_Verdunnung nvarchar(max) default '',
hml_Schichtdicke_od decimal(15,4) default 0,
hml_Schichtdicke_do decimal(15,4) default 0,
hml_Leistung decimal(15,4) default 0,
hml_Lagerkapazitat decimal(15,4) default 0,
hml_Verarbeitung nvarchar(max) default '',
hml_Inh0_Id int default 0,
hml_Inh0_Procent decimal(18,4) default 0,
hml_Inh0_ProcentDo decimal(18,4) default 0,
hml_Inh1_Id int default 0,
hml_Inh1_Procent decimal(18,4) default 0,
hml_Inh1_ProcentDo decimal(18,4) default 0,
hml_Inh2_Id int default 0,
hml_Inh2_Procent decimal(18,4) default 0,
hml_Inh2_ProcentDo decimal(18,4) default 0,
hml_Inh3_Id int default 0,
hml_Inh3_Procent decimal(18,4) default 0,
hml_Inh3_ProcentDo decimal(18,4) default 0,
hml_Inh4_Id int default 0,
hml_Inh4_Procent decimal(18,4) default 0,
hml_Inh4_ProcentDo decimal(18,4) default 0,
hml_Inh5_Id int default 0,
hml_Inh5_Procent decimal(18,4) default 0,
hml_Inh5_ProcentDo decimal(18,4) default 0,
hml_Inh6_Id int default 0,
hml_Inh6_Procent decimal(18,4) default 0,
hml_Inh6_ProcentDo decimal(18,4) default 0,
hml_Inh7_Id int default 0,
hml_Inh7_Procent decimal(18,4) default 0,
hml_Inh7_ProcentDo decimal(18,4) default 0,
hml_Inh8_Id int default 0,
hml_Inh8_Procent decimal(18,4) default 0,
hml_Inh8_ProcentDo decimal(18,4) default 0,
hml_Inh9_Id int default 0,
hml_Inh9_Procent decimal(18,4) default 0,
hml_Inh9_ProcentDo decimal(18,4) default 0,
hml_Inh10_Id int default 0,
hml_Inh10_Procent decimal(18,4) default 0,
hml_Inh10_ProcentDo decimal(18,4) default 0,
hml_Inh11_Id int default 0,
hml_Inh11_Procent decimal(18,4) default 0,
hml_Inh11_ProcentDo decimal(18,4) default 0,
hml_Inh12_Id int default 0,
hml_Inh12_Procent decimal(18,4) default 0,
hml_Inh12_ProcentDo decimal(18,4) default 0,
hml_Inh13_Id int default 0,
hml_Inh13_Procent decimal(18,4) default 0,
hml_Inh13_ProcentDo decimal(18,4) default 0,
hml_Inh14_Id int default 0,
hml_Inh14_Procent decimal(18,4) default 0,
hml_Inh14_ProcentDo decimal(18,4) default 0,
hml_Inh15_Id int default 0,
hml_Inh15_Procent decimal(18,4) default 0,
hml_Inh15_ProcentDo decimal(18,4) default 0,
hml_Inh16_Id int default 0,
hml_Inh16_Procent decimal(18,4) default 0,
hml_Inh16_ProcentDo decimal(18,4) default 0,
hml_Inh17_Id int default 0,
hml_Inh17_Procent decimal(18,4) default 0,
hml_Inh17_ProcentDo decimal(18,4) default 0,
hml_Inh18_Id int default 0,
hml_Inh18_Procent decimal(18,4) default 0,
hml_Inh18_ProcentDo decimal(18,4) default 0,
hml_Inh19_Id int default 0,
hml_Inh19_Procent decimal(18,4) default 0,
hml_Inh19_ProcentDo decimal(18,4) default 0,
hml_Behelter nvarchar(max) default '',
hml_OpeNumer int default 0,
hml_Text1 nvarchar(max) default '',
hml_Text2 nvarchar(max) default '',
hml_Text3 nvarchar(max) default '',
hml_Text4 nvarchar(max) default ''
)
GO

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Haftmittel
{
public class ClassSkladnik
{
private Int32 _id = 0;
private string _kod = string.Empty;
private string _nazwa = string.Empty;
public Int32 Id
{
get { return _id; }
set { _id = value; }
}
public string Kod
{
get { return _kod; }
set { _kod = value; }
}
public string Nazwa
{
get { return _nazwa.Trim(); }
set { _nazwa = value; }
}
}
}

View File

@@ -0,0 +1,594 @@
<Window x:Class="Haftmittel.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:hft="clr-namespace:Haftmittel"
Title="Haftmittel" Height="350" Width="550" Closing="Window_Closing" UseLayoutRounding="True">
<Window.Resources>
<ResourceDictionary>
<hft:ClassProcentyValidationRule x:Key="ProcentyValidationRules"/>
<LinearGradientBrush x:Key="tlo">
<GradientStop Color="#FFD9EDFF" Offset="0"/>
<GradientStop Color="#FFC0DEFF" Offset="0.445"/>
<GradientStop Color="#FFAFD1F8" Offset="0.53"/>
</LinearGradientBrush>
<BitmapImage x:Key="o_1" UriSource="Resources/o1.png"/>
<BitmapImage x:Key="o_2" UriSource="Resources/o2.png"/>
<BitmapImage x:Key="o_3" UriSource="Resources/o3.png"/>
<BitmapImage x:Key="o_4" UriSource="Resources/o4.png"/>
<BitmapImage x:Key="o_5" UriSource="Resources/o5.png"/>
<BitmapImage x:Key="o_6" UriSource="Resources/o6.png"/>
<BitmapImage x:Key="o7" UriSource="Resources/o7.png"/>
<BitmapImage x:Key="o_8" UriSource="Resources/o8.png"/>
<BitmapImage x:Key="o_9" UriSource="Resources/o9.png"/>
<BitmapImage x:Key="o_10" UriSource="Resources/o10.png" />
<BitmapImage x:Key="CloseButton" UriSource="Resources/Close.png"/>
<BitmapImage x:Key="SaveButton" UriSource="Resources/Save.png" />
<BitmapImage x:Key="PrintButton" UriSource="Resources/Print.png" />
<BitmapImage x:Key="o1" UriSource="Resources/gsh06.png"/>
<BitmapImage x:Key="o2" UriSource="Resources/gsh07.png"/>
<BitmapImage x:Key="o3" UriSource="Resources/gsh01.png"/>
<BitmapImage x:Key="o4" UriSource="Resources/gsh02.png"/>
<BitmapImage x:Key="o5" UriSource="Resources/gsh04.png"/>
<BitmapImage x:Key="o6" UriSource="Resources/gsh08.png"/>
<BitmapImage x:Key="o_7" UriSource="Resources/gsh01.png"/>
<BitmapImage x:Key="o8" UriSource="Resources/gsh03.png"/>
<BitmapImage x:Key="o9" UriSource="Resources/gsh05.png"/>
<BitmapImage x:Key="o10" UriSource="Resources/gsh09.png"/>
<hft:ClassKonwerterNaProcenty x:Key="BoolToProcent"/>
<hft:ClassKonwerterNaKolory x:Key="BoolToColorError"/>
<Style x:Key="labelStyle" TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="Height" Value="26" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="FontWeight" Value="Bold"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="labelErrDescStyle" TargetType="Label" >
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="Height" Value="26" />
<Setter Property="Foreground" Value="Red"/>
<Setter Property="Width" Value="Auto" />
<Setter Property="Margin" Value="169,0,10,0"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="HorizontalContentAlignment" Value="Left"/>
</Style>
<Style x:Key="labelErrDescInhaltstoffeStyle" BasedOn="{StaticResource labelErrDescStyle}" TargetType="Label" >
<Setter Property="Margin" Value="20,0,10,0"/>
</Style>
<Style x:Key="textBoxStyle" TargetType="TextBox" >
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="MinHeight" Value="23"/>
<Setter Property="Height" Value="Auto" />
<Setter Property="TextWrapping" Value="Wrap" />
<Setter Property="Margin" Value="10,3,10,0"/>
<Setter Property="AcceptsReturn" Value="True"/>
<Setter Property="ToolTipService.ShowDuration" Value="20000"/>
</Style>
<Style x:Key="textBoxLiczbaStyle" TargetType="TextBox" >
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Height" Value="23" />
<Setter Property="TextWrapping" Value="WrapWithOverflow" />
<Setter Property="Width" Value="50" />
<Style.Triggers>
<Trigger Property="Validation.HasError" Value="True">
<Setter Property="Background" Value="Red"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="imageObrazek" TargetType="Image">
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="Height" Value="50"/>
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="Width" Value="50"/>
<Setter Property="RenderOptions.BitmapScalingMode" Value="Fant"/>
</Style>
<Style x:Key="comboSkladnikStyle" TargetType="ComboBox">
<Setter Property="Margin" Value="10,0,10,0"/>
<Setter Property="ItemsSource" Value="{Binding Path=Tag.Skladniki, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
Text="{Binding Kod}"
FontWeight="Bold"/>
<TextBlock Grid.Row="1"
Text="{Binding Nazwa}"
FontWeight="Light"/>
</Grid>
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="SelectedValuePath" Value="Id"/>
<Setter Property="MinWidth" Value="100"/>
<Setter Property="Width" Value="200"/>
<Setter Property="ToolTip" Value="{Binding Path=SelectedItem.Nazwa, RelativeSource={RelativeSource Self}}"/>
</Style>
<Style x:Key="buttonStyle" TargetType="Button">
<Setter Property="UseLayoutRounding" Value="True"/>
<Setter Property="Margin" Value="10,3,10,3"/>
<Setter Property="Width" Value="Auto"/>
</Style>
<Style x:Key="dataGridHistoriaStyle" TargetType="DataGrid">
<Setter Property="RowHeight" Value="{x:Static sys:Double.NaN}"/>
<Setter Property="RowHeaderWidth" Value="0"/>
<Setter Property="CanUserAddRows" Value="False"/>
<Setter Property="AutoGenerateColumns" Value="False"/>
<Setter Property="BorderBrush" Value="Gray"/>
<Setter Property="ColumnWidth" Value="Auto"/>
</Style>
<Style x:Key="toolTipImageStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
HorizontalAlignment="Stretch"
TextAlignment="Center"
DataContext="{TemplateBinding PlacementTarget}"
FontWeight="Bold"
Text="{Binding Tag}"/>
<Image Width="100" Height="100" Grid.Row="1"
DataContext="{TemplateBinding PlacementTarget}"
Source="{Binding Source}"
RenderOptions.BitmapScalingMode="Fant"/>
<DataGrid ItemsSource="{TemplateBinding Content}"
Grid.Row="2"
Style="{DynamicResource dataGridHistoriaStyle}">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="toolTipHistoriaStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<DataGrid Style="{DynamicResource dataGridHistoriaStyle}" ItemsSource="{TemplateBinding Content}" Grid.Row="1">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość" TextBlock.LineStackingStrategy="MaxHeight" TextBlock.LineHeight="Auto" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="toolTipHistoriaSkladnikaStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<DataGrid ItemsSource="{TemplateBinding Content}" Grid.Row="1" Style="{DynamicResource dataGridHistoriaStyle}">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość" TextBlock.LineStackingStrategy="MaxHeight" TextBlock.LineHeight="Auto" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="SmallButtonStyle" TargetType="Button" BasedOn="{StaticResource {x:Type Button}}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Width" Value="20"/>
<Setter Property="Height" Value="20"/>
<Setter Property="Margin" Value="3"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<ControlTemplate.Triggers>
<Trigger Property="Button.IsPressed" Value="True">
<Setter Property="Margin" Value="5,4,1,2"/>
</Trigger>
</ControlTemplate.Triggers>
<StackPanel>
<Image RenderOptions.BitmapScalingMode="Fant" Source="{TemplateBinding Property=Content}">
<Image.Style>
<Style TargetType="{x:Type Image}">
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Opacity" Value="0.4"/>
</Trigger>
</Style.Triggers>
</Style>
</Image.Style>
</Image>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="BigButtonStyle" TargetType="Button" BasedOn="{StaticResource SmallButtonStyle}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Width" Value="32"/>
<Setter Property="Height" Value="32"/>
<Setter Property="Margin" Value="3,3,3,3"/>
</Style>
<DataTemplate x:Key="InhaltstoffeTemplate">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<ComboBox Style="{StaticResource comboSkladnikStyle}"
SelectedValue="{Binding Id, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
KeyDown="ComboBox_KeyDown"
Grid.Column="0">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</ComboBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}"
Grid.Column="1"
Text="{Binding Procent, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}"
Name="inhT">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}"
Grid.Column="2"
Text="{Binding ProcentDo, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}"
Name="inhTDo">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{DynamicResource labelErrDescInhaltstoffeStyle}"
Content="{Binding Path=(Validation.Errors).CurrentItem.ErrorContent, ElementName=inhT}"
Grid.Column="3"/>
</Grid>
</DataTemplate>
</ResourceDictionary>
</Window.Resources>
<Grid Background="{DynamicResource tlo}" UseLayoutRounding="False">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<ScrollViewer Grid.Row="0">
<Grid ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Visible"
Height="Auto"
VerticalAlignment="Top"
UseLayoutRounding="False">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" MinWidth="180"/>
<ColumnDefinition Width="*" MinWidth="319"/>
</Grid.ColumnDefinitions>
<Label Content="Name" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="0" />
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Name}" IsEnabled="False" Grid.Column="1" Grid.Row="0"/>
<Label Content="Lieferant" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="1"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Lieferant}" IsEnabled="False" Grid.Column="1" Grid.Row="1"/>
<Label Content="Herstellort" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="2"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Herstellort, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="2">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Herstellort_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Artikel" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="3"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Art, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="3"/>
<Label Content="SDS Kenzeichnung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="4"/>
<!--Obrazki SDS-->
<Grid Grid.Column="1" Grid.Row="4">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Image Style="{DynamicResource imageObrazek}" Margin="10,5,0,0" Grid.Row="0" Tag="Ostra toksyczność" Name="obr1"
Source="{DynamicResource o1}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek1.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek1.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="40,35,0,0" Grid.Row="0" Tag="Ostra toksyczność, działanie uczulające dla skóry i drażniące" Name="obr2"
Source="{DynamicResource o2}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek2.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek2.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="70,5,0,0" Grid.Row="0" Tag="Wybuchowe"
Source="{DynamicResource o3}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek3.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek3.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="100,35,0,0" Grid.Row="0" Tag="Palne"
Source="{DynamicResource o4}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek4.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek4.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="130,5,0,0" Grid.Row="0" Tag="Sprężone gazy"
Source="{DynamicResource o5}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek5.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek5.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="160,35,0,0" Grid.Row="0" Tag="CMR, Uczulające (układ oddechowy) Toksyczność układowa na narządy docelowe (kat 1 i 2)"
Source="{DynamicResource o6}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek6.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek6.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="190,5,0,0" Grid.Row="0" Tag="Utleniające"
Source="{DynamicResource o8}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek8.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek8.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="220,35,0,0" Grid.Row="0" Tag="Żrące"
Source="{DynamicResource o9}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek9.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek9.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="250,5,0,0" Grid.Row="0" Tag="Niebezpieczne dla środowiska"
Source="{DynamicResource o10}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek10.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek10.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Row="1" IsEnabled="False"
Text="{Binding SDS_Text_auto, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Row="2"
Text="{Binding SDS_Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding SDS_Text_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
</Grid>
<Label Content="Schichten" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="5"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Schichten, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="5" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichten_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Eigenschaft" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="6"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Eigenschaften, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="6">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Eigenschaften_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Anleitung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="7"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Anleitung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="7">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Anleitung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="FS %" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="8"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding FS_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="8" Name="fs_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding FS_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding FS_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="8" Name="fs_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding FS_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="8">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors).CurrentItem.ErrorContent" ElementName="fs_od" FallbackValue=""/>
<Binding Path="(Validation.Errors).CurrentItem.ErrorContent" ElementName="fs_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Dichte" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="9"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Dichte, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="9" Name="dichte">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Dichte_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Dichte_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="9" Name="dichte_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Dichte_Historia_do}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="9">
<Label.Content>
<Binding Path="(Validation.Errors).CurrentItem.ErrorContent" ElementName="dichte" FallbackValue=""/>
</Label.Content>
</Label>
<Label Content="Viskosität" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="10"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Viskositat_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="10" Name="vis_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Viskositat_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Viskositat_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="10" Name="vis_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Viskositat_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="10">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors).CurrentItem.ErrorContent" ElementName="vis_od" FallbackValue=""/>
<Binding Path="(Validation.Errors).CurrentItem.ErrorContent" ElementName="vis_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Farbe" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="11"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Farbe, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="11" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Farbe_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Verdünnung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="12"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Verdunnung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="12" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Verdunnung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Schichtdicke" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="13"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Margin="10,3,260,0" Text="{Binding Schichtdicke_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Grid.Column="1" Grid.Row="13" Name="schd_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichtdicke_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Margin="100,3,160,0" Text="{Binding Schichtdicke_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Grid.Column="1" Grid.Row="13" Name="schd_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichtdicke_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="13">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors).CurrentItem.ErrorContent" ElementName="schd_od" FallbackValue=""/>
<Binding Path="(Validation.Errors).CurrentItem.ErrorContent" ElementName="schd_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Leistung nach Beschichtung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="14"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Leistung_nach_Beschichtung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="14" Name="leist" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Leistung_nach_Beschichtung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Content="{Binding Path=(Validation.Errors).CurrentItem.ErrorContent, ElementName=leist}" Grid.Column="1" Grid.Row="14"/>
<Label Content="Lagerkapazitat" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="15"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Lagerkapazitat, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="15" Name="lager">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Lagerkapazitat_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Content="{Binding Path=(Validation.Errors).CurrentItem.ErrorContent, ElementName=lager}" Grid.Column="1" Grid.Row="15"/>
<Label Content="Verarbeitung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="16"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Verarbeitung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="16" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Verarbeitung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<!--Składniki-->
<Label Content="Inhaltstoffe" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="17"/>
<Expander Grid.Column="1" Grid.Row="17">
<ItemsControl ItemTemplate="{StaticResource InhaltstoffeTemplate}"
ItemsSource="{Binding Inhaltsstoffe}"
Tag="{Binding .}"/>
</Expander>
<Label Content="Preis" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="18"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Preis, Mode=OneWay}" IsEnabled="False" Margin="10,3,260,0" Grid.Column="1" Grid.Row="18"/>
<Label Content="Einheit preis" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="19"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Einheit_preis, Mode=OneWay}" IsEnabled="False" Margin="10,3,260,0" Grid.Column="1" Grid.Row="19" Background="{Binding Einheit_preis_error, Converter={StaticResource BoolToColorError}}"/>
<Label Content="Behälter" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="20"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Behalter, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="20" IsEnabled="False"/>
</Grid>
</ScrollViewer>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource SaveButton}"
Grid.Column="0"
Command="{Binding Zapisz}"/>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource CloseButton}"
Grid.Column="1"
Click="Button_Click"/>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource PrintButton}"
Grid.Column="3"
IsEnabled="False"
/>
</Grid>
<StatusBar HorizontalAlignment="Stretch"
Height="30"
VerticalAlignment="Bottom"
Width="Auto"
Visibility="Collapsed"
Grid.Row="2">
<Label Content="Test"/>
</StatusBar>
</Grid>
</Window>

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -0,0 +1,55 @@
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Haftmittel")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Haftmittel")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
//In order to begin building localizable applications, set
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
//inside a <PropertyGroup>. For example, if you are using US english
//in your source files, set the <UICulture> to en-US. Then uncomment
//the NeutralResourceLanguage attribute below. Update the "en-US" in
//the line below to match the UICulture setting in the project file.
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@@ -0,0 +1,482 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="DataSetLista" targetNamespace="http://tempuri.org/DataSetLista.xsd" xmlns:mstns="http://tempuri.org/DataSetLista.xsd" xmlns="http://tempuri.org/DataSetLista.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:annotation>
<xs:appinfo source="urn:schemas-microsoft-com:xml-msdatasource">
<DataSource DefaultConnectionIndex="0" FunctionsComponentName="QueriesTableAdapter" Modifier="AutoLayout, AnsiClass, Class, Public" SchemaSerializationMode="IncludeSchema" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<Connections>
<Connection AppSettingsObjectName="Settings" AppSettingsPropertyName="ConnectionString" ConnectionStringObject="" IsAppSettingsProperty="true" Modifier="Assembly" Name="ConnectionString (Settings)" ParameterPrefix="@" PropertyReference="ApplicationSettings.Haftmittel.Properties.Settings.GlobalReference.Default.ConnectionString" Provider="System.Data.SqlClient" />
</Connections>
<Tables>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="ListaTableAdapter" GeneratorDataComponentClassName="ListaTableAdapter" Name="Lista" UserDataComponentName="ListaTableAdapter">
<MainSource>
<DbSource ConnectionRef="ConnectionString (Settings)" DbObjectName="CDNXL_GOTEC_80.myconsult_haftmittel.Lista" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Fill" GenerateShortCommands="true" GeneratorSourceName="Fill" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [myconsult_haftmittel].[Lista] ([hml_TwrTyp], [hml_TwrNumer], [hml_DataPowstania], [hml_DataArchiwizacji], [hml_Herstellort], [hml_SDStext], [hml_SDS1], [hml_SDS2], [hml_SDS3], [hml_SDS4], [hml_SDS5], [hml_SDS6], [hml_SDS7], [hml_SDS8], [hml_SDS9], [hml_SDS10], [hml_Schichten], [hml_Eigenschaften], [hml_Anleitung], [hml_FS_od], [hml_FS_do], [hml_Dichte], [hml_Viskositat_od], [hml_Viskositat_do], [hml_Farbe], [hml_Verdunnung], [hml_Schichtdicke_od], [hml_Schichtdicke_do], [hml_Leistung], [hml_Lagerkapazitat], [hml_Verarbeitung], [hml_Inh0_Id], [hml_Inh0_Procent], [hml_Inh0_ProcentDo], [hml_Inh1_Id], [hml_Inh1_Procent], [hml_Inh1_ProcentDo], [hml_Inh2_Id], [hml_Inh2_Procent], [hml_Inh2_ProcentDo], [hml_Inh3_Id], [hml_Inh3_Procent], [hml_Inh3_ProcentDo], [hml_Inh4_Id], [hml_Inh4_Procent], [hml_Inh4_ProcentDo], [hml_Inh5_Id], [hml_Inh5_Procent], [hml_Inh5_ProcentDo], [hml_Inh6_Id], [hml_Inh6_Procent], [hml_Inh6_ProcentDo], [hml_Inh7_Id], [hml_Inh7_Procent], [hml_Inh7_ProcentDo], [hml_Inh8_Id], [hml_Inh8_Procent], [hml_Inh8_ProcentDo], [hml_Inh9_Id], [hml_Inh9_Procent], [hml_Inh9_ProcentDo], [hml_Behelter], [hml_OpeNumer], [hml_Dichte_do], [hml_Inh10_Id], [hml_Inh11_Id], [hml_Inh12_Id], [hml_Inh13_Id], [hml_Inh14_Id], [hml_Inh15_Id], [hml_Inh16_Id], [hml_Inh17_Id], [hml_Inh18_Id], [hml_Inh19_Id], [hml_Inh10_Procent], [hml_Inh11_Procent], [hml_Inh12_Procent], [hml_Inh13_Procent], [hml_Inh14_Procent], [hml_Inh15_Procent], [hml_Inh16_Procent], [hml_Inh17_Procent], [hml_Inh18_Procent], [hml_Inh19_Procent], [hml_Inh10_ProcentDo], [hml_Inh11_ProcentDo], [hml_Inh12_ProcentDo], [hml_Inh13_ProcentDo], [hml_Inh14_ProcentDo], [hml_Inh15_ProcentDo], [hml_Inh16_ProcentDo], [hml_Inh17_ProcentDo], [hml_Inh18_ProcentDo], [hml_Inh19_ProcentDo]) VALUES (@hml_TwrTyp, @hml_TwrNumer, @hml_DataPowstania, @hml_DataArchiwizacji, @hml_Herstellort, @hml_SDStext, @hml_SDS1, @hml_SDS2, @hml_SDS3, @hml_SDS4, @hml_SDS5, @hml_SDS6, @hml_SDS7, @hml_SDS8, @hml_SDS9, @hml_SDS10, @hml_Schichten, @hml_Eigenschaften, @hml_Anleitung, @hml_FS_od, @hml_FS_do, @hml_Dichte, @hml_Viskositat_od, @hml_Viskositat_do, @hml_Farbe, @hml_Verdunnung, @hml_Schichtdicke_od, @hml_Schichtdicke_do, @hml_Leistung, @hml_Lagerkapazitat, @hml_Verarbeitung, @hml_Inh0_Id, @hml_Inh0_Procent, @hml_Inh0_ProcentDo, @hml_Inh1_Id, @hml_Inh1_Procent, @hml_Inh1_ProcentDo, @hml_Inh2_Id, @hml_Inh2_Procent, @hml_Inh2_ProcentDo, @hml_Inh3_Id, @hml_Inh3_Procent, @hml_Inh3_ProcentDo, @hml_Inh4_Id, @hml_Inh4_Procent, @hml_Inh4_ProcentDo, @hml_Inh5_Id, @hml_Inh5_Procent, @hml_Inh5_ProcentDo, @hml_Inh6_Id, @hml_Inh6_Procent, @hml_Inh6_ProcentDo, @hml_Inh7_Id, @hml_Inh7_Procent, @hml_Inh7_ProcentDo, @hml_Inh8_Id, @hml_Inh8_Procent, @hml_Inh8_ProcentDo, @hml_Inh9_Id, @hml_Inh9_Procent, @hml_Inh9_ProcentDo, @hml_Behelter, @hml_OpeNumer, @hml_Dichte_do, @hml_Inh10_Id, @hml_Inh11_Id, @hml_Inh12_Id, @hml_Inh13_Id, @hml_Inh14_Id, @hml_Inh15_Id, @hml_Inh16_Id, @hml_Inh17_Id, @hml_Inh18_Id, @hml_Inh19_Id, @hml_Inh10_Procent, @hml_Inh11_Procent, @hml_Inh12_Procent, @hml_Inh13_Procent, @hml_Inh14_Procent, @hml_Inh15_Procent, @hml_Inh16_Procent, @hml_Inh17_Procent, @hml_Inh18_Procent, @hml_Inh19_Procent, @hml_Inh10_ProcentDo, @hml_Inh11_ProcentDo, @hml_Inh12_ProcentDo, @hml_Inh13_ProcentDo, @hml_Inh14_ProcentDo, @hml_Inh15_ProcentDo, @hml_Inh16_ProcentDo, @hml_Inh17_ProcentDo, @hml_Inh18_ProcentDo, @hml_Inh19_ProcentDo)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int16" Direction="Input" ParameterName="@hml_TwrTyp" Precision="0" ProviderType="SmallInt" Scale="0" Size="0" SourceColumn="hml_TwrTyp" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_TwrNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@hml_DataPowstania" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="hml_DataPowstania" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@hml_DataArchiwizacji" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="hml_DataArchiwizacji" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Herstellort" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Herstellort" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_SDStext" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_SDStext" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS1" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS2" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS3" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS3" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS4" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS5" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS5" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS6" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS6" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS7" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS7" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS8" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS9" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS9" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS10" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS10" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Schichten" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Schichten" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Eigenschaften" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Eigenschaften" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Anleitung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Anleitung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_FS_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_FS_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_FS_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_FS_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Dichte" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Dichte" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Viskositat_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Viskositat_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Viskositat_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Viskositat_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Farbe" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Farbe" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Verdunnung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Verdunnung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Schichtdicke_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Schichtdicke_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Schichtdicke_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Schichtdicke_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Leistung" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Leistung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Lagerkapazitat" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Lagerkapazitat" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Verarbeitung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Verarbeitung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh0_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh0_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh0_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh0_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh0_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh0_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh1_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh1_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh1_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh1_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh1_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh1_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh2_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh2_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh2_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh2_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh2_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh2_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh3_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh3_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh3_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh3_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh3_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh3_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh4_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh4_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh4_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh4_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh4_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh4_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh5_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh5_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh5_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh5_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh5_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh5_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh6_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh6_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh6_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh6_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh6_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh6_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh7_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh7_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh7_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh7_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh7_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh7_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh8_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh8_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh8_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh8_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh8_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh8_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh9_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh9_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh9_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh9_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh9_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh9_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Behelter" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Behelter" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_OpeNumer" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_OpeNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Dichte_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Dichte_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh10_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh10_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh11_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh11_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh12_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh12_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh13_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh13_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh14_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh14_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh15_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh15_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh16_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh16_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh17_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh17_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh18_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh18_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh19_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh19_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh10_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh10_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh11_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh11_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh12_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh12_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh13_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh13_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh14_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh14_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh15_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh15_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh16_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh16_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh17_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh17_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh18_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh18_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh19_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh19_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh10_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh10_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh11_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh11_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh12_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh12_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh13_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh13_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh14_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh14_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh15_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh15_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh16_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh16_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh17_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh17_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh18_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh18_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh19_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh19_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT *
, COALESCE(CDN.NazwaObiektu(128, hml_OpeNumer, 0, 2), '') AS Ope_Ident
FROM myconsult_haftmittel.Lista
WHERE hml_TwrNumer = @TwrNumer
ORDER BY hml_DataPowstania</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="TwrNumer" ColumnName="hml_TwrNumer" DataSourceName="CDNXL_GOTEC_80.myconsult_haftmittel.Lista" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="hml_TwrNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="hml_TwrTyp" DataSetColumn="hml_TwrTyp" />
<Mapping SourceColumn="hml_TwrNumer" DataSetColumn="hml_TwrNumer" />
<Mapping SourceColumn="hml_DataPowstania" DataSetColumn="hml_DataPowstania" />
<Mapping SourceColumn="hml_DataArchiwizacji" DataSetColumn="hml_DataArchiwizacji" />
<Mapping SourceColumn="hml_Herstellort" DataSetColumn="hml_Herstellort" />
<Mapping SourceColumn="hml_SDStext" DataSetColumn="hml_SDStext" />
<Mapping SourceColumn="hml_SDS1" DataSetColumn="hml_SDS1" />
<Mapping SourceColumn="hml_SDS2" DataSetColumn="hml_SDS2" />
<Mapping SourceColumn="hml_SDS3" DataSetColumn="hml_SDS3" />
<Mapping SourceColumn="hml_SDS4" DataSetColumn="hml_SDS4" />
<Mapping SourceColumn="hml_SDS5" DataSetColumn="hml_SDS5" />
<Mapping SourceColumn="hml_SDS6" DataSetColumn="hml_SDS6" />
<Mapping SourceColumn="hml_SDS7" DataSetColumn="hml_SDS7" />
<Mapping SourceColumn="hml_SDS8" DataSetColumn="hml_SDS8" />
<Mapping SourceColumn="hml_SDS9" DataSetColumn="hml_SDS9" />
<Mapping SourceColumn="hml_SDS10" DataSetColumn="hml_SDS10" />
<Mapping SourceColumn="hml_Schichten" DataSetColumn="hml_Schichten" />
<Mapping SourceColumn="hml_Eigenschaften" DataSetColumn="hml_Eigenschaften" />
<Mapping SourceColumn="hml_Anleitung" DataSetColumn="hml_Anleitung" />
<Mapping SourceColumn="hml_FS_od" DataSetColumn="hml_FS_od" />
<Mapping SourceColumn="hml_FS_do" DataSetColumn="hml_FS_do" />
<Mapping SourceColumn="hml_Dichte" DataSetColumn="hml_Dichte" />
<Mapping SourceColumn="hml_Viskositat_od" DataSetColumn="hml_Viskositat_od" />
<Mapping SourceColumn="hml_Viskositat_do" DataSetColumn="hml_Viskositat_do" />
<Mapping SourceColumn="hml_Farbe" DataSetColumn="hml_Farbe" />
<Mapping SourceColumn="hml_Verdunnung" DataSetColumn="hml_Verdunnung" />
<Mapping SourceColumn="hml_Schichtdicke_od" DataSetColumn="hml_Schichtdicke_od" />
<Mapping SourceColumn="hml_Schichtdicke_do" DataSetColumn="hml_Schichtdicke_do" />
<Mapping SourceColumn="hml_Leistung" DataSetColumn="hml_Leistung" />
<Mapping SourceColumn="hml_Lagerkapazitat" DataSetColumn="hml_Lagerkapazitat" />
<Mapping SourceColumn="hml_Verarbeitung" DataSetColumn="hml_Verarbeitung" />
<Mapping SourceColumn="hml_Inh0_Id" DataSetColumn="hml_Inh0_Id" />
<Mapping SourceColumn="hml_Inh0_Procent" DataSetColumn="hml_Inh0_Procent" />
<Mapping SourceColumn="hml_Inh0_ProcentDo" DataSetColumn="hml_Inh0_ProcentDo" />
<Mapping SourceColumn="hml_Inh1_Id" DataSetColumn="hml_Inh1_Id" />
<Mapping SourceColumn="hml_Inh1_Procent" DataSetColumn="hml_Inh1_Procent" />
<Mapping SourceColumn="hml_Inh1_ProcentDo" DataSetColumn="hml_Inh1_ProcentDo" />
<Mapping SourceColumn="hml_Inh2_Id" DataSetColumn="hml_Inh2_Id" />
<Mapping SourceColumn="hml_Inh2_Procent" DataSetColumn="hml_Inh2_Procent" />
<Mapping SourceColumn="hml_Inh2_ProcentDo" DataSetColumn="hml_Inh2_ProcentDo" />
<Mapping SourceColumn="hml_Inh3_Id" DataSetColumn="hml_Inh3_Id" />
<Mapping SourceColumn="hml_Inh3_Procent" DataSetColumn="hml_Inh3_Procent" />
<Mapping SourceColumn="hml_Inh3_ProcentDo" DataSetColumn="hml_Inh3_ProcentDo" />
<Mapping SourceColumn="hml_Inh4_Id" DataSetColumn="hml_Inh4_Id" />
<Mapping SourceColumn="hml_Inh4_Procent" DataSetColumn="hml_Inh4_Procent" />
<Mapping SourceColumn="hml_Inh4_ProcentDo" DataSetColumn="hml_Inh4_ProcentDo" />
<Mapping SourceColumn="hml_Inh5_Id" DataSetColumn="hml_Inh5_Id" />
<Mapping SourceColumn="hml_Inh5_Procent" DataSetColumn="hml_Inh5_Procent" />
<Mapping SourceColumn="hml_Inh5_ProcentDo" DataSetColumn="hml_Inh5_ProcentDo" />
<Mapping SourceColumn="hml_Inh6_Id" DataSetColumn="hml_Inh6_Id" />
<Mapping SourceColumn="hml_Inh6_Procent" DataSetColumn="hml_Inh6_Procent" />
<Mapping SourceColumn="hml_Inh6_ProcentDo" DataSetColumn="hml_Inh6_ProcentDo" />
<Mapping SourceColumn="hml_Inh7_Id" DataSetColumn="hml_Inh7_Id" />
<Mapping SourceColumn="hml_Inh7_Procent" DataSetColumn="hml_Inh7_Procent" />
<Mapping SourceColumn="hml_Inh7_ProcentDo" DataSetColumn="hml_Inh7_ProcentDo" />
<Mapping SourceColumn="hml_Inh8_Id" DataSetColumn="hml_Inh8_Id" />
<Mapping SourceColumn="hml_Inh8_Procent" DataSetColumn="hml_Inh8_Procent" />
<Mapping SourceColumn="hml_Inh8_ProcentDo" DataSetColumn="hml_Inh8_ProcentDo" />
<Mapping SourceColumn="hml_Inh9_Id" DataSetColumn="hml_Inh9_Id" />
<Mapping SourceColumn="hml_Inh9_Procent" DataSetColumn="hml_Inh9_Procent" />
<Mapping SourceColumn="hml_Inh9_ProcentDo" DataSetColumn="hml_Inh9_ProcentDo" />
<Mapping SourceColumn="hml_Behelter" DataSetColumn="hml_Behelter" />
<Mapping SourceColumn="hml_OpeNumer" DataSetColumn="hml_OpeNumer" />
<Mapping SourceColumn="Ope_Ident" DataSetColumn="Ope_Ident" />
<Mapping SourceColumn="hml_Dichte_do" DataSetColumn="hml_Dichte_do" />
<Mapping SourceColumn="hml_Inh10_Id" DataSetColumn="hml_Inh10_Id" />
<Mapping SourceColumn="hml_Inh11_Id" DataSetColumn="hml_Inh11_Id" />
<Mapping SourceColumn="hml_Inh12_Id" DataSetColumn="hml_Inh12_Id" />
<Mapping SourceColumn="hml_Inh13_Id" DataSetColumn="hml_Inh13_Id" />
<Mapping SourceColumn="hml_Inh14_Id" DataSetColumn="hml_Inh14_Id" />
<Mapping SourceColumn="hml_Inh15_Id" DataSetColumn="hml_Inh15_Id" />
<Mapping SourceColumn="hml_Inh16_Id" DataSetColumn="hml_Inh16_Id" />
<Mapping SourceColumn="hml_Inh17_Id" DataSetColumn="hml_Inh17_Id" />
<Mapping SourceColumn="hml_Inh18_Id" DataSetColumn="hml_Inh18_Id" />
<Mapping SourceColumn="hml_Inh19_Id" DataSetColumn="hml_Inh19_Id" />
<Mapping SourceColumn="hml_Inh10_Procent" DataSetColumn="hml_Inh10_Procent" />
<Mapping SourceColumn="hml_Inh11_Procent" DataSetColumn="hml_Inh11_Procent" />
<Mapping SourceColumn="hml_Inh12_Procent" DataSetColumn="hml_Inh12_Procent" />
<Mapping SourceColumn="hml_Inh13_Procent" DataSetColumn="hml_Inh13_Procent" />
<Mapping SourceColumn="hml_Inh14_Procent" DataSetColumn="hml_Inh14_Procent" />
<Mapping SourceColumn="hml_Inh15_Procent" DataSetColumn="hml_Inh15_Procent" />
<Mapping SourceColumn="hml_Inh16_Procent" DataSetColumn="hml_Inh16_Procent" />
<Mapping SourceColumn="hml_Inh17_Procent" DataSetColumn="hml_Inh17_Procent" />
<Mapping SourceColumn="hml_Inh18_Procent" DataSetColumn="hml_Inh18_Procent" />
<Mapping SourceColumn="hml_Inh19_Procent" DataSetColumn="hml_Inh19_Procent" />
<Mapping SourceColumn="hml_Inh10_ProcentDo" DataSetColumn="hml_Inh10_ProcentDo" />
<Mapping SourceColumn="hml_Inh11_ProcentDo" DataSetColumn="hml_Inh11_ProcentDo" />
<Mapping SourceColumn="hml_Inh12_ProcentDo" DataSetColumn="hml_Inh12_ProcentDo" />
<Mapping SourceColumn="hml_Inh13_ProcentDo" DataSetColumn="hml_Inh13_ProcentDo" />
<Mapping SourceColumn="hml_Inh14_ProcentDo" DataSetColumn="hml_Inh14_ProcentDo" />
<Mapping SourceColumn="hml_Inh15_ProcentDo" DataSetColumn="hml_Inh15_ProcentDo" />
<Mapping SourceColumn="hml_Inh16_ProcentDo" DataSetColumn="hml_Inh16_ProcentDo" />
<Mapping SourceColumn="hml_Inh17_ProcentDo" DataSetColumn="hml_Inh17_ProcentDo" />
<Mapping SourceColumn="hml_Inh18_ProcentDo" DataSetColumn="hml_Inh18_ProcentDo" />
<Mapping SourceColumn="hml_Inh19_ProcentDo" DataSetColumn="hml_Inh19_ProcentDo" />
</Mappings>
<Sources />
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="DaneTowaruTableAdapter" GeneratorDataComponentClassName="DaneTowaruTableAdapter" Name="DaneTowaru" UserDataComponentName="DaneTowaruTableAdapter">
<MainSource>
<DbSource ConnectionRef="ConnectionString (Settings)" DbObjectName="CDNXL_GOTEC_80.CDN.TwrKarty" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Fill" GenerateShortCommands="false" GeneratorSourceName="Fill" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT Twr_Kod, Twr_Nazwa, Twr_Jm,
CDN.NazwaObiektu(TWD_KntTyp, TWD_KntNumer, 0, 4) AS Dostawca,
coalesce(TwD_Cena, 0) AS TwD_Cena,
coalesce(TwD_Waluta,'') AS TwD_Waluta,
coalesce(TwJ_JmZ+ ' ' + cast(cast(TwJ_PrzeliczL / TwJ_PrzeliczM as decimal(15,2)) as varchar) + ' ' + Twr_Jm,'') AS TwJ_JmZ
FROM CDN.TwrKarty LEFT OUTER JOIN
CDN.TwrDost ON TWD_TwrTyp = Twr_GIDTyp AND TWD_TwrNumer = Twr_GIDNumer AND
TWD_TwrLp = Twr_DstDomyslny AND TWD_KlasaKnt = 8
LEFT OUTER JOIN CDN.TwrJm ON TwJ_TwrTyp = Twr_GIDTyp AND TwJ_TwrNumer = Twr_GIDNumer
AND TwJ_TwrLp = Twr_JmDomyslnaZak
WHERE Twr_GIDNumer = @TwrNumer</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="TwrNumer" ColumnName="Twr_GIDNumer" DataSourceName="CDNXL_GOTEC_80.CDN.TwrKarty" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="Twr_GIDNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="Twr_Kod" DataSetColumn="Twr_Kod" />
<Mapping SourceColumn="Twr_Nazwa" DataSetColumn="Twr_Nazwa" />
<Mapping SourceColumn="Twr_Jm" DataSetColumn="Twr_Jm" />
<Mapping SourceColumn="Dostawca" DataSetColumn="Dostawca" />
<Mapping SourceColumn="TwD_Cena" DataSetColumn="TwD_Cena" />
<Mapping SourceColumn="TwD_Waluta" DataSetColumn="TwD_Waluta" />
<Mapping SourceColumn="TwJ_JmZ" DataSetColumn="TwJ_JmZ" />
</Mappings>
<Sources />
</TableAdapter>
</Tables>
<Sources />
</DataSource>
</xs:appinfo>
</xs:annotation>
<xs:element name="DataSetLista" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DataSetLista" msprop:Generator_UserDSName="DataSetLista">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Lista" msprop:Generator_TableClassName="ListaDataTable" msprop:Generator_TableVarName="tableLista" msprop:Generator_TablePropName="Lista" msprop:Generator_RowDeletingName="ListaRowDeleting" msprop:Generator_RowChangingName="ListaRowChanging" msprop:Generator_RowEvHandlerName="ListaRowChangeEventHandler" msprop:Generator_RowDeletedName="ListaRowDeleted" msprop:Generator_UserTableName="Lista" msprop:Generator_RowChangedName="ListaRowChanged" msprop:Generator_RowEvArgName="ListaRowChangeEvent" msprop:Generator_RowClassName="ListaRow">
<xs:complexType>
<xs:sequence>
<xs:element name="hml_TwrTyp" msprop:Generator_ColumnVarNameInTable="columnhml_TwrTyp" msprop:Generator_ColumnPropNameInRow="hml_TwrTyp" msprop:Generator_ColumnPropNameInTable="hml_TwrTypColumn" msprop:Generator_UserColumnName="hml_TwrTyp" type="xs:short" />
<xs:element name="hml_TwrNumer" msprop:Generator_ColumnVarNameInTable="columnhml_TwrNumer" msprop:Generator_ColumnPropNameInRow="hml_TwrNumer" msprop:Generator_ColumnPropNameInTable="hml_TwrNumerColumn" msprop:Generator_UserColumnName="hml_TwrNumer" type="xs:int" />
<xs:element name="hml_DataPowstania" msprop:Generator_ColumnVarNameInTable="columnhml_DataPowstania" msprop:Generator_ColumnPropNameInRow="hml_DataPowstania" msprop:Generator_ColumnPropNameInTable="hml_DataPowstaniaColumn" msprop:Generator_UserColumnName="hml_DataPowstania" type="xs:dateTime" minOccurs="0" />
<xs:element name="hml_DataArchiwizacji" msprop:Generator_ColumnVarNameInTable="columnhml_DataArchiwizacji" msprop:Generator_ColumnPropNameInRow="hml_DataArchiwizacji" msprop:Generator_ColumnPropNameInTable="hml_DataArchiwizacjiColumn" msprop:Generator_UserColumnName="hml_DataArchiwizacji" type="xs:dateTime" minOccurs="0" />
<xs:element name="hml_Herstellort" msprop:Generator_ColumnVarNameInTable="columnhml_Herstellort" msprop:Generator_ColumnPropNameInRow="hml_Herstellort" msprop:Generator_ColumnPropNameInTable="hml_HerstellortColumn" msprop:Generator_UserColumnName="hml_Herstellort" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_SDStext" msprop:Generator_ColumnVarNameInTable="columnhml_SDStext" msprop:Generator_ColumnPropNameInRow="hml_SDStext" msprop:Generator_ColumnPropNameInTable="hml_SDStextColumn" msprop:Generator_UserColumnName="hml_SDStext" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_SDS1" msprop:Generator_ColumnVarNameInTable="columnhml_SDS1" msprop:Generator_ColumnPropNameInRow="hml_SDS1" msprop:Generator_ColumnPropNameInTable="hml_SDS1Column" msprop:Generator_UserColumnName="hml_SDS1" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS2" msprop:Generator_ColumnVarNameInTable="columnhml_SDS2" msprop:Generator_ColumnPropNameInRow="hml_SDS2" msprop:Generator_ColumnPropNameInTable="hml_SDS2Column" msprop:Generator_UserColumnName="hml_SDS2" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS3" msprop:Generator_ColumnVarNameInTable="columnhml_SDS3" msprop:Generator_ColumnPropNameInRow="hml_SDS3" msprop:Generator_ColumnPropNameInTable="hml_SDS3Column" msprop:Generator_UserColumnName="hml_SDS3" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS4" msprop:Generator_ColumnVarNameInTable="columnhml_SDS4" msprop:Generator_ColumnPropNameInRow="hml_SDS4" msprop:Generator_ColumnPropNameInTable="hml_SDS4Column" msprop:Generator_UserColumnName="hml_SDS4" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS5" msprop:Generator_ColumnVarNameInTable="columnhml_SDS5" msprop:Generator_ColumnPropNameInRow="hml_SDS5" msprop:Generator_ColumnPropNameInTable="hml_SDS5Column" msprop:Generator_UserColumnName="hml_SDS5" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS6" msprop:Generator_ColumnVarNameInTable="columnhml_SDS6" msprop:Generator_ColumnPropNameInRow="hml_SDS6" msprop:Generator_ColumnPropNameInTable="hml_SDS6Column" msprop:Generator_UserColumnName="hml_SDS6" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS7" msprop:Generator_ColumnVarNameInTable="columnhml_SDS7" msprop:Generator_ColumnPropNameInRow="hml_SDS7" msprop:Generator_ColumnPropNameInTable="hml_SDS7Column" msprop:Generator_UserColumnName="hml_SDS7" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS8" msprop:Generator_ColumnVarNameInTable="columnhml_SDS8" msprop:Generator_ColumnPropNameInRow="hml_SDS8" msprop:Generator_ColumnPropNameInTable="hml_SDS8Column" msprop:Generator_UserColumnName="hml_SDS8" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS9" msprop:Generator_ColumnVarNameInTable="columnhml_SDS9" msprop:Generator_ColumnPropNameInRow="hml_SDS9" msprop:Generator_ColumnPropNameInTable="hml_SDS9Column" msprop:Generator_UserColumnName="hml_SDS9" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS10" msprop:Generator_ColumnVarNameInTable="columnhml_SDS10" msprop:Generator_ColumnPropNameInRow="hml_SDS10" msprop:Generator_ColumnPropNameInTable="hml_SDS10Column" msprop:Generator_UserColumnName="hml_SDS10" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_Schichten" msprop:Generator_ColumnVarNameInTable="columnhml_Schichten" msprop:Generator_ColumnPropNameInRow="hml_Schichten" msprop:Generator_ColumnPropNameInTable="hml_SchichtenColumn" msprop:Generator_UserColumnName="hml_Schichten" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Eigenschaften" msprop:Generator_ColumnVarNameInTable="columnhml_Eigenschaften" msprop:Generator_ColumnPropNameInRow="hml_Eigenschaften" msprop:Generator_ColumnPropNameInTable="hml_EigenschaftenColumn" msprop:Generator_UserColumnName="hml_Eigenschaften" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Anleitung" msprop:Generator_ColumnVarNameInTable="columnhml_Anleitung" msprop:Generator_ColumnPropNameInRow="hml_Anleitung" msprop:Generator_ColumnPropNameInTable="hml_AnleitungColumn" msprop:Generator_UserColumnName="hml_Anleitung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_FS_od" msprop:Generator_ColumnVarNameInTable="columnhml_FS_od" msprop:Generator_ColumnPropNameInRow="hml_FS_od" msprop:Generator_ColumnPropNameInTable="hml_FS_odColumn" msprop:Generator_UserColumnName="hml_FS_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_FS_do" msprop:Generator_ColumnVarNameInTable="columnhml_FS_do" msprop:Generator_ColumnPropNameInRow="hml_FS_do" msprop:Generator_ColumnPropNameInTable="hml_FS_doColumn" msprop:Generator_UserColumnName="hml_FS_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Dichte" msprop:Generator_ColumnVarNameInTable="columnhml_Dichte" msprop:Generator_ColumnPropNameInRow="hml_Dichte" msprop:Generator_ColumnPropNameInTable="hml_DichteColumn" msprop:Generator_UserColumnName="hml_Dichte" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Viskositat_od" msprop:Generator_ColumnVarNameInTable="columnhml_Viskositat_od" msprop:Generator_ColumnPropNameInRow="hml_Viskositat_od" msprop:Generator_ColumnPropNameInTable="hml_Viskositat_odColumn" msprop:Generator_UserColumnName="hml_Viskositat_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Viskositat_do" msprop:Generator_ColumnVarNameInTable="columnhml_Viskositat_do" msprop:Generator_ColumnPropNameInRow="hml_Viskositat_do" msprop:Generator_ColumnPropNameInTable="hml_Viskositat_doColumn" msprop:Generator_UserColumnName="hml_Viskositat_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Farbe" msprop:Generator_ColumnVarNameInTable="columnhml_Farbe" msprop:Generator_ColumnPropNameInRow="hml_Farbe" msprop:Generator_ColumnPropNameInTable="hml_FarbeColumn" msprop:Generator_UserColumnName="hml_Farbe" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Verdunnung" msprop:Generator_ColumnVarNameInTable="columnhml_Verdunnung" msprop:Generator_ColumnPropNameInRow="hml_Verdunnung" msprop:Generator_ColumnPropNameInTable="hml_VerdunnungColumn" msprop:Generator_UserColumnName="hml_Verdunnung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Schichtdicke_od" msprop:Generator_ColumnVarNameInTable="columnhml_Schichtdicke_od" msprop:Generator_ColumnPropNameInRow="hml_Schichtdicke_od" msprop:Generator_ColumnPropNameInTable="hml_Schichtdicke_odColumn" msprop:Generator_UserColumnName="hml_Schichtdicke_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Schichtdicke_do" msprop:Generator_ColumnVarNameInTable="columnhml_Schichtdicke_do" msprop:Generator_ColumnPropNameInRow="hml_Schichtdicke_do" msprop:Generator_ColumnPropNameInTable="hml_Schichtdicke_doColumn" msprop:Generator_UserColumnName="hml_Schichtdicke_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Leistung" msprop:Generator_ColumnVarNameInTable="columnhml_Leistung" msprop:Generator_ColumnPropNameInRow="hml_Leistung" msprop:Generator_ColumnPropNameInTable="hml_LeistungColumn" msprop:Generator_UserColumnName="hml_Leistung" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Lagerkapazitat" msprop:Generator_ColumnVarNameInTable="columnhml_Lagerkapazitat" msprop:Generator_ColumnPropNameInRow="hml_Lagerkapazitat" msprop:Generator_ColumnPropNameInTable="hml_LagerkapazitatColumn" msprop:Generator_UserColumnName="hml_Lagerkapazitat" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Verarbeitung" msprop:Generator_ColumnVarNameInTable="columnhml_Verarbeitung" msprop:Generator_ColumnPropNameInRow="hml_Verarbeitung" msprop:Generator_ColumnPropNameInTable="hml_VerarbeitungColumn" msprop:Generator_UserColumnName="hml_Verarbeitung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Inh0_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh0_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh0_IdColumn" msprop:Generator_UserColumnName="hml_Inh0_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh0_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh0_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh0_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh0_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh0_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh0_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh0_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh0_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh1_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh1_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh1_IdColumn" msprop:Generator_UserColumnName="hml_Inh1_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh1_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh1_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh1_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh1_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh1_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh1_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh1_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh1_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh2_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh2_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh2_IdColumn" msprop:Generator_UserColumnName="hml_Inh2_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh2_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh2_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh2_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh2_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh2_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh2_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh2_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh2_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh3_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh3_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh3_IdColumn" msprop:Generator_UserColumnName="hml_Inh3_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh3_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh3_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh3_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh3_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh3_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh3_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh3_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh3_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh4_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh4_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh4_IdColumn" msprop:Generator_UserColumnName="hml_Inh4_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh4_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh4_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh4_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh4_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh4_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh4_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh4_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh4_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh5_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh5_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh5_IdColumn" msprop:Generator_UserColumnName="hml_Inh5_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh5_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh5_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh5_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh5_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh5_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh5_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh5_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh5_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh6_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh6_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh6_IdColumn" msprop:Generator_UserColumnName="hml_Inh6_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh6_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh6_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh6_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh6_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh6_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh6_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh6_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh6_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh7_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh7_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh7_IdColumn" msprop:Generator_UserColumnName="hml_Inh7_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh7_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh7_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh7_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh7_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh7_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh7_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh7_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh7_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh8_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh8_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh8_IdColumn" msprop:Generator_UserColumnName="hml_Inh8_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh8_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh8_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh8_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh8_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh8_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh8_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh8_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh8_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh9_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh9_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh9_IdColumn" msprop:Generator_UserColumnName="hml_Inh9_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh9_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh9_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh9_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh9_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh9_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh9_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh9_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh9_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Behelter" msprop:Generator_ColumnVarNameInTable="columnhml_Behelter" msprop:Generator_ColumnPropNameInRow="hml_Behelter" msprop:Generator_ColumnPropNameInTable="hml_BehelterColumn" msprop:Generator_UserColumnName="hml_Behelter" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_OpeNumer" msprop:Generator_ColumnVarNameInTable="columnhml_OpeNumer" msprop:Generator_ColumnPropNameInRow="hml_OpeNumer" msprop:Generator_ColumnPropNameInTable="hml_OpeNumerColumn" msprop:Generator_UserColumnName="hml_OpeNumer" type="xs:int" minOccurs="0" />
<xs:element name="Ope_Ident" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnOpe_Ident" msprop:Generator_ColumnPropNameInRow="Ope_Ident" msprop:Generator_ColumnPropNameInTable="Ope_IdentColumn" msprop:Generator_UserColumnName="Ope_Ident" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1024" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Dichte_do" msprop:Generator_ColumnVarNameInTable="columnhml_Dichte_do" msprop:Generator_ColumnPropNameInRow="hml_Dichte_do" msprop:Generator_ColumnPropNameInTable="hml_Dichte_doColumn" msprop:Generator_UserColumnName="hml_Dichte_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh10_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh10_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh10_IdColumn" msprop:Generator_UserColumnName="hml_Inh10_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh11_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh11_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh11_IdColumn" msprop:Generator_UserColumnName="hml_Inh11_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh12_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh12_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh12_IdColumn" msprop:Generator_UserColumnName="hml_Inh12_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh13_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh13_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh13_IdColumn" msprop:Generator_UserColumnName="hml_Inh13_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh14_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh14_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh14_IdColumn" msprop:Generator_UserColumnName="hml_Inh14_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh15_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh15_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh15_IdColumn" msprop:Generator_UserColumnName="hml_Inh15_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh16_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh16_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh16_IdColumn" msprop:Generator_UserColumnName="hml_Inh16_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh17_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh17_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh17_IdColumn" msprop:Generator_UserColumnName="hml_Inh17_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh18_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh18_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh18_IdColumn" msprop:Generator_UserColumnName="hml_Inh18_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh19_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh19_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh19_IdColumn" msprop:Generator_UserColumnName="hml_Inh19_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh10_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh10_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh10_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh10_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh11_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh11_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh11_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh11_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh12_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh12_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh12_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh12_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh13_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh13_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh13_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh13_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh14_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh14_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh14_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh14_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh15_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh15_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh15_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh15_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh16_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh16_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh16_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh16_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh17_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh17_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh17_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh17_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh18_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh18_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh18_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh18_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh19_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh19_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh19_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh19_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh10_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh10_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh10_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh10_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh11_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh11_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh11_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh11_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh12_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh12_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh12_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh12_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh13_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh13_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh13_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh13_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh14_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh14_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh14_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh14_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh15_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh15_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh15_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh15_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh16_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh16_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh16_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh16_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh17_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh17_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh17_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh17_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh18_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh18_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh18_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh18_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh19_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh19_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh19_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh19_ProcentDo" type="xs:decimal" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DaneTowaru" msprop:Generator_TableClassName="DaneTowaruDataTable" msprop:Generator_TableVarName="tableDaneTowaru" msprop:Generator_RowChangedName="DaneTowaruRowChanged" msprop:Generator_TablePropName="DaneTowaru" msprop:Generator_RowDeletingName="DaneTowaruRowDeleting" msprop:Generator_RowChangingName="DaneTowaruRowChanging" msprop:Generator_RowEvHandlerName="DaneTowaruRowChangeEventHandler" msprop:Generator_RowDeletedName="DaneTowaruRowDeleted" msprop:Generator_RowClassName="DaneTowaruRow" msprop:Generator_UserTableName="DaneTowaru" msprop:Generator_RowEvArgName="DaneTowaruRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="Twr_Kod" msprop:Generator_ColumnVarNameInTable="columnTwr_Kod" msprop:Generator_ColumnPropNameInRow="Twr_Kod" msprop:Generator_ColumnPropNameInTable="Twr_KodColumn" msprop:Generator_UserColumnName="Twr_Kod" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Twr_Nazwa" msprop:Generator_ColumnVarNameInTable="columnTwr_Nazwa" msprop:Generator_ColumnPropNameInRow="Twr_Nazwa" msprop:Generator_ColumnPropNameInTable="Twr_NazwaColumn" msprop:Generator_UserColumnName="Twr_Nazwa" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Twr_Jm" msprop:Generator_ColumnVarNameInTable="columnTwr_Jm" msprop:Generator_ColumnPropNameInRow="Twr_Jm" msprop:Generator_ColumnPropNameInTable="Twr_JmColumn" msprop:Generator_UserColumnName="Twr_Jm" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="8" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Dostawca" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDostawca" msprop:Generator_ColumnPropNameInRow="Dostawca" msprop:Generator_ColumnPropNameInTable="DostawcaColumn" msprop:Generator_UserColumnName="Dostawca" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1024" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TwD_Cena" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTwD_Cena" msprop:Generator_ColumnPropNameInRow="TwD_Cena" msprop:Generator_ColumnPropNameInTable="TwD_CenaColumn" msprop:Generator_UserColumnName="TwD_Cena" type="xs:decimal" minOccurs="0" />
<xs:element name="TwD_Waluta" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTwD_Waluta" msprop:Generator_ColumnPropNameInRow="TwD_Waluta" msprop:Generator_ColumnPropNameInTable="TwD_WalutaColumn" msprop:Generator_UserColumnName="TwD_Waluta" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="3" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TwJ_JmZ" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTwJ_JmZ" msprop:Generator_ColumnPropNameInRow="TwJ_JmZ" msprop:Generator_ColumnPropNameInTable="TwJ_JmZColumn" msprop:Generator_UserColumnName="TwJ_JmZ" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="48" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@@ -0,0 +1,60 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using System.Windows;
namespace Haftmittel
{
public class Obrazek : INotifyPropertyChanged
{
private bool _jest = false;
private List<Historia> _hist;
private string opis = string.Empty;
public bool Widoczny
{
get { return _jest; }
set
{
_jest = value;
OnPropertyChanged("Widoczny");
}
}
public string Opis
{
get { return opis; }
set
{
opis = value;
OnPropertyChanged("Opis");
}
}
public List<Historia> HistoriaObrazka
{
get { return _hist;}
set
{
_hist = value;
OnPropertyChanged("HistoriaObrazka");
}
}
#region Obsługa INotifyPropertyChanged
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string name)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(name));
}
}
#endregion
}
}

View File

@@ -0,0 +1,21 @@
-- =============================================
-- Author: MK
-- Create date:
-- Description:
-- 0.2 sortowanie wg kodu
-- =============================================
CREATE PROCEDURE myconsult_haftmittel.ListaSkladnikow
AS
BEGIN
SET NOCOUNT ON;
SELECT 0 AS Id, '' AS Kod, '' AS Nazwa
UNION ALL
SELECT SLW_ID
, SLW_WartoscS
, SLW_Nazwa
FROM CDN.Slowniki
WHERE SLW_SLSId = 144
ORDER BY Kod
END
GO

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,111 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Haftmittel
{
public class Skladnik : INotifyPropertyChanged, IDataErrorInfo
{
private int _id = 0;
private decimal _procent = 0;
private decimal _procentDo = 0;
public int Id
{
get => _id;
set
{
_id = value;
if (_id == 0)
{
Procent = 0;
OnPropertyChanged(nameof(Procent));
}
OnPropertyChanged();
}
}
public decimal Procent
{
get => _procent;
set
{
_procent = value;
OnPropertyChanged();
OnPropertyChanged(nameof(ProcentDo));
}
}
public decimal ProcentDo
{
get => _procentDo;
set
{
_procentDo = value;
OnPropertyChanged();
OnPropertyChanged(nameof(Procent));
}
}
/// <summary>
/// Historia zmian wartości
/// </summary>
public List<Historia> Historia { get; set; }
/// <summary>
/// Historia zmian typu
/// </summary>
public List<Historia> Historia_Id { get; set; }
/// <summary>
/// Historia zmian wartości ProcentDo
/// </summary>
public List<Historia> Historia_Do { get; set; }
#region Obsługa INotifyPropertyChanged
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged([CallerMemberName] string name = null) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
#endregion
#region Obsługa IDataErrorInfo
public string Error => throw new NotImplementedException();
public string this[string columnName]
{
get
{
string result = null;
#region Procent
if (columnName == "Procent")
{
if (Procent < 0 || Procent > 100)
result = "tylko wartości od 0 do 100";
}
#endregion
#region ProcentDo
if (columnName == "ProcentDo")
{
if (ProcentDo < 0 || ProcentDo > 100)
result = "tylko wartości od 0 do 100";
}
#endregion
#region Procent
if (columnName == "Procent" || columnName == "ProcentDo")
{
if (Procent > ProcentDo)
result = "niewłaściwe wartości";
}
#endregion
return result;
}
}
#endregion
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<Name>SQL</Name>
<SchemaVersion>2.0</SchemaVersion>
<ProjectVersion>4.1</ProjectVersion>
<ProjectGuid>{e37f93fc-c4a1-47e8-988f-3f91c68a5a1f}</ProjectGuid>
<DSP>Microsoft.Data.Tools.Schema.Sql.Sql120DatabaseSchemaProvider</DSP>
<OutputType>Database</OutputType>
<RootPath>
</RootPath>
<RootNamespace>SQL</RootNamespace>
<AssemblyName>SQL</AssemblyName>
<ModelCollation>1033, CI</ModelCollation>
<DefaultFileStructure>BySchemaAndSchemaType</DefaultFileStructure>
<DeployToDatabase>True</DeployToDatabase>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<TargetLanguage>CS</TargetLanguage>
<AppDesignerFolder>Properties</AppDesignerFolder>
<SqlServerVerification>False</SqlServerVerification>
<IncludeCompositeObjects>True</IncludeCompositeObjects>
<TargetDatabaseSet>True</TargetDatabaseSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<OutputPath>bin\Release\</OutputPath>
<BuildScriptName>$(MSBuildProjectName).sql</BuildScriptName>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\Debug\</OutputPath>
<BuildScriptName>$(MSBuildProjectName).sql</BuildScriptName>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
<!-- Default to the v11.0 targets path if the targets file for the current VS version is not found -->
<SSDTExists Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.SqlTasks.targets')">True</SSDTExists>
<VisualStudioVersion Condition="'$(SSDTExists)' == ''">11.0</VisualStudioVersion>
</PropertyGroup>
<Import Condition="'$(SQLDBExtensionsRefPath)' != ''" Project="$(SQLDBExtensionsRefPath)\Microsoft.Data.Tools.Schema.SqlTasks.targets" />
<Import Condition="'$(SQLDBExtensionsRefPath)' == ''" Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\SSDT\Microsoft.Data.Tools.Schema.SqlTasks.targets" />
<ItemGroup>
<Folder Include="Properties" />
<Folder Include="myconsult_haftmittel" />
<Folder Include="myconsult_haftmittel\Tables" />
<Folder Include="myconsult_haftmittel\Procedures" />
</ItemGroup>
<ItemGroup>
<Build Include="myconsult_haftmittel\Tables\FK_Lista_OpeKarty.sql" />
<Build Include="myconsult_haftmittel\Tables\FK_Lista_TwrKarty.sql" />
<Build Include="myconsult_haftmittel\Tables\Lista.sql" />
<Build Include="myconsult_haftmittel\myconsult_haftmittel schema.sql" />
<Build Include="myconsult_haftmittel\Procedures\ListaSkladnikow.sql" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="Haftmittel.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</sectionGroup>
</configSections>
<connectionStrings>
<add name="Haftmittel.Properties.Settings.ConnectionString" connectionString="Data Source=192.168.17.100;Initial Catalog=CDNXL_GOTEC_80;User ID=sa;Password=Cdn01"
providerName="System.Data.SqlClient" />
</connectionStrings>
<applicationSettings>
<Haftmittel.Properties.Settings>
<setting name="Language" serializeAs="String">
<value>pl-PL</value>
</setting>
</Haftmittel.Properties.Settings>
</applicationSettings>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>

View File

@@ -0,0 +1,27 @@
namespace Haftmittel
{
public class ClassSkladnik
{
private int _id = 0;
private string _kod = string.Empty;
private string _nazwa = string.Empty;
public int Id
{
get => _id;
set => _id = value;
}
public string Kod
{
get => _kod;
set => _kod = value;
}
public string Nazwa
{
get => _nazwa.Trim();
set => _nazwa = value;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="Haftmittel.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</sectionGroup>
</configSections>
<connectionStrings>
<add name="Haftmittel.Properties.Settings.ConnectionString" connectionString="Data Source=192.168.11.31\sql08r2;Initial Catalog=CDNXL_GOTEC_80;User ID=sa;Password=cdn" providerName="System.Data.SqlClient"/>
</connectionStrings>
<applicationSettings>
<Haftmittel.Properties.Settings>
<setting name="Language" serializeAs="String">
<value>pl-PL</value>
</setting>
</Haftmittel.Properties.Settings>
</applicationSettings>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="DataSetListaSkladnikow" targetNamespace="http://tempuri.org/DataSetListaSkladnikow.xsd" xmlns:mstns="http://tempuri.org/DataSetListaSkladnikow.xsd" xmlns="http://tempuri.org/DataSetListaSkladnikow.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:annotation>
<xs:appinfo source="urn:schemas-microsoft-com:xml-msdatasource">
<DataSource DefaultConnectionIndex="0" FunctionsComponentName="QueriesTableAdapter" Modifier="AutoLayout, AnsiClass, Class, Public" SchemaSerializationMode="IncludeSchema" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<Connections>
<Connection AppSettingsObjectName="Settings" AppSettingsPropertyName="ConnectionString" ConnectionStringObject="" IsAppSettingsProperty="true" Modifier="Assembly" Name="ConnectionString (Settings)" ParameterPrefix="@" PropertyReference="ApplicationSettings.Haftmittel.Properties.Settings.GlobalReference.Default.ConnectionString" Provider="System.Data.SqlClient" />
</Connections>
<Tables>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="haftmittel_ListaSkladnikowTableAdapter" GeneratorDataComponentClassName="haftmittel_ListaSkladnikowTableAdapter" Name="haftmittel_ListaSkladnikow" UserDataComponentName="haftmittel_ListaSkladnikowTableAdapter">
<MainSource>
<DbSource ConnectionRef="ConnectionString (Settings)" DbObjectName="CDNXL_GOTEC_80.myconsult_haftmittel.ListaSkladnikow" DbObjectType="StoredProcedure" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Fill" GenerateShortCommands="false" GeneratorSourceName="Fill" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>myconsult_haftmittel.ListaSkladnikow</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="Id" DataSetColumn="Id" />
<Mapping SourceColumn="Kod" DataSetColumn="Kod" />
<Mapping SourceColumn="Nazwa" DataSetColumn="Nazwa" />
</Mappings>
<Sources />
</TableAdapter>
</Tables>
<Sources />
</DataSource>
</xs:appinfo>
</xs:annotation>
<xs:element name="DataSetListaSkladnikow" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DataSetListaSkladnikow" msprop:Generator_UserDSName="DataSetListaSkladnikow">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="haftmittel_ListaSkladnikow" msprop:Generator_TableClassName="haftmittel_ListaSkladnikowDataTable" msprop:Generator_TableVarName="tablehaftmittel_ListaSkladnikow" msprop:Generator_RowChangedName="haftmittel_ListaSkladnikowRowChanged" msprop:Generator_TablePropName="haftmittel_ListaSkladnikow" msprop:Generator_RowDeletingName="haftmittel_ListaSkladnikowRowDeleting" msprop:Generator_RowChangingName="haftmittel_ListaSkladnikowRowChanging" msprop:Generator_RowEvHandlerName="haftmittel_ListaSkladnikowRowChangeEventHandler" msprop:Generator_RowDeletedName="haftmittel_ListaSkladnikowRowDeleted" msprop:Generator_RowClassName="haftmittel_ListaSkladnikowRow" msprop:Generator_UserTableName="haftmittel_ListaSkladnikow" msprop:Generator_RowEvArgName="haftmittel_ListaSkladnikowRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="Id" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnId" msprop:Generator_ColumnPropNameInRow="Id" msprop:Generator_ColumnPropNameInTable="IdColumn" msprop:Generator_UserColumnName="Id" type="xs:int" minOccurs="0" />
<xs:element name="Kod" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnKod" msprop:Generator_ColumnPropNameInRow="Kod" msprop:Generator_ColumnPropNameInTable="KodColumn" msprop:Generator_UserColumnName="Kod" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Nazwa" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnNazwa" msprop:Generator_ColumnPropNameInRow="Nazwa" msprop:Generator_ColumnPropNameInTable="NazwaColumn" msprop:Generator_UserColumnName="Nazwa" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="512" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1 @@
CREATE SCHEMA [myconsult_haftmittel]

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,594 @@
<Window x:Class="Haftmittel.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:hft="clr-namespace:Haftmittel"
Title="Haftmittel" Height="350" Width="550" Closing="Window_Closing" UseLayoutRounding="True">
<Window.Resources>
<ResourceDictionary>
<hft:ClassProcentyValidationRule x:Key="ProcentyValidationRules"/>
<LinearGradientBrush x:Key="tlo">
<GradientStop Color="#FFD9EDFF" Offset="0"/>
<GradientStop Color="#FFC0DEFF" Offset="0.445"/>
<GradientStop Color="#FFAFD1F8" Offset="0.53"/>
</LinearGradientBrush>
<BitmapImage x:Key="o_1" UriSource="Resources/o1.png"/>
<BitmapImage x:Key="o_2" UriSource="Resources/o2.png"/>
<BitmapImage x:Key="o_3" UriSource="Resources/o3.png"/>
<BitmapImage x:Key="o_4" UriSource="Resources/o4.png"/>
<BitmapImage x:Key="o_5" UriSource="Resources/o5.png"/>
<BitmapImage x:Key="o_6" UriSource="Resources/o6.png"/>
<BitmapImage x:Key="o7" UriSource="Resources/o7.png"/>
<BitmapImage x:Key="o_8" UriSource="Resources/o8.png"/>
<BitmapImage x:Key="o_9" UriSource="Resources/o9.png"/>
<BitmapImage x:Key="o_10" UriSource="Resources/o10.png" />
<BitmapImage x:Key="CloseButton" UriSource="Resources/Close.png"/>
<BitmapImage x:Key="SaveButton" UriSource="Resources/Save.png" />
<BitmapImage x:Key="PrintButton" UriSource="Resources/Print.png" />
<BitmapImage x:Key="o1" UriSource="Resources/gsh06.png"/>
<BitmapImage x:Key="o2" UriSource="Resources/gsh07.png"/>
<BitmapImage x:Key="o3" UriSource="Resources/gsh01.png"/>
<BitmapImage x:Key="o4" UriSource="Resources/gsh02.png"/>
<BitmapImage x:Key="o5" UriSource="Resources/gsh04.png"/>
<BitmapImage x:Key="o6" UriSource="Resources/gsh08.png"/>
<BitmapImage x:Key="o_7" UriSource="Resources/gsh01.png"/>
<BitmapImage x:Key="o8" UriSource="Resources/gsh03.png"/>
<BitmapImage x:Key="o9" UriSource="Resources/gsh05.png"/>
<BitmapImage x:Key="o10" UriSource="Resources/gsh09.png"/>
<hft:ClassKonwerterNaProcenty x:Key="BoolToProcent"/>
<hft:ClassKonwerterNaKolory x:Key="BoolToColorError"/>
<Style x:Key="labelStyle" TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="Height" Value="26" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="FontWeight" Value="Bold"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="labelErrDescStyle" TargetType="Label" >
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="Height" Value="26" />
<Setter Property="Foreground" Value="Red"/>
<Setter Property="Width" Value="Auto" />
<Setter Property="Margin" Value="169,0,10,0"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="HorizontalContentAlignment" Value="Left"/>
</Style>
<Style x:Key="labelErrDescInhaltstoffeStyle" BasedOn="{StaticResource labelErrDescStyle}" TargetType="Label" >
<Setter Property="Margin" Value="20,0,10,0"/>
</Style>
<Style x:Key="textBoxStyle" TargetType="TextBox" >
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="MinHeight" Value="23"/>
<Setter Property="Height" Value="Auto" />
<Setter Property="TextWrapping" Value="Wrap" />
<Setter Property="Margin" Value="10,3,10,0"/>
<Setter Property="AcceptsReturn" Value="True"/>
<Setter Property="ToolTipService.ShowDuration" Value="20000"/>
</Style>
<Style x:Key="textBoxLiczbaStyle" TargetType="TextBox" >
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Height" Value="23" />
<Setter Property="TextWrapping" Value="WrapWithOverflow" />
<Setter Property="Width" Value="50" />
<Style.Triggers>
<Trigger Property="Validation.HasError" Value="True">
<Setter Property="Background" Value="Red"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="imageObrazek" TargetType="Image">
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="Height" Value="50"/>
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="Width" Value="50"/>
<Setter Property="RenderOptions.BitmapScalingMode" Value="Fant"/>
</Style>
<Style x:Key="comboSkladnikStyle" TargetType="ComboBox">
<Setter Property="Margin" Value="10,0,10,0"/>
<Setter Property="ItemsSource" Value="{Binding Path=Tag.Skladniki, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
Text="{Binding Kod}"
FontWeight="Bold"/>
<TextBlock Grid.Row="1"
Text="{Binding Nazwa}"
FontWeight="Light"/>
</Grid>
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="SelectedValuePath" Value="Id"/>
<Setter Property="MinWidth" Value="100"/>
<Setter Property="Width" Value="200"/>
<Setter Property="ToolTip" Value="{Binding Path=SelectedItem.Nazwa, RelativeSource={RelativeSource Self}}"/>
</Style>
<Style x:Key="buttonStyle" TargetType="Button">
<Setter Property="UseLayoutRounding" Value="True"/>
<Setter Property="Margin" Value="10,3,10,3"/>
<Setter Property="Width" Value="Auto"/>
</Style>
<Style x:Key="dataGridHistoriaStyle" TargetType="DataGrid">
<Setter Property="RowHeight" Value="{x:Static sys:Double.NaN}"/>
<Setter Property="RowHeaderWidth" Value="0"/>
<Setter Property="CanUserAddRows" Value="False"/>
<Setter Property="AutoGenerateColumns" Value="False"/>
<Setter Property="BorderBrush" Value="Gray"/>
<Setter Property="ColumnWidth" Value="Auto"/>
</Style>
<Style x:Key="toolTipImageStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
HorizontalAlignment="Stretch"
TextAlignment="Center"
DataContext="{TemplateBinding PlacementTarget}"
FontWeight="Bold"
Text="{Binding Tag}"/>
<Image Width="100" Height="100" Grid.Row="1"
DataContext="{TemplateBinding PlacementTarget}"
Source="{Binding Source}"
RenderOptions.BitmapScalingMode="Fant"/>
<DataGrid ItemsSource="{TemplateBinding Content}"
Grid.Row="2"
Style="{DynamicResource dataGridHistoriaStyle}">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="toolTipHistoriaStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<DataGrid Style="{DynamicResource dataGridHistoriaStyle}" ItemsSource="{TemplateBinding Content}" Grid.Row="1">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość" TextBlock.LineStackingStrategy="MaxHeight" TextBlock.LineHeight="Auto" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="toolTipHistoriaSkladnikaStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<DataGrid ItemsSource="{TemplateBinding Content}" Grid.Row="1" Style="{DynamicResource dataGridHistoriaStyle}">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość" TextBlock.LineStackingStrategy="MaxHeight" TextBlock.LineHeight="Auto" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="SmallButtonStyle" TargetType="Button" BasedOn="{StaticResource {x:Type Button}}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Width" Value="20"/>
<Setter Property="Height" Value="20"/>
<Setter Property="Margin" Value="3"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<ControlTemplate.Triggers>
<Trigger Property="Button.IsPressed" Value="True">
<Setter Property="Margin" Value="5,4,1,2"/>
</Trigger>
</ControlTemplate.Triggers>
<StackPanel>
<Image RenderOptions.BitmapScalingMode="Fant" Source="{TemplateBinding Property=Content}">
<Image.Style>
<Style TargetType="{x:Type Image}">
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Opacity" Value="0.4"/>
</Trigger>
</Style.Triggers>
</Style>
</Image.Style>
</Image>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="BigButtonStyle" TargetType="Button" BasedOn="{StaticResource SmallButtonStyle}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Width" Value="32"/>
<Setter Property="Height" Value="32"/>
<Setter Property="Margin" Value="3,3,3,3"/>
</Style>
<DataTemplate x:Key="InhaltstoffeTemplate">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<ComboBox Style="{StaticResource comboSkladnikStyle}"
SelectedValue="{Binding Id, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
KeyDown="ComboBox_KeyDown"
Grid.Column="0">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</ComboBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}"
Grid.Column="1"
Text="{Binding Procent, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}"
Name="inhT">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}"
Grid.Column="2"
Text="{Binding ProcentDo, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}"
Name="inhTDo">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{DynamicResource labelErrDescInhaltstoffeStyle}"
Content="{Binding Path=(Validation.Errors)/ErrorContent, ElementName=inhT}"
Grid.Column="3"/>
</Grid>
</DataTemplate>
</ResourceDictionary>
</Window.Resources>
<Grid Background="{DynamicResource tlo}" UseLayoutRounding="False">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<ScrollViewer Grid.Row="0">
<Grid ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Visible"
Height="Auto"
VerticalAlignment="Top"
UseLayoutRounding="False">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" MinWidth="180"/>
<ColumnDefinition Width="*" MinWidth="319"/>
</Grid.ColumnDefinitions>
<Label Content="Name" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="0" />
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Name}" IsEnabled="False" Grid.Column="1" Grid.Row="0"/>
<Label Content="Lieferant" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="1"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Lieferant}" IsEnabled="False" Grid.Column="1" Grid.Row="1"/>
<Label Content="Herstellort" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="2"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Herstellort, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="2">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Herstellort_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Artikel" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="3"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Art, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="3"/>
<Label Content="SDS Kenzeichnung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="4"/>
<!--Obrazki SDS-->
<Grid Grid.Column="1" Grid.Row="4">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Image Style="{DynamicResource imageObrazek}" Margin="10,5,0,0" Grid.Row="0" Tag="Ostra toksyczność" Name="obr1"
Source="{DynamicResource o1}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek1.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek1.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="40,35,0,0" Grid.Row="0" Tag="Ostra toksyczność, działanie uczulające dla skóry i drażniące" Name="obr2"
Source="{DynamicResource o2}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek2.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek2.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="70,5,0,0" Grid.Row="0" Tag="Wybuchowe"
Source="{DynamicResource o3}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek3.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek3.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="100,35,0,0" Grid.Row="0" Tag="Palne"
Source="{DynamicResource o4}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek4.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek4.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="130,5,0,0" Grid.Row="0" Tag="Sprężone gazy"
Source="{DynamicResource o5}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek5.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek5.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="160,35,0,0" Grid.Row="0" Tag="CMR, Uczulające (układ oddechowy) Toksyczność układowa na narządy docelowe (kat 1 i 2)"
Source="{DynamicResource o6}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek6.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek6.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="190,5,0,0" Grid.Row="0" Tag="Utleniające"
Source="{DynamicResource o8}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek8.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek8.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="220,35,0,0" Grid.Row="0" Tag="Żrące"
Source="{DynamicResource o9}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek9.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek9.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="250,5,0,0" Grid.Row="0" Tag="Niebezpieczne dla środowiska"
Source="{DynamicResource o10}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek10.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek10.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Row="1" IsEnabled="False"
Text="{Binding SDS_Text_auto, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Row="2"
Text="{Binding SDS_Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding SDS_Text_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
</Grid>
<Label Content="Schichten" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="5"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Schichten, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="5" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichten_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Eigenschaft" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="6"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Eigenschaften, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="6">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Eigenschaften_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Anleitung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="7"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Anleitung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="7">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Anleitung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="FS %" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="8"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding FS_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="8" Name="fs_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding FS_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding FS_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="8" Name="fs_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding FS_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="8">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="fs_od" FallbackValue=""/>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="fs_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Dichte" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="9"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Dichte, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="9" Name="dichte">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Dichte_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Dichte_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="9" Name="dichte_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Dichte_Historia_do}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="9">
<Label.Content>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="dichte" FallbackValue=""/>
</Label.Content>
</Label>
<Label Content="Viskosität" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="10"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Viskositat_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="10" Name="vis_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Viskositat_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Viskositat_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="10" Name="vis_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Viskositat_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="10">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="vis_od" FallbackValue=""/>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="vis_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Farbe" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="11"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Farbe, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="11" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Farbe_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Verdünnung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="12"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Verdunnung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="12" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Verdunnung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Schichtdicke" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="13"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Margin="10,3,260,0" Text="{Binding Schichtdicke_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Grid.Column="1" Grid.Row="13" Name="schd_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichtdicke_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Margin="100,3,160,0" Text="{Binding Schichtdicke_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Grid.Column="1" Grid.Row="13" Name="schd_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichtdicke_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="13">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="schd_od" FallbackValue=""/>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="schd_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Leistung nach Beschichtung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="14"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Leistung_nach_Beschichtung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="14" Name="leist" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Leistung_nach_Beschichtung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Content="{Binding Path=(Validation.Errors)/ErrorContent, ElementName=leist}" Grid.Column="1" Grid.Row="14"/>
<Label Content="Lagerkapazitat" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="15"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Lagerkapazitat, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="15" Name="lager">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Lagerkapazitat_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Content="{Binding Path=(Validation.Errors)/ErrorContent, ElementName=lager}" Grid.Column="1" Grid.Row="15"/>
<Label Content="Verarbeitung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="16"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Verarbeitung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="16" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Verarbeitung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<!--Składniki-->
<Label Content="Inhaltstoffe" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="17"/>
<Expander Grid.Column="1" Grid.Row="17">
<ItemsControl ItemTemplate="{StaticResource InhaltstoffeTemplate}"
ItemsSource="{Binding Inhaltsstoffe}"
Tag="{Binding .}"/>
</Expander>
<Label Content="Preis" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="18"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Preis, Mode=OneWay}" IsEnabled="False" Margin="10,3,260,0" Grid.Column="1" Grid.Row="18"/>
<Label Content="Einheit preis" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="19"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Einheit_preis, Mode=OneWay}" IsEnabled="False" Margin="10,3,260,0" Grid.Column="1" Grid.Row="19" Background="{Binding Einheit_preis_error, Converter={StaticResource BoolToColorError}}"/>
<Label Content="Behälter" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="20"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Behalter, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="20" IsEnabled="False"/>
</Grid>
</ScrollViewer>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource SaveButton}"
Grid.Column="0"
Command="{Binding Zapisz}"/>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource CloseButton}"
Grid.Column="1"
Click="Button_Click"/>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource PrintButton}"
Grid.Column="3"
IsEnabled="False"
/>
</Grid>
<StatusBar HorizontalAlignment="Stretch"
Height="30"
VerticalAlignment="Bottom"
Width="Auto"
Visibility="Collapsed"
Grid.Row="2">
<Label Content="Test"/>
</StatusBar>
</Grid>
</Window>

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,610 @@
<Window x:Class="Haftmittel.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:hft="clr-namespace:Haftmittel"
Title="Haftmittel" Height="450" Width="550" Closing="Window_Closing" UseLayoutRounding="True">
<Window.Resources>
<ResourceDictionary>
<hft:ClassProcentyValidationRule x:Key="ProcentyValidationRules"/>
<LinearGradientBrush x:Key="tlo">
<GradientStop Color="#FFD9EDFF" Offset="0"/>
<GradientStop Color="#FFC0DEFF" Offset="0.445"/>
<GradientStop Color="#FFAFD1F8" Offset="0.53"/>
</LinearGradientBrush>
<BitmapImage x:Key="o_1" UriSource="Resources/o1.png"/>
<BitmapImage x:Key="o_2" UriSource="Resources/o2.png"/>
<BitmapImage x:Key="o_3" UriSource="Resources/o3.png"/>
<BitmapImage x:Key="o_4" UriSource="Resources/o4.png"/>
<BitmapImage x:Key="o_5" UriSource="Resources/o5.png"/>
<BitmapImage x:Key="o_6" UriSource="Resources/o6.png"/>
<BitmapImage x:Key="o7" UriSource="Resources/o7.png"/>
<BitmapImage x:Key="o_8" UriSource="Resources/o8.png"/>
<BitmapImage x:Key="o_9" UriSource="Resources/o9.png"/>
<BitmapImage x:Key="o_10" UriSource="Resources/o10.png" />
<BitmapImage x:Key="CloseButton" UriSource="Resources/Close.png"/>
<BitmapImage x:Key="SaveButton" UriSource="Resources/Save.png" />
<BitmapImage x:Key="PrintButton" UriSource="Resources/Print.png" />
<BitmapImage x:Key="o1" UriSource="Resources/gsh06.png"/>
<BitmapImage x:Key="o2" UriSource="Resources/gsh07.png"/>
<BitmapImage x:Key="o3" UriSource="Resources/gsh01.png"/>
<BitmapImage x:Key="o4" UriSource="Resources/gsh02.png"/>
<BitmapImage x:Key="o5" UriSource="Resources/gsh04.png"/>
<BitmapImage x:Key="o6" UriSource="Resources/gsh08.png"/>
<BitmapImage x:Key="o_7" UriSource="Resources/gsh01.png"/>
<BitmapImage x:Key="o8" UriSource="Resources/gsh03.png"/>
<BitmapImage x:Key="o9" UriSource="Resources/gsh05.png"/>
<BitmapImage x:Key="o10" UriSource="Resources/gsh09.png"/>
<hft:ClassKonwerterNaProcenty x:Key="BoolToProcent"/>
<hft:ClassKonwerterNaKolory x:Key="BoolToColorError"/>
<Style x:Key="labelStyle" TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="Height" Value="26" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="FontWeight" Value="Bold"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="labelErrDescStyle" TargetType="Label" >
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="Height" Value="26" />
<Setter Property="Foreground" Value="Red"/>
<Setter Property="Width" Value="Auto" />
<Setter Property="Margin" Value="169,0,10,0"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="HorizontalContentAlignment" Value="Left"/>
</Style>
<Style x:Key="labelErrDescInhaltstoffeStyle" BasedOn="{StaticResource labelErrDescStyle}" TargetType="Label" >
<Setter Property="Margin" Value="20,0,10,0"/>
</Style>
<Style x:Key="textBoxStyle" TargetType="TextBox" >
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="MinHeight" Value="23"/>
<Setter Property="Height" Value="Auto" />
<Setter Property="TextWrapping" Value="Wrap" />
<Setter Property="Margin" Value="10,3,10,0"/>
<Setter Property="AcceptsReturn" Value="True"/>
<Setter Property="ToolTipService.ShowDuration" Value="20000"/>
</Style>
<Style x:Key="textBoxLiczbaStyle" TargetType="TextBox" >
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Height" Value="23" />
<Setter Property="TextWrapping" Value="WrapWithOverflow" />
<Setter Property="Width" Value="50" />
<Style.Triggers>
<Trigger Property="Validation.HasError" Value="True">
<Setter Property="Background" Value="Red"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="imageObrazek" TargetType="Image">
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="Height" Value="50"/>
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="Width" Value="50"/>
<Setter Property="RenderOptions.BitmapScalingMode" Value="Fant"/>
</Style>
<Style x:Key="comboSkladnikStyle" TargetType="ComboBox">
<Setter Property="Margin" Value="10,0,10,0"/>
<Setter Property="ItemsSource" Value="{Binding Path=Tag.Skladniki, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
Text="{Binding Kod}"
FontWeight="Bold"/>
<TextBlock Grid.Row="1"
Text="{Binding Nazwa}"
FontWeight="Light"/>
</Grid>
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="SelectedValuePath" Value="Id"/>
<Setter Property="MinWidth" Value="100"/>
<Setter Property="Width" Value="200"/>
<Setter Property="ToolTip" Value="{Binding Path=SelectedItem.Nazwa, RelativeSource={RelativeSource Self}}"/>
</Style>
<Style x:Key="buttonStyle" TargetType="Button">
<Setter Property="UseLayoutRounding" Value="True"/>
<Setter Property="Margin" Value="10,3,10,3"/>
<Setter Property="Width" Value="Auto"/>
</Style>
<Style x:Key="dataGridHistoriaStyle" TargetType="DataGrid">
<Setter Property="RowHeight" Value="{x:Static sys:Double.NaN}"/>
<Setter Property="RowHeaderWidth" Value="0"/>
<Setter Property="CanUserAddRows" Value="False"/>
<Setter Property="AutoGenerateColumns" Value="False"/>
<Setter Property="BorderBrush" Value="Gray"/>
<Setter Property="ColumnWidth" Value="Auto"/>
</Style>
<Style x:Key="toolTipImageStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
HorizontalAlignment="Stretch"
TextAlignment="Center"
DataContext="{TemplateBinding PlacementTarget}"
FontWeight="Bold"
Text="{Binding Tag}"/>
<Image Width="100" Height="100" Grid.Row="1"
DataContext="{TemplateBinding PlacementTarget}"
Source="{Binding Source}"
RenderOptions.BitmapScalingMode="Fant"/>
<DataGrid ItemsSource="{TemplateBinding Content}"
Grid.Row="2"
Style="{DynamicResource dataGridHistoriaStyle}">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="toolTipHistoriaStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<DataGrid Style="{DynamicResource dataGridHistoriaStyle}" ItemsSource="{TemplateBinding Content}" Grid.Row="1">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość" TextBlock.LineStackingStrategy="MaxHeight" TextBlock.LineHeight="Auto" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="toolTipHistoriaSkladnikaStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<DataGrid ItemsSource="{TemplateBinding Content}" Grid.Row="1" Style="{DynamicResource dataGridHistoriaStyle}">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość" TextBlock.LineStackingStrategy="MaxHeight" TextBlock.LineHeight="Auto" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="SmallButtonStyle" TargetType="Button" BasedOn="{StaticResource {x:Type Button}}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Width" Value="20"/>
<Setter Property="Height" Value="20"/>
<Setter Property="Margin" Value="3"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<ControlTemplate.Triggers>
<Trigger Property="Button.IsPressed" Value="True">
<Setter Property="Margin" Value="5,4,1,2"/>
</Trigger>
</ControlTemplate.Triggers>
<StackPanel>
<Image RenderOptions.BitmapScalingMode="Fant" Source="{TemplateBinding Property=Content}">
<Image.Style>
<Style TargetType="{x:Type Image}">
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Opacity" Value="0.4"/>
</Trigger>
</Style.Triggers>
</Style>
</Image.Style>
</Image>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="BigButtonStyle" TargetType="Button" BasedOn="{StaticResource SmallButtonStyle}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Width" Value="32"/>
<Setter Property="Height" Value="32"/>
<Setter Property="Margin" Value="3,3,3,3"/>
</Style>
<DataTemplate x:Key="InhaltstoffeTemplate">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<ComboBox Style="{StaticResource comboSkladnikStyle}"
SelectedValue="{Binding Id, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
KeyDown="ComboBox_KeyDown"
Grid.Column="0">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</ComboBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}"
Grid.Column="1"
Text="{Binding Procent, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}"
Name="inhT">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}"
Grid.Column="2"
Text="{Binding ProcentDo, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}"
Name="inhTDo">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{DynamicResource labelErrDescInhaltstoffeStyle}"
Content="{Binding Path=(Validation.Errors)/ErrorContent, ElementName=inhT}"
Grid.Column="3"/>
</Grid>
</DataTemplate>
</ResourceDictionary>
</Window.Resources>
<Grid Background="{DynamicResource tlo}" UseLayoutRounding="False">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<ScrollViewer Grid.Row="0">
<Grid ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Visible"
Height="Auto"
VerticalAlignment="Top"
UseLayoutRounding="False">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" MinWidth="180"/>
<ColumnDefinition Width="*" MinWidth="319"/>
</Grid.ColumnDefinitions>
<Label Content="Name" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="0" />
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Name}" IsEnabled="False" Grid.Column="1" Grid.Row="0"/>
<Label Content="Lieferant" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="1"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Lieferant}" IsEnabled="False" Grid.Column="1" Grid.Row="1"/>
<Label Content="Herstellort" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="2"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Herstellort, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="2">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Herstellort_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Artikel" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="3"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Art, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="3"/>
<Label Content="SDS Kenzeichnung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="4"/>
<!--Obrazki SDS-->
<Grid Grid.Column="1" Grid.Row="4">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Image Style="{DynamicResource imageObrazek}" Margin="10,5,0,0" Grid.Row="0" Tag="Ostra toksyczność" Name="obr1"
Source="{DynamicResource o1}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek1.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek1.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="40,35,0,0" Grid.Row="0" Tag="Ostra toksyczność, działanie uczulające dla skóry i drażniące" Name="obr2"
Source="{DynamicResource o2}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek2.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek2.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="70,5,0,0" Grid.Row="0" Tag="Wybuchowe"
Source="{DynamicResource o3}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek3.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek3.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="100,35,0,0" Grid.Row="0" Tag="Palne"
Source="{DynamicResource o4}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek4.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek4.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="130,5,0,0" Grid.Row="0" Tag="Sprężone gazy"
Source="{DynamicResource o5}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek5.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek5.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="160,35,0,0" Grid.Row="0" Tag="CMR, Uczulające (układ oddechowy) Toksyczność układowa na narządy docelowe (kat 1 i 2)"
Source="{DynamicResource o6}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek6.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek6.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="190,5,0,0" Grid.Row="0" Tag="Utleniające"
Source="{DynamicResource o8}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek8.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek8.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="220,35,0,0" Grid.Row="0" Tag="Żrące"
Source="{DynamicResource o9}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek9.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek9.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="250,5,0,0" Grid.Row="0" Tag="Niebezpieczne dla środowiska"
Source="{DynamicResource o10}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek10.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek10.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Row="1" IsEnabled="False"
Text="{Binding SDS_Text_auto, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Row="2"
Text="{Binding SDS_Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding SDS_Text_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
</Grid>
<Label Content="Schichten" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="5"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Schichten, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="5" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichten_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Eigenschaft" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="6"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Eigenschaften, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="6">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Eigenschaften_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Anleitung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="7"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Anleitung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="7">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Anleitung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="FS %" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="8"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding FS_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="8" Name="fs_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding FS_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding FS_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="8" Name="fs_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding FS_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="8">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="fs_od" FallbackValue=""/>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="fs_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Dichte" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="9"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Dichte, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="9" Name="dichte">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Dichte_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Dichte_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="9" Name="dichte_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Dichte_Historia_do}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="9">
<Label.Content>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="dichte" FallbackValue=""/>
</Label.Content>
</Label>
<Label Content="Viskosität" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="10"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Viskositat_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="10" Name="vis_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Viskositat_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Viskositat_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="10" Name="vis_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Viskositat_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="10">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="vis_od" FallbackValue=""/>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="vis_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Farbe" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="11"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Farbe, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="11" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Farbe_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Verdünnung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="12"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Verdunnung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="12" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Verdunnung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Schichtdicke" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="13"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Margin="10,3,260,0" Text="{Binding Schichtdicke_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Grid.Column="1" Grid.Row="13" Name="schd_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichtdicke_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Margin="100,3,160,0" Text="{Binding Schichtdicke_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Grid.Column="1" Grid.Row="13" Name="schd_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichtdicke_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="13">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="schd_od" FallbackValue=""/>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="schd_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Leistung nach Beschichtung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="14"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Leistung_nach_Beschichtung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="14" Name="leist" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Leistung_nach_Beschichtung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Content="{Binding Path=(Validation.Errors)/ErrorContent, ElementName=leist}" Grid.Column="1" Grid.Row="14"/>
<Label Content="Lagerkapazitat" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="15"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Lagerkapazitat, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="15" Name="lager">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Lagerkapazitat_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Content="{Binding Path=(Validation.Errors)/ErrorContent, ElementName=lager}" Grid.Column="1" Grid.Row="15"/>
<Label Content="Verarbeitung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="16"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Verarbeitung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="16" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Verarbeitung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<!--Składniki-->
<Label Content="Inhaltstoffe" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="17"/>
<Expander Grid.Column="1" Grid.Row="17">
<ItemsControl ItemTemplate="{StaticResource InhaltstoffeTemplate}"
ItemsSource="{Binding Inhaltsstoffe}"
Tag="{Binding .}"/>
</Expander>
<Label Content="Preis" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="18"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Preis, Mode=OneWay}" IsEnabled="False" Margin="10,3,260,0" Grid.Column="1" Grid.Row="18"/>
<Label Content="Einheit preis" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="19"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Einheit_preis, Mode=OneWay}" IsEnabled="False" Margin="10,3,260,0" Grid.Column="1" Grid.Row="19" Background="{Binding Einheit_preis_error, Converter={StaticResource BoolToColorError}}"/>
<Label Content="Behälter" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="20"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Behalter, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="20" IsEnabled="False"/>
<Label Content="Text1" Grid.Column="0" Grid.Row="21"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Column="1" Grid.Row="21"
Text="{Binding Text1, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
<Label Content="Text2" Grid.Column="0" Grid.Row="22"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Column="1" Grid.Row="22"
Text="{Binding Text2, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
<Label Content="Text3" Grid.Column="0" Grid.Row="23"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Column="1" Grid.Row="23"
Text="{Binding Text3, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
<Label Content="Text4" Grid.Column="0" Grid.Row="24"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Column="1" Grid.Row="24"
Text="{Binding Text4, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
</Grid>
</ScrollViewer>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource SaveButton}"
Grid.Column="0"
Command="{Binding Zapisz}"/>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource CloseButton}"
Grid.Column="1"
Click="Button_Click"/>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource PrintButton}"
Grid.Column="3"
IsEnabled="False"
/>
</Grid>
<StatusBar HorizontalAlignment="Stretch"
Height="30"
VerticalAlignment="Bottom"
Width="Auto"
Visibility="Collapsed"
Grid.Row="2">
<Label Content="Test"/>
</StatusBar>
</Grid>
</Window>

View File

@@ -0,0 +1,157 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="Close" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Close.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gsh01" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\gsh01.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gsh02" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\gsh02.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gsh03" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\gsh03.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gsh04" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\gsh04.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gsh05" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\gsh05.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gsh06" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\gsh06.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gsh07" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\gsh07.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gsh08" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\gsh08.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="gsh09" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\gsh09.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Print" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Print.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="Save" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Save.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

View File

@@ -0,0 +1,129 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace Haftmittel
{
public class Skladnik : INotifyPropertyChanged, IDataErrorInfo
{
private Int32 _id = 0;
private decimal _procent = 0;
private decimal _procentDo = 0;
private List<Historia> _Historia;
public Int32 Id
{
get { return _id; }
set
{
_id = value;
if (_id == 0)
{
Procent = 0;
OnPropertyChanged("Procent");
}
OnPropertyChanged("Id");
}
}
public decimal Procent
{
get { return _procent; }
set
{
_procent = value;
OnPropertyChanged("Procent");
OnPropertyChanged("ProcentDo");
}
}
public decimal ProcentDo
{
get { return _procentDo; }
set
{
_procentDo = value;
OnPropertyChanged("ProcentDo");
OnPropertyChanged("Procent");
}
}
/// <summary>
/// Historia zmian wartości
/// </summary>
public List<Historia> Historia
{
get { return _Historia; }
set { _Historia = value; }
}
/// <summary>
/// Historia zmian typu
/// </summary>
public List<Historia> Historia_Id
{ get; set; }
/// <summary>
/// Historia zmian wartości ProcentDo
/// </summary>
public List<Historia> Historia_Do
{ get; set; }
#region Obsługa INotifyPropertyChanged
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string name)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(name));
}
}
#endregion
#region Obsługa IDataErrorInfo
public string Error
{
get { throw new NotImplementedException(); }
}
public string this[string columnName]
{
get
{
string result = null;
#region Procent
if (columnName == "Procent")
{
if (Procent < 0 || Procent > 100)
result = "tylko wartości od 0 do 100";
}
#endregion
#region ProcentDo
if (columnName == "ProcentDo")
{
if (ProcentDo < 0 || ProcentDo > 100)
result = "tylko wartości od 0 do 100";
}
#endregion
#region Procent
if (columnName == "Procent" || columnName == "ProcentDo")
{
if (Procent > ProcentDo)
result = "niewłaściwe wartości";
}
#endregion
return result;
}
}
#endregion
}
}

View File

@@ -0,0 +1,298 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{E76D8CE4-D8E0-4E10-8422-ECAC06E1B641}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Haftmittel</RootNamespace>
<AssemblyName>Haftmittel</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<StartupObject>APQP.App</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="ClassKonwerterNaKolory.cs" />
<Compile Include="ClassKonwerterNaProcenty.cs" />
<Compile Include="ClassProcentyValidationRule.cs" />
<Compile Include="ClassSkladnik.cs" />
<Compile Include="Database\DataSetLista.cs">
<DependentUpon>DataSetLista.xsd</DependentUpon>
</Compile>
<Compile Include="Database\DataSetLista.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>DataSetLista.xsd</DependentUpon>
</Compile>
<Compile Include="Database\DataSetListaSkladnikow.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>DataSetListaSkladnikow.xsd</DependentUpon>
</Compile>
<Compile Include="Database\DataSetXL.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>DataSetXL.xsd</DependentUpon>
</Compile>
<Compile Include="DelegateCommand.cs" />
<Compile Include="Historia.cs" />
<Compile Include="Obrazek.cs" />
<Compile Include="Skladnik.cs" />
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="ClassHaftmittel.cs" />
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="app.config" />
<None Include="Database\DataSetLista.xsc">
<DependentUpon>DataSetLista.xsd</DependentUpon>
</None>
<None Include="Database\DataSetLista.xsd">
<SubType>Designer</SubType>
<Generator>MSDataSetGenerator</Generator>
<LastGenOutput>DataSetLista.Designer.cs</LastGenOutput>
</None>
<None Include="Database\DataSetLista.xss">
<DependentUpon>DataSetLista.xsd</DependentUpon>
</None>
<None Include="Database\DataSetListaSkladnikow.xsc">
<DependentUpon>DataSetListaSkladnikow.xsd</DependentUpon>
</None>
<None Include="Database\DataSetListaSkladnikow.xsd">
<SubType>Designer</SubType>
<Generator>MSDataSetGenerator</Generator>
<LastGenOutput>DataSetListaSkladnikow.Designer.cs</LastGenOutput>
</None>
<None Include="Database\DataSetListaSkladnikow.xss">
<DependentUpon>DataSetListaSkladnikow.xsd</DependentUpon>
</None>
<None Include="Database\DataSetXL.xsc">
<DependentUpon>DataSetXL.xsd</DependentUpon>
</None>
<None Include="Database\DataSetXL.xsd">
<SubType>Designer</SubType>
<Generator>MSDataSetGenerator</Generator>
<LastGenOutput>DataSetXL.Designer.cs</LastGenOutput>
</None>
<None Include="Database\DataSetXL.xss">
<DependentUpon>DataSetXL.xsd</DependentUpon>
</None>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.4.5">
<Visible>False</Visible>
<ProductName>Windows Installer 4.5</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\o1.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o10.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o2.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o3.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o4.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o5.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o6.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o7.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o8.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\o9.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Save.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Close.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Print.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh01.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh02.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh03.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh04.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh05.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh06.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh07.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh08.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gsh09.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

View File

@@ -0,0 +1,10 @@
2015-01-05 nowa kolumna Dichte_do, powiazana z Dichte
2015-01-05 zdj<64>cie ogranicze<7A> procentowych z Viskozitat
2015-02-05 nowa kolumna Dichte_do
pokazywanie domy<6D>lnego opakowania zakupu
wyrzucenie ograniczenie warto<74>ci na parametrze FS%
2015-02-06 program pyta si<73> przy zamkni<6E>ciu o niezapisane zmiany
2015-02-12 sortowanie kod<6F>w CAS i mo<6D>liwo<77><6F> u<>ycia skr<6B>t<EFBFBD>w klawiszowych
2015-03-09 rozszerzenie ilo<6C>ci sk<73>adnik<69>w Inhaltstoffe do 20
sk<73>adniki przyjmuj<75> warto<74>ci u<>amkowe
2015-03-12 nowe piktogramy i ich opisy, uproszczona historia

View File

@@ -0,0 +1,4 @@
ALTER TABLE [myconsult_haftmittel].[Lista]
ADD CONSTRAINT [FK_Lista_OpeKarty]
FOREIGN KEY (hml_OpeNumer)
REFERENCES [CDN].[OpeKarty] (Ope_GIDNumer)

View File

@@ -0,0 +1,435 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="DataSetXL" targetNamespace="http://tempuri.org/DataSetXL.xsd" xmlns:mstns="http://tempuri.org/DataSetXL.xsd" xmlns="http://tempuri.org/DataSetXL.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:annotation>
<xs:appinfo source="urn:schemas-microsoft-com:xml-msdatasource">
<DataSource DefaultConnectionIndex="0" FunctionsComponentName="QueriesTableAdapter" Modifier="AutoLayout, AnsiClass, Class, Public" SchemaSerializationMode="IncludeSchema" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<Connections>
<Connection AppSettingsObjectName="Settings" AppSettingsPropertyName="ConnectionString" ConnectionStringObject="" IsAppSettingsProperty="true" Modifier="Assembly" Name="ConnectionString (Settings)" ParameterPrefix="@" PropertyReference="ApplicationSettings.Haftmittel.Properties.Settings.GlobalReference.Default.ConnectionString" Provider="System.Data.SqlClient" />
</Connections>
<Tables>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="ListaTableAdapter" GeneratorDataComponentClassName="ListaTableAdapter" Name="Lista" UserDataComponentName="ListaTableAdapter">
<MainSource>
<DbSource ConnectionRef="ConnectionString (Settings)" DbObjectName="CDNXL_GOTEC_80.myconsult_haftmittel.Lista" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [myconsult_haftmittel].[Lista] ([hml_TwrTyp], [hml_TwrNumer], [hml_DataPowstania], [hml_DataArchiwizacji], [hml_Herstellort], [hml_SDStext], [hml_SDS1], [hml_SDS2], [hml_SDS3], [hml_SDS4], [hml_SDS5], [hml_SDS6], [hml_SDS7], [hml_SDS8], [hml_SDS9], [hml_SDS10], [hml_Schichten], [hml_Eigenschaften], [hml_Anleitung], [hml_FS_od], [hml_FS_do], [hml_Dichte], [hml_Viskositat_od], [hml_Viskositat_do], [hml_Farbe], [hml_Verdunnung], [hml_Schichtdicke_od], [hml_Schichtdicke_do], [hml_Leistung], [hml_Lagerkapazitat], [hml_Verarbeitung], [hml_Inh0_Id], [hml_Inh0_Procent], [hml_Inh0_ProcentDo], [hml_Inh1_Id], [hml_Inh1_Procent], [hml_Inh1_ProcentDo], [hml_Inh2_Id], [hml_Inh2_Procent], [hml_Inh2_ProcentDo], [hml_Inh3_Id], [hml_Inh3_Procent], [hml_Inh3_ProcentDo], [hml_Inh4_Id], [hml_Inh4_Procent], [hml_Inh4_ProcentDo], [hml_Inh5_Id], [hml_Inh5_Procent], [hml_Inh5_ProcentDo], [hml_Inh6_Id], [hml_Inh6_Procent], [hml_Inh6_ProcentDo], [hml_Inh7_Id], [hml_Inh7_Procent], [hml_Inh7_ProcentDo], [hml_Inh8_Id], [hml_Inh8_Procent], [hml_Inh8_ProcentDo], [hml_Inh9_Id], [hml_Inh9_Procent], [hml_Inh9_ProcentDo], [hml_Behelter], [hml_OpeNumer], [hml_Dichte_do], [hml_Inh10_Id], [hml_Inh11_Id], [hml_Inh12_Id], [hml_Inh13_Id], [hml_Inh14_Id], [hml_Inh15_Id], [hml_Inh16_Id], [hml_Inh17_Id], [hml_Inh18_Id], [hml_Inh19_Id], [hml_Inh10_Procent], [hml_Inh11_Procent], [hml_Inh12_Procent], [hml_Inh13_Procent], [hml_Inh14_Procent], [hml_Inh15_Procent], [hml_Inh16_Procent], [hml_Inh17_Procent], [hml_Inh18_Procent], [hml_Inh19_Procent], [hml_Inh10_ProcentDo], [hml_Inh11_ProcentDo], [hml_Inh12_ProcentDo], [hml_Inh13_ProcentDo], [hml_Inh14_ProcentDo], [hml_Inh15_ProcentDo], [hml_Inh16_ProcentDo], [hml_Inh17_ProcentDo], [hml_Inh18_ProcentDo], [hml_Inh19_ProcentDo], [hml_Text1], [hml_Text2], [hml_Text3], [hml_Text4]) VALUES (@hml_TwrTyp, @hml_TwrNumer, @hml_DataPowstania, @hml_DataArchiwizacji, @hml_Herstellort, @hml_SDStext, @hml_SDS1, @hml_SDS2, @hml_SDS3, @hml_SDS4, @hml_SDS5, @hml_SDS6, @hml_SDS7, @hml_SDS8, @hml_SDS9, @hml_SDS10, @hml_Schichten, @hml_Eigenschaften, @hml_Anleitung, @hml_FS_od, @hml_FS_do, @hml_Dichte, @hml_Viskositat_od, @hml_Viskositat_do, @hml_Farbe, @hml_Verdunnung, @hml_Schichtdicke_od, @hml_Schichtdicke_do, @hml_Leistung, @hml_Lagerkapazitat, @hml_Verarbeitung, @hml_Inh0_Id, @hml_Inh0_Procent, @hml_Inh0_ProcentDo, @hml_Inh1_Id, @hml_Inh1_Procent, @hml_Inh1_ProcentDo, @hml_Inh2_Id, @hml_Inh2_Procent, @hml_Inh2_ProcentDo, @hml_Inh3_Id, @hml_Inh3_Procent, @hml_Inh3_ProcentDo, @hml_Inh4_Id, @hml_Inh4_Procent, @hml_Inh4_ProcentDo, @hml_Inh5_Id, @hml_Inh5_Procent, @hml_Inh5_ProcentDo, @hml_Inh6_Id, @hml_Inh6_Procent, @hml_Inh6_ProcentDo, @hml_Inh7_Id, @hml_Inh7_Procent, @hml_Inh7_ProcentDo, @hml_Inh8_Id, @hml_Inh8_Procent, @hml_Inh8_ProcentDo, @hml_Inh9_Id, @hml_Inh9_Procent, @hml_Inh9_ProcentDo, @hml_Behelter, @hml_OpeNumer, @hml_Dichte_do, @hml_Inh10_Id, @hml_Inh11_Id, @hml_Inh12_Id, @hml_Inh13_Id, @hml_Inh14_Id, @hml_Inh15_Id, @hml_Inh16_Id, @hml_Inh17_Id, @hml_Inh18_Id, @hml_Inh19_Id, @hml_Inh10_Procent, @hml_Inh11_Procent, @hml_Inh12_Procent, @hml_Inh13_Procent, @hml_Inh14_Procent, @hml_Inh15_Procent, @hml_Inh16_Procent, @hml_Inh17_Procent, @hml_Inh18_Procent, @hml_Inh19_Procent, @hml_Inh10_ProcentDo, @hml_Inh11_ProcentDo, @hml_Inh12_ProcentDo, @hml_Inh13_ProcentDo, @hml_Inh14_ProcentDo, @hml_Inh15_ProcentDo, @hml_Inh16_ProcentDo, @hml_Inh17_ProcentDo, @hml_Inh18_ProcentDo, @hml_Inh19_ProcentDo, @hml_Text1, @hml_Text2, @hml_Text3, @hml_Text4)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int16" Direction="Input" ParameterName="@hml_TwrTyp" Precision="0" ProviderType="SmallInt" Scale="0" Size="0" SourceColumn="hml_TwrTyp" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_TwrNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@hml_DataPowstania" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="hml_DataPowstania" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@hml_DataArchiwizacji" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="hml_DataArchiwizacji" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Herstellort" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Herstellort" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_SDStext" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_SDStext" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS1" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS2" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS3" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS3" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS4" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS5" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS5" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS6" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS6" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS7" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS7" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS8" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS9" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS9" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS10" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS10" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Schichten" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Schichten" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Eigenschaften" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Eigenschaften" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Anleitung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Anleitung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_FS_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_FS_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_FS_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_FS_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Dichte" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Dichte" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Viskositat_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Viskositat_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Viskositat_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Viskositat_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Farbe" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Farbe" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Verdunnung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Verdunnung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Schichtdicke_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Schichtdicke_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Schichtdicke_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Schichtdicke_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Leistung" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Leistung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Lagerkapazitat" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Lagerkapazitat" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Verarbeitung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Verarbeitung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh0_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh0_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh0_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh0_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh0_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh0_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh1_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh1_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh1_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh1_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh1_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh1_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh2_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh2_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh2_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh2_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh2_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh2_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh3_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh3_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh3_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh3_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh3_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh3_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh4_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh4_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh4_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh4_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh4_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh4_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh5_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh5_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh5_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh5_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh5_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh5_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh6_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh6_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh6_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh6_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh6_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh6_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh7_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh7_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh7_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh7_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh7_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh7_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh8_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh8_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh8_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh8_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh8_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh8_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh9_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh9_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh9_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh9_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh9_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh9_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Behelter" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Behelter" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_OpeNumer" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_OpeNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Dichte_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Dichte_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh10_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh10_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh11_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh11_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh12_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh12_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh13_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh13_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh14_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh14_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh15_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh15_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh16_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh16_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh17_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh17_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh18_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh18_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh19_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh19_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh10_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh10_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh11_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh11_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh12_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh12_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh13_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh13_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh14_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh14_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh15_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh15_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh16_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh16_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh17_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh17_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh18_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh18_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh19_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh19_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh10_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh10_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh11_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh11_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh12_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh12_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh13_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh13_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh14_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh14_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh15_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh15_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh16_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh16_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh17_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh17_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh18_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh18_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh19_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh19_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Text1" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Text1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Text2" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Text2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Text3" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Text3" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Text4" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Text4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT *
, COALESCE(CDN.NazwaObiektu(128, hml_OpeNumer, 0, 2), '') AS Ope_Ident
FROM myconsult_haftmittel.Lista
WHERE hml_TwrNumer = @TwrNumer
ORDER BY hml_DataPowstania</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="TwrNumer" ColumnName="hml_TwrNumer" DataSourceName="CDNXL_GOTEC_80.myconsult_haftmittel.Lista" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="hml_TwrNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="hml_TwrTyp" DataSetColumn="hml_TwrTyp" />
<Mapping SourceColumn="hml_TwrNumer" DataSetColumn="hml_TwrNumer" />
<Mapping SourceColumn="hml_DataPowstania" DataSetColumn="hml_DataPowstania" />
<Mapping SourceColumn="hml_DataArchiwizacji" DataSetColumn="hml_DataArchiwizacji" />
<Mapping SourceColumn="hml_Herstellort" DataSetColumn="hml_Herstellort" />
<Mapping SourceColumn="hml_SDStext" DataSetColumn="hml_SDStext" />
<Mapping SourceColumn="hml_SDS1" DataSetColumn="hml_SDS1" />
<Mapping SourceColumn="hml_SDS2" DataSetColumn="hml_SDS2" />
<Mapping SourceColumn="hml_SDS3" DataSetColumn="hml_SDS3" />
<Mapping SourceColumn="hml_SDS4" DataSetColumn="hml_SDS4" />
<Mapping SourceColumn="hml_SDS5" DataSetColumn="hml_SDS5" />
<Mapping SourceColumn="hml_SDS6" DataSetColumn="hml_SDS6" />
<Mapping SourceColumn="hml_SDS7" DataSetColumn="hml_SDS7" />
<Mapping SourceColumn="hml_SDS8" DataSetColumn="hml_SDS8" />
<Mapping SourceColumn="hml_SDS9" DataSetColumn="hml_SDS9" />
<Mapping SourceColumn="hml_SDS10" DataSetColumn="hml_SDS10" />
<Mapping SourceColumn="hml_Schichten" DataSetColumn="hml_Schichten" />
<Mapping SourceColumn="hml_Eigenschaften" DataSetColumn="hml_Eigenschaften" />
<Mapping SourceColumn="hml_Anleitung" DataSetColumn="hml_Anleitung" />
<Mapping SourceColumn="hml_FS_od" DataSetColumn="hml_FS_od" />
<Mapping SourceColumn="hml_FS_do" DataSetColumn="hml_FS_do" />
<Mapping SourceColumn="hml_Dichte" DataSetColumn="hml_Dichte" />
<Mapping SourceColumn="hml_Viskositat_od" DataSetColumn="hml_Viskositat_od" />
<Mapping SourceColumn="hml_Viskositat_do" DataSetColumn="hml_Viskositat_do" />
<Mapping SourceColumn="hml_Farbe" DataSetColumn="hml_Farbe" />
<Mapping SourceColumn="hml_Verdunnung" DataSetColumn="hml_Verdunnung" />
<Mapping SourceColumn="hml_Schichtdicke_od" DataSetColumn="hml_Schichtdicke_od" />
<Mapping SourceColumn="hml_Schichtdicke_do" DataSetColumn="hml_Schichtdicke_do" />
<Mapping SourceColumn="hml_Leistung" DataSetColumn="hml_Leistung" />
<Mapping SourceColumn="hml_Lagerkapazitat" DataSetColumn="hml_Lagerkapazitat" />
<Mapping SourceColumn="hml_Verarbeitung" DataSetColumn="hml_Verarbeitung" />
<Mapping SourceColumn="hml_Inh0_Id" DataSetColumn="hml_Inh0_Id" />
<Mapping SourceColumn="hml_Inh0_Procent" DataSetColumn="hml_Inh0_Procent" />
<Mapping SourceColumn="hml_Inh0_ProcentDo" DataSetColumn="hml_Inh0_ProcentDo" />
<Mapping SourceColumn="hml_Inh1_Id" DataSetColumn="hml_Inh1_Id" />
<Mapping SourceColumn="hml_Inh1_Procent" DataSetColumn="hml_Inh1_Procent" />
<Mapping SourceColumn="hml_Inh1_ProcentDo" DataSetColumn="hml_Inh1_ProcentDo" />
<Mapping SourceColumn="hml_Inh2_Id" DataSetColumn="hml_Inh2_Id" />
<Mapping SourceColumn="hml_Inh2_Procent" DataSetColumn="hml_Inh2_Procent" />
<Mapping SourceColumn="hml_Inh2_ProcentDo" DataSetColumn="hml_Inh2_ProcentDo" />
<Mapping SourceColumn="hml_Inh3_Id" DataSetColumn="hml_Inh3_Id" />
<Mapping SourceColumn="hml_Inh3_Procent" DataSetColumn="hml_Inh3_Procent" />
<Mapping SourceColumn="hml_Inh3_ProcentDo" DataSetColumn="hml_Inh3_ProcentDo" />
<Mapping SourceColumn="hml_Inh4_Id" DataSetColumn="hml_Inh4_Id" />
<Mapping SourceColumn="hml_Inh4_Procent" DataSetColumn="hml_Inh4_Procent" />
<Mapping SourceColumn="hml_Inh4_ProcentDo" DataSetColumn="hml_Inh4_ProcentDo" />
<Mapping SourceColumn="hml_Inh5_Id" DataSetColumn="hml_Inh5_Id" />
<Mapping SourceColumn="hml_Inh5_Procent" DataSetColumn="hml_Inh5_Procent" />
<Mapping SourceColumn="hml_Inh5_ProcentDo" DataSetColumn="hml_Inh5_ProcentDo" />
<Mapping SourceColumn="hml_Inh6_Id" DataSetColumn="hml_Inh6_Id" />
<Mapping SourceColumn="hml_Inh6_Procent" DataSetColumn="hml_Inh6_Procent" />
<Mapping SourceColumn="hml_Inh6_ProcentDo" DataSetColumn="hml_Inh6_ProcentDo" />
<Mapping SourceColumn="hml_Inh7_Id" DataSetColumn="hml_Inh7_Id" />
<Mapping SourceColumn="hml_Inh7_Procent" DataSetColumn="hml_Inh7_Procent" />
<Mapping SourceColumn="hml_Inh7_ProcentDo" DataSetColumn="hml_Inh7_ProcentDo" />
<Mapping SourceColumn="hml_Inh8_Id" DataSetColumn="hml_Inh8_Id" />
<Mapping SourceColumn="hml_Inh8_Procent" DataSetColumn="hml_Inh8_Procent" />
<Mapping SourceColumn="hml_Inh8_ProcentDo" DataSetColumn="hml_Inh8_ProcentDo" />
<Mapping SourceColumn="hml_Inh9_Id" DataSetColumn="hml_Inh9_Id" />
<Mapping SourceColumn="hml_Inh9_Procent" DataSetColumn="hml_Inh9_Procent" />
<Mapping SourceColumn="hml_Inh9_ProcentDo" DataSetColumn="hml_Inh9_ProcentDo" />
<Mapping SourceColumn="hml_Behelter" DataSetColumn="hml_Behelter" />
<Mapping SourceColumn="hml_OpeNumer" DataSetColumn="hml_OpeNumer" />
<Mapping SourceColumn="hml_Dichte_do" DataSetColumn="hml_Dichte_do" />
<Mapping SourceColumn="hml_Inh10_Id" DataSetColumn="hml_Inh10_Id" />
<Mapping SourceColumn="hml_Inh11_Id" DataSetColumn="hml_Inh11_Id" />
<Mapping SourceColumn="hml_Inh12_Id" DataSetColumn="hml_Inh12_Id" />
<Mapping SourceColumn="hml_Inh13_Id" DataSetColumn="hml_Inh13_Id" />
<Mapping SourceColumn="hml_Inh14_Id" DataSetColumn="hml_Inh14_Id" />
<Mapping SourceColumn="hml_Inh15_Id" DataSetColumn="hml_Inh15_Id" />
<Mapping SourceColumn="hml_Inh16_Id" DataSetColumn="hml_Inh16_Id" />
<Mapping SourceColumn="hml_Inh17_Id" DataSetColumn="hml_Inh17_Id" />
<Mapping SourceColumn="hml_Inh18_Id" DataSetColumn="hml_Inh18_Id" />
<Mapping SourceColumn="hml_Inh19_Id" DataSetColumn="hml_Inh19_Id" />
<Mapping SourceColumn="hml_Inh10_Procent" DataSetColumn="hml_Inh10_Procent" />
<Mapping SourceColumn="hml_Inh11_Procent" DataSetColumn="hml_Inh11_Procent" />
<Mapping SourceColumn="hml_Inh12_Procent" DataSetColumn="hml_Inh12_Procent" />
<Mapping SourceColumn="hml_Inh13_Procent" DataSetColumn="hml_Inh13_Procent" />
<Mapping SourceColumn="hml_Inh14_Procent" DataSetColumn="hml_Inh14_Procent" />
<Mapping SourceColumn="hml_Inh15_Procent" DataSetColumn="hml_Inh15_Procent" />
<Mapping SourceColumn="hml_Inh16_Procent" DataSetColumn="hml_Inh16_Procent" />
<Mapping SourceColumn="hml_Inh17_Procent" DataSetColumn="hml_Inh17_Procent" />
<Mapping SourceColumn="hml_Inh18_Procent" DataSetColumn="hml_Inh18_Procent" />
<Mapping SourceColumn="hml_Inh19_Procent" DataSetColumn="hml_Inh19_Procent" />
<Mapping SourceColumn="hml_Inh10_ProcentDo" DataSetColumn="hml_Inh10_ProcentDo" />
<Mapping SourceColumn="hml_Inh11_ProcentDo" DataSetColumn="hml_Inh11_ProcentDo" />
<Mapping SourceColumn="hml_Inh12_ProcentDo" DataSetColumn="hml_Inh12_ProcentDo" />
<Mapping SourceColumn="hml_Inh13_ProcentDo" DataSetColumn="hml_Inh13_ProcentDo" />
<Mapping SourceColumn="hml_Inh14_ProcentDo" DataSetColumn="hml_Inh14_ProcentDo" />
<Mapping SourceColumn="hml_Inh15_ProcentDo" DataSetColumn="hml_Inh15_ProcentDo" />
<Mapping SourceColumn="hml_Inh16_ProcentDo" DataSetColumn="hml_Inh16_ProcentDo" />
<Mapping SourceColumn="hml_Inh17_ProcentDo" DataSetColumn="hml_Inh17_ProcentDo" />
<Mapping SourceColumn="hml_Inh18_ProcentDo" DataSetColumn="hml_Inh18_ProcentDo" />
<Mapping SourceColumn="hml_Inh19_ProcentDo" DataSetColumn="hml_Inh19_ProcentDo" />
<Mapping SourceColumn="hml_Text1" DataSetColumn="hml_Text1" />
<Mapping SourceColumn="hml_Text2" DataSetColumn="hml_Text2" />
<Mapping SourceColumn="hml_Text3" DataSetColumn="hml_Text3" />
<Mapping SourceColumn="hml_Text4" DataSetColumn="hml_Text4" />
<Mapping SourceColumn="Ope_Ident" DataSetColumn="Ope_Ident" />
</Mappings>
<Sources />
</TableAdapter>
</Tables>
<Sources />
</DataSource>
</xs:appinfo>
</xs:annotation>
<xs:element name="DataSetXL" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DataSetXL" msprop:Generator_UserDSName="DataSetXL">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Lista" msprop:Generator_TableClassName="ListaDataTable" msprop:Generator_TableVarName="tableLista" msprop:Generator_TablePropName="Lista" msprop:Generator_RowDeletingName="ListaRowDeleting" msprop:Generator_RowChangingName="ListaRowChanging" msprop:Generator_RowEvHandlerName="ListaRowChangeEventHandler" msprop:Generator_RowDeletedName="ListaRowDeleted" msprop:Generator_UserTableName="Lista" msprop:Generator_RowChangedName="ListaRowChanged" msprop:Generator_RowEvArgName="ListaRowChangeEvent" msprop:Generator_RowClassName="ListaRow">
<xs:complexType>
<xs:sequence>
<xs:element name="hml_TwrTyp" msprop:Generator_ColumnVarNameInTable="columnhml_TwrTyp" msprop:Generator_ColumnPropNameInRow="hml_TwrTyp" msprop:Generator_ColumnPropNameInTable="hml_TwrTypColumn" msprop:Generator_UserColumnName="hml_TwrTyp" type="xs:short" />
<xs:element name="hml_TwrNumer" msprop:Generator_ColumnVarNameInTable="columnhml_TwrNumer" msprop:Generator_ColumnPropNameInRow="hml_TwrNumer" msprop:Generator_ColumnPropNameInTable="hml_TwrNumerColumn" msprop:Generator_UserColumnName="hml_TwrNumer" type="xs:int" />
<xs:element name="hml_DataPowstania" msprop:Generator_ColumnVarNameInTable="columnhml_DataPowstania" msprop:Generator_ColumnPropNameInRow="hml_DataPowstania" msprop:Generator_ColumnPropNameInTable="hml_DataPowstaniaColumn" msprop:Generator_UserColumnName="hml_DataPowstania" type="xs:dateTime" minOccurs="0" />
<xs:element name="hml_DataArchiwizacji" msprop:Generator_ColumnVarNameInTable="columnhml_DataArchiwizacji" msprop:Generator_ColumnPropNameInRow="hml_DataArchiwizacji" msprop:Generator_ColumnPropNameInTable="hml_DataArchiwizacjiColumn" msprop:Generator_UserColumnName="hml_DataArchiwizacji" type="xs:dateTime" minOccurs="0" />
<xs:element name="hml_Herstellort" msprop:Generator_ColumnVarNameInTable="columnhml_Herstellort" msprop:Generator_ColumnPropNameInRow="hml_Herstellort" msprop:Generator_ColumnPropNameInTable="hml_HerstellortColumn" msprop:Generator_UserColumnName="hml_Herstellort" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_SDStext" msprop:Generator_ColumnVarNameInTable="columnhml_SDStext" msprop:Generator_ColumnPropNameInRow="hml_SDStext" msprop:Generator_ColumnPropNameInTable="hml_SDStextColumn" msprop:Generator_UserColumnName="hml_SDStext" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_SDS1" msprop:Generator_ColumnVarNameInTable="columnhml_SDS1" msprop:Generator_ColumnPropNameInRow="hml_SDS1" msprop:Generator_ColumnPropNameInTable="hml_SDS1Column" msprop:Generator_UserColumnName="hml_SDS1" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS2" msprop:Generator_ColumnVarNameInTable="columnhml_SDS2" msprop:Generator_ColumnPropNameInRow="hml_SDS2" msprop:Generator_ColumnPropNameInTable="hml_SDS2Column" msprop:Generator_UserColumnName="hml_SDS2" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS3" msprop:Generator_ColumnVarNameInTable="columnhml_SDS3" msprop:Generator_ColumnPropNameInRow="hml_SDS3" msprop:Generator_ColumnPropNameInTable="hml_SDS3Column" msprop:Generator_UserColumnName="hml_SDS3" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS4" msprop:Generator_ColumnVarNameInTable="columnhml_SDS4" msprop:Generator_ColumnPropNameInRow="hml_SDS4" msprop:Generator_ColumnPropNameInTable="hml_SDS4Column" msprop:Generator_UserColumnName="hml_SDS4" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS5" msprop:Generator_ColumnVarNameInTable="columnhml_SDS5" msprop:Generator_ColumnPropNameInRow="hml_SDS5" msprop:Generator_ColumnPropNameInTable="hml_SDS5Column" msprop:Generator_UserColumnName="hml_SDS5" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS6" msprop:Generator_ColumnVarNameInTable="columnhml_SDS6" msprop:Generator_ColumnPropNameInRow="hml_SDS6" msprop:Generator_ColumnPropNameInTable="hml_SDS6Column" msprop:Generator_UserColumnName="hml_SDS6" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS7" msprop:Generator_ColumnVarNameInTable="columnhml_SDS7" msprop:Generator_ColumnPropNameInRow="hml_SDS7" msprop:Generator_ColumnPropNameInTable="hml_SDS7Column" msprop:Generator_UserColumnName="hml_SDS7" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS8" msprop:Generator_ColumnVarNameInTable="columnhml_SDS8" msprop:Generator_ColumnPropNameInRow="hml_SDS8" msprop:Generator_ColumnPropNameInTable="hml_SDS8Column" msprop:Generator_UserColumnName="hml_SDS8" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS9" msprop:Generator_ColumnVarNameInTable="columnhml_SDS9" msprop:Generator_ColumnPropNameInRow="hml_SDS9" msprop:Generator_ColumnPropNameInTable="hml_SDS9Column" msprop:Generator_UserColumnName="hml_SDS9" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS10" msprop:Generator_ColumnVarNameInTable="columnhml_SDS10" msprop:Generator_ColumnPropNameInRow="hml_SDS10" msprop:Generator_ColumnPropNameInTable="hml_SDS10Column" msprop:Generator_UserColumnName="hml_SDS10" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_Schichten" msprop:Generator_ColumnVarNameInTable="columnhml_Schichten" msprop:Generator_ColumnPropNameInRow="hml_Schichten" msprop:Generator_ColumnPropNameInTable="hml_SchichtenColumn" msprop:Generator_UserColumnName="hml_Schichten" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Eigenschaften" msprop:Generator_ColumnVarNameInTable="columnhml_Eigenschaften" msprop:Generator_ColumnPropNameInRow="hml_Eigenschaften" msprop:Generator_ColumnPropNameInTable="hml_EigenschaftenColumn" msprop:Generator_UserColumnName="hml_Eigenschaften" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Anleitung" msprop:Generator_ColumnVarNameInTable="columnhml_Anleitung" msprop:Generator_ColumnPropNameInRow="hml_Anleitung" msprop:Generator_ColumnPropNameInTable="hml_AnleitungColumn" msprop:Generator_UserColumnName="hml_Anleitung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_FS_od" msprop:Generator_ColumnVarNameInTable="columnhml_FS_od" msprop:Generator_ColumnPropNameInRow="hml_FS_od" msprop:Generator_ColumnPropNameInTable="hml_FS_odColumn" msprop:Generator_UserColumnName="hml_FS_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_FS_do" msprop:Generator_ColumnVarNameInTable="columnhml_FS_do" msprop:Generator_ColumnPropNameInRow="hml_FS_do" msprop:Generator_ColumnPropNameInTable="hml_FS_doColumn" msprop:Generator_UserColumnName="hml_FS_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Dichte" msprop:Generator_ColumnVarNameInTable="columnhml_Dichte" msprop:Generator_ColumnPropNameInRow="hml_Dichte" msprop:Generator_ColumnPropNameInTable="hml_DichteColumn" msprop:Generator_UserColumnName="hml_Dichte" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Viskositat_od" msprop:Generator_ColumnVarNameInTable="columnhml_Viskositat_od" msprop:Generator_ColumnPropNameInRow="hml_Viskositat_od" msprop:Generator_ColumnPropNameInTable="hml_Viskositat_odColumn" msprop:Generator_UserColumnName="hml_Viskositat_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Viskositat_do" msprop:Generator_ColumnVarNameInTable="columnhml_Viskositat_do" msprop:Generator_ColumnPropNameInRow="hml_Viskositat_do" msprop:Generator_ColumnPropNameInTable="hml_Viskositat_doColumn" msprop:Generator_UserColumnName="hml_Viskositat_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Farbe" msprop:Generator_ColumnVarNameInTable="columnhml_Farbe" msprop:Generator_ColumnPropNameInRow="hml_Farbe" msprop:Generator_ColumnPropNameInTable="hml_FarbeColumn" msprop:Generator_UserColumnName="hml_Farbe" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Verdunnung" msprop:Generator_ColumnVarNameInTable="columnhml_Verdunnung" msprop:Generator_ColumnPropNameInRow="hml_Verdunnung" msprop:Generator_ColumnPropNameInTable="hml_VerdunnungColumn" msprop:Generator_UserColumnName="hml_Verdunnung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Schichtdicke_od" msprop:Generator_ColumnVarNameInTable="columnhml_Schichtdicke_od" msprop:Generator_ColumnPropNameInRow="hml_Schichtdicke_od" msprop:Generator_ColumnPropNameInTable="hml_Schichtdicke_odColumn" msprop:Generator_UserColumnName="hml_Schichtdicke_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Schichtdicke_do" msprop:Generator_ColumnVarNameInTable="columnhml_Schichtdicke_do" msprop:Generator_ColumnPropNameInRow="hml_Schichtdicke_do" msprop:Generator_ColumnPropNameInTable="hml_Schichtdicke_doColumn" msprop:Generator_UserColumnName="hml_Schichtdicke_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Leistung" msprop:Generator_ColumnVarNameInTable="columnhml_Leistung" msprop:Generator_ColumnPropNameInRow="hml_Leistung" msprop:Generator_ColumnPropNameInTable="hml_LeistungColumn" msprop:Generator_UserColumnName="hml_Leistung" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Lagerkapazitat" msprop:Generator_ColumnVarNameInTable="columnhml_Lagerkapazitat" msprop:Generator_ColumnPropNameInRow="hml_Lagerkapazitat" msprop:Generator_ColumnPropNameInTable="hml_LagerkapazitatColumn" msprop:Generator_UserColumnName="hml_Lagerkapazitat" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Verarbeitung" msprop:Generator_ColumnVarNameInTable="columnhml_Verarbeitung" msprop:Generator_ColumnPropNameInRow="hml_Verarbeitung" msprop:Generator_ColumnPropNameInTable="hml_VerarbeitungColumn" msprop:Generator_UserColumnName="hml_Verarbeitung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Inh0_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh0_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh0_IdColumn" msprop:Generator_UserColumnName="hml_Inh0_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh0_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh0_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh0_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh0_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh0_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh0_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh0_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh0_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh1_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh1_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh1_IdColumn" msprop:Generator_UserColumnName="hml_Inh1_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh1_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh1_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh1_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh1_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh1_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh1_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh1_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh1_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh2_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh2_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh2_IdColumn" msprop:Generator_UserColumnName="hml_Inh2_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh2_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh2_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh2_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh2_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh2_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh2_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh2_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh2_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh3_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh3_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh3_IdColumn" msprop:Generator_UserColumnName="hml_Inh3_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh3_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh3_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh3_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh3_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh3_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh3_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh3_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh3_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh4_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh4_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh4_IdColumn" msprop:Generator_UserColumnName="hml_Inh4_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh4_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh4_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh4_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh4_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh4_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh4_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh4_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh4_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh5_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh5_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh5_IdColumn" msprop:Generator_UserColumnName="hml_Inh5_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh5_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh5_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh5_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh5_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh5_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh5_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh5_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh5_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh6_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh6_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh6_IdColumn" msprop:Generator_UserColumnName="hml_Inh6_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh6_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh6_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh6_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh6_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh6_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh6_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh6_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh6_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh7_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh7_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh7_IdColumn" msprop:Generator_UserColumnName="hml_Inh7_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh7_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh7_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh7_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh7_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh7_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh7_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh7_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh7_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh8_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh8_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh8_IdColumn" msprop:Generator_UserColumnName="hml_Inh8_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh8_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh8_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh8_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh8_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh8_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh8_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh8_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh8_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh9_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh9_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh9_IdColumn" msprop:Generator_UserColumnName="hml_Inh9_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh9_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh9_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh9_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh9_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh9_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh9_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh9_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh9_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Behelter" msprop:Generator_ColumnVarNameInTable="columnhml_Behelter" msprop:Generator_ColumnPropNameInRow="hml_Behelter" msprop:Generator_ColumnPropNameInTable="hml_BehelterColumn" msprop:Generator_UserColumnName="hml_Behelter" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_OpeNumer" msprop:Generator_ColumnVarNameInTable="columnhml_OpeNumer" msprop:Generator_ColumnPropNameInRow="hml_OpeNumer" msprop:Generator_ColumnPropNameInTable="hml_OpeNumerColumn" msprop:Generator_UserColumnName="hml_OpeNumer" type="xs:int" minOccurs="0" />
<xs:element name="hml_Dichte_do" msprop:Generator_ColumnVarNameInTable="columnhml_Dichte_do" msprop:Generator_ColumnPropNameInRow="hml_Dichte_do" msprop:Generator_ColumnPropNameInTable="hml_Dichte_doColumn" msprop:Generator_UserColumnName="hml_Dichte_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh10_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh10_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh10_IdColumn" msprop:Generator_UserColumnName="hml_Inh10_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh11_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh11_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh11_IdColumn" msprop:Generator_UserColumnName="hml_Inh11_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh12_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh12_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh12_IdColumn" msprop:Generator_UserColumnName="hml_Inh12_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh13_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh13_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh13_IdColumn" msprop:Generator_UserColumnName="hml_Inh13_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh14_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh14_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh14_IdColumn" msprop:Generator_UserColumnName="hml_Inh14_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh15_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh15_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh15_IdColumn" msprop:Generator_UserColumnName="hml_Inh15_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh16_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh16_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh16_IdColumn" msprop:Generator_UserColumnName="hml_Inh16_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh17_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh17_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh17_IdColumn" msprop:Generator_UserColumnName="hml_Inh17_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh18_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh18_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh18_IdColumn" msprop:Generator_UserColumnName="hml_Inh18_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh19_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh19_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh19_IdColumn" msprop:Generator_UserColumnName="hml_Inh19_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh10_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh10_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh10_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh10_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh11_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh11_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh11_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh11_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh12_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh12_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh12_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh12_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh13_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh13_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh13_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh13_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh14_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh14_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh14_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh14_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh15_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh15_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh15_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh15_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh16_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh16_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh16_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh16_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh17_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh17_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh17_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh17_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh18_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh18_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh18_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh18_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh19_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh19_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh19_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh19_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh10_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh10_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh10_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh10_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh11_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh11_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh11_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh11_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh12_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh12_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh12_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh12_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh13_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh13_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh13_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh13_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh14_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh14_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh14_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh14_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh15_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh15_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh15_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh15_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh16_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh16_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh16_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh16_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh17_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh17_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh17_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh17_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh18_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh18_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh18_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh18_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh19_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh19_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh19_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh19_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Text1" msprop:Generator_ColumnVarNameInTable="columnhml_Text1" msprop:Generator_ColumnPropNameInRow="hml_Text1" msprop:Generator_ColumnPropNameInTable="hml_Text1Column" msprop:Generator_UserColumnName="hml_Text1" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Text2" msprop:Generator_ColumnVarNameInTable="columnhml_Text2" msprop:Generator_ColumnPropNameInRow="hml_Text2" msprop:Generator_ColumnPropNameInTable="hml_Text2Column" msprop:Generator_UserColumnName="hml_Text2" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Text3" msprop:Generator_ColumnVarNameInTable="columnhml_Text3" msprop:Generator_ColumnPropNameInRow="hml_Text3" msprop:Generator_ColumnPropNameInTable="hml_Text3Column" msprop:Generator_UserColumnName="hml_Text3" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Text4" msprop:Generator_ColumnVarNameInTable="columnhml_Text4" msprop:Generator_ColumnPropNameInRow="hml_Text4" msprop:Generator_ColumnPropNameInTable="hml_Text4Column" msprop:Generator_UserColumnName="hml_Text4" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Ope_Ident" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnOpe_Ident" msprop:Generator_ColumnPropNameInRow="Ope_Ident" msprop:Generator_ColumnPropNameInTable="Ope_IdentColumn" msprop:Generator_UserColumnName="Ope_Ident" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1024" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@@ -0,0 +1,20 @@
using System;
namespace Haftmittel
{
public class Historia
{
public DateTime data { get; set; }
public string wartosc { get; set; }
public string opemod { get; set; }
public Historia(DateTime d, string w, string o)
{
data = d;
wartosc = w;
opemod = o;
}
public override string ToString() => string.Format("{0} {1,-10} {2}", data, opemod, wartosc);
}
}

View File

@@ -0,0 +1,41 @@
using System;
namespace Haftmittel
{
public class DelegateCommand<T> : System.Windows.Input.ICommand
{
private readonly Predicate<T> _canExecute;
private readonly Action<T> _execute;
public DelegateCommand(Action<T> execute)
: this(execute, null)
{
}
public DelegateCommand(Action<T> execute, Predicate<T> canExecute)
{
_execute = execute;
_canExecute = canExecute;
}
public bool CanExecute(object parameter)
{
if (_canExecute == null)
return true;
return _canExecute((parameter == null) ? default : (T)Convert.ChangeType(parameter, typeof(T)));
}
public void Execute(object parameter)
{
_execute((parameter == null) ? default : (T)Convert.ChangeType(parameter, typeof(T)));
}
public event EventHandler CanExecuteChanged;
public void RaiseCanExecuteChanged()
{
if (CanExecuteChanged != null)
CanExecuteChanged(this, EventArgs.Empty);
}
}
}

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!--<autogenerated>
This code was generated by a tool.
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DataSetUISetting Version="1.00" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TableUISettings />
</DataSetUISetting>

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Haftmittel
{
public class DelegateCommand<T> : System.Windows.Input.ICommand
{
private readonly Predicate<T> _canExecute;
private readonly Action<T> _execute;
public DelegateCommand(Action<T> execute)
: this(execute, null)
{
}
public DelegateCommand(Action<T> execute, Predicate<T> canExecute)
{
_execute = execute;
_canExecute = canExecute;
}
public bool CanExecute(object parameter)
{
if (_canExecute == null)
return true;
return _canExecute((parameter == null) ? default(T) : (T)Convert.ChangeType(parameter, typeof(T)));
}
public void Execute(object parameter)
{
_execute((parameter == null) ? default(T) : (T)Convert.ChangeType(parameter, typeof(T)));
}
public event EventHandler CanExecuteChanged;
public void RaiseCanExecuteChanged()
{
if (CanExecuteChanged != null)
CanExecuteChanged(this, EventArgs.Empty);
}
}
}

View File

@@ -0,0 +1,4 @@
ALTER TABLE [myconsult_haftmittel].[Lista]
ADD CONSTRAINT [FK_Lista_TwrKarty]
FOREIGN KEY (hml_TwrNumer)
REFERENCES [CDN].[TwrKarty] (Twr_GIDNumer)

View File

@@ -0,0 +1,49 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Data;
using System.Globalization;
namespace Haftmittel
{
/// <summary>
/// true na jasnozielony, false na pomarańczowy
/// </summary>
[ValueConversion(typeof(double), typeof(bool))]
public class ClassKonwerterNaProcenty: IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is bool)
{
if ((bool)value)
{
return 1;
}
else
{
return 0.2;
}
}
else
{
return 0.2;
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is double)
{
return ((double)value == 1);
}
else
{
return false;
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--<autogenerated>
This code was generated by a tool to store the dataset designer's layout information.
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="0" ViewPortY="57" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:Lista" ZOrder="1" X="19" Y="67" Height="305" Width="171" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:DaneTowaru" ZOrder="2" X="290" Y="72" Height="210" Width="218" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
</Shapes>
<Connectors />
</DiagramLayout>

View File

@@ -0,0 +1,39 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30621.155
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Haftmittel", "APQP\Haftmittel.csproj", "{E76D8CE4-D8E0-4E10-8422-ECAC06E1B641}"
EndProject
Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "SQL", "SQL\SQL.sqlproj", "{E37F93FC-C4A1-47E8-988F-3F91C68A5A1F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{17140771-9C9E-4954-9FF1-11719561A2D5}"
ProjectSection(SolutionItems) = preProject
zmiany.txt = zmiany.txt
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E76D8CE4-D8E0-4E10-8422-ECAC06E1B641}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E76D8CE4-D8E0-4E10-8422-ECAC06E1B641}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E76D8CE4-D8E0-4E10-8422-ECAC06E1B641}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E76D8CE4-D8E0-4E10-8422-ECAC06E1B641}.Release|Any CPU.Build.0 = Release|Any CPU
{E37F93FC-C4A1-47E8-988F-3F91C68A5A1F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E37F93FC-C4A1-47E8-988F-3F91C68A5A1F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E37F93FC-C4A1-47E8-988F-3F91C68A5A1F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{E37F93FC-C4A1-47E8-988F-3F91C68A5A1F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E37F93FC-C4A1-47E8-988F-3F91C68A5A1F}.Release|Any CPU.Build.0 = Release|Any CPU
{E37F93FC-C4A1-47E8-988F-3F91C68A5A1F}.Release|Any CPU.Deploy.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7C12F010-251C-42DD-8782-A8C86370301F}
VisualSVNWorkingCopyRoot = .
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,606 @@
<Window x:Class="Haftmittel.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:hft="clr-namespace:Haftmittel"
Title="Haftmittel" Height="850" Width="550" Closing="Window_Closing" UseLayoutRounding="True">
<Window.Resources>
<ResourceDictionary>
<hft:ClassProcentyValidationRule x:Key="ProcentyValidationRules"/>
<LinearGradientBrush x:Key="tlo">
<GradientStop Color="#FFD9EDFF" Offset="0"/>
<GradientStop Color="#FFC0DEFF" Offset="0.445"/>
<GradientStop Color="#FFAFD1F8" Offset="0.53"/>
</LinearGradientBrush>
<BitmapImage x:Key="o_1" UriSource="Resources/o1.png"/>
<BitmapImage x:Key="o_2" UriSource="Resources/o2.png"/>
<BitmapImage x:Key="o_3" UriSource="Resources/o3.png"/>
<BitmapImage x:Key="o_4" UriSource="Resources/o4.png"/>
<BitmapImage x:Key="o_5" UriSource="Resources/o5.png"/>
<BitmapImage x:Key="o_6" UriSource="Resources/o6.png"/>
<BitmapImage x:Key="o7" UriSource="Resources/o7.png"/>
<BitmapImage x:Key="o_8" UriSource="Resources/o8.png"/>
<BitmapImage x:Key="o_9" UriSource="Resources/o9.png"/>
<BitmapImage x:Key="o_10" UriSource="Resources/o10.png" />
<BitmapImage x:Key="CloseButton" UriSource="Resources/Close.png"/>
<BitmapImage x:Key="SaveButton" UriSource="Resources/Save.png" />
<BitmapImage x:Key="PrintButton" UriSource="Resources/Print.png" />
<BitmapImage x:Key="o1" UriSource="Resources/gsh06.png"/>
<BitmapImage x:Key="o2" UriSource="Resources/gsh07.png"/>
<BitmapImage x:Key="o3" UriSource="Resources/gsh01.png"/>
<BitmapImage x:Key="o4" UriSource="Resources/gsh02.png"/>
<BitmapImage x:Key="o5" UriSource="Resources/gsh04.png"/>
<BitmapImage x:Key="o6" UriSource="Resources/gsh08.png"/>
<BitmapImage x:Key="o_7" UriSource="Resources/gsh01.png"/>
<BitmapImage x:Key="o8" UriSource="Resources/gsh03.png"/>
<BitmapImage x:Key="o9" UriSource="Resources/gsh05.png"/>
<BitmapImage x:Key="o10" UriSource="Resources/gsh09.png"/>
<hft:ClassKonwerterNaProcenty x:Key="BoolToProcent"/>
<hft:ClassKonwerterNaKolory x:Key="BoolToColorError"/>
<Style x:Key="labelStyle" TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="Height" Value="26" />
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="FontWeight" Value="Bold"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="labelErrDescStyle" TargetType="Label" >
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="Height" Value="26" />
<Setter Property="Foreground" Value="Red"/>
<Setter Property="Width" Value="Auto" />
<Setter Property="Margin" Value="169,0,10,0"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="HorizontalContentAlignment" Value="Left"/>
</Style>
<Style x:Key="labelErrDescInhaltstoffeStyle" BasedOn="{StaticResource labelErrDescStyle}" TargetType="Label" >
<Setter Property="Margin" Value="20,0,10,0"/>
</Style>
<Style x:Key="textBoxStyle" TargetType="TextBox" >
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="MinHeight" Value="23"/>
<Setter Property="Height" Value="Auto" />
<Setter Property="TextWrapping" Value="Wrap" />
<Setter Property="Margin" Value="10,3,10,0"/>
<Setter Property="AcceptsReturn" Value="True"/>
<Setter Property="ToolTipService.ShowDuration" Value="20000"/>
</Style>
<Style x:Key="textBoxLiczbaStyle" TargetType="TextBox" >
<Setter Property="VerticalAlignment" Value="Top" />
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Height" Value="23" />
<Setter Property="TextWrapping" Value="WrapWithOverflow" />
<Setter Property="Width" Value="50" />
<Style.Triggers>
<Trigger Property="Validation.HasError" Value="True">
<Setter Property="Background" Value="Red"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="imageObrazek" TargetType="Image">
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="Height" Value="50"/>
<Setter Property="VerticalAlignment" Value="Top"/>
<Setter Property="Width" Value="50"/>
<Setter Property="RenderOptions.BitmapScalingMode" Value="Fant"/>
</Style>
<Style x:Key="comboSkladnikStyle" TargetType="ComboBox">
<Setter Property="Margin" Value="10,0,10,0"/>
<Setter Property="ItemsSource" Value="{Binding Path=Tag.Skladniki, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
<Setter Property="ItemTemplate">
<Setter.Value>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
Text="{Binding Kod}"
FontWeight="Bold"/>
<TextBlock Grid.Row="1"
Text="{Binding Nazwa}"
FontWeight="Light"/>
</Grid>
</DataTemplate>
</Setter.Value>
</Setter>
<Setter Property="SelectedValuePath" Value="Id"/>
<Setter Property="MinWidth" Value="100"/>
<Setter Property="Width" Value="200"/>
<Setter Property="ToolTip" Value="{Binding Path=SelectedItem.Nazwa, RelativeSource={RelativeSource Self}}"/>
</Style>
<Style x:Key="buttonStyle" TargetType="Button">
<Setter Property="UseLayoutRounding" Value="True"/>
<Setter Property="Margin" Value="10,3,10,3"/>
<Setter Property="Width" Value="Auto"/>
</Style>
<Style x:Key="dataGridHistoriaStyle" TargetType="DataGrid">
<Setter Property="RowHeight" Value="{x:Static sys:Double.NaN}"/>
<Setter Property="RowHeaderWidth" Value="0"/>
<Setter Property="CanUserAddRows" Value="False"/>
<Setter Property="AutoGenerateColumns" Value="False"/>
<Setter Property="BorderBrush" Value="Gray"/>
<Setter Property="ColumnWidth" Value="Auto"/>
</Style>
<Style x:Key="toolTipImageStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
HorizontalAlignment="Stretch"
TextAlignment="Center"
DataContext="{TemplateBinding PlacementTarget}"
FontWeight="Bold"
Text="{Binding Tag}"/>
<Image Width="100" Height="100" Grid.Row="1"
DataContext="{TemplateBinding PlacementTarget}"
Source="{Binding Source}"
RenderOptions.BitmapScalingMode="Fant"/>
<DataGrid ItemsSource="{TemplateBinding Content}"
Grid.Row="2"
Style="{DynamicResource dataGridHistoriaStyle}">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość"/>
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="toolTipHistoriaStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<DataGrid Style="{DynamicResource dataGridHistoriaStyle}" ItemsSource="{TemplateBinding Content}" Grid.Row="1">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość" TextBlock.LineStackingStrategy="MaxHeight" TextBlock.LineHeight="Auto" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="toolTipHistoriaSkladnikaStyle" TargetType="ToolTip">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ToolTip">
<Border Background="{DynamicResource tlo}" BorderBrush="Black" BorderThickness="1" Padding="2,2,2,2">
<Grid>
<DataGrid ItemsSource="{TemplateBinding Content}" Grid.Row="1" Style="{DynamicResource dataGridHistoriaStyle}">
<DataGrid.Columns>
<DataGridTextColumn Binding="{Binding data}" Header="Data" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding opemod}" Header="Operator" TextBlock.LineHeight="Auto"/>
<DataGridTextColumn Binding="{Binding wartosc}" Header="Wartość" TextBlock.LineStackingStrategy="MaxHeight" TextBlock.LineHeight="Auto" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="SmallButtonStyle" TargetType="Button" BasedOn="{StaticResource {x:Type Button}}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Width" Value="20"/>
<Setter Property="Height" Value="20"/>
<Setter Property="Margin" Value="3"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<ControlTemplate.Triggers>
<Trigger Property="Button.IsPressed" Value="True">
<Setter Property="Margin" Value="5,4,1,2"/>
</Trigger>
</ControlTemplate.Triggers>
<StackPanel>
<Image RenderOptions.BitmapScalingMode="Fant" Source="{TemplateBinding Property=Content}">
<Image.Style>
<Style TargetType="{x:Type Image}">
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Opacity" Value="0.4"/>
</Trigger>
</Style.Triggers>
</Style>
</Image.Style>
</Image>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<Style x:Key="BigButtonStyle" TargetType="Button" BasedOn="{StaticResource SmallButtonStyle}">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Width" Value="32"/>
<Setter Property="Height" Value="32"/>
<Setter Property="Margin" Value="3,3,3,3"/>
</Style>
<DataTemplate x:Key="InhaltstoffeTemplate">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<ComboBox Style="{StaticResource comboSkladnikStyle}"
SelectedValue="{Binding Id, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
KeyDown="ComboBox_KeyDown"
Grid.Column="0">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</ComboBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}"
Grid.Column="1"
Text="{Binding Procent, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}"
Name="inhT">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}"
Grid.Column="2"
Text="{Binding ProcentDo, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}"
Name="inhTDo">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}"
Content="{Binding Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{DynamicResource labelErrDescInhaltstoffeStyle}"
Content="{Binding Path=(Validation.Errors)/ErrorContent, ElementName=inhT}"
Grid.Column="3"/>
</Grid>
</DataTemplate>
</ResourceDictionary>
</Window.Resources>
<Grid Background="{DynamicResource tlo}" UseLayoutRounding="False">
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<ScrollViewer Grid.Row="0">
<Grid ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Visible"
Height="Auto"
VerticalAlignment="Top"
UseLayoutRounding="False">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" MinWidth="180"/>
<ColumnDefinition Width="*" MinWidth="319"/>
</Grid.ColumnDefinitions>
<Label Content="Name" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="0" />
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Name}" IsEnabled="False" Grid.Column="1" Grid.Row="0"/>
<Label Content="Lieferant" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="1"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Lieferant}" IsEnabled="False" Grid.Column="1" Grid.Row="1"/>
<Label Content="Herstellort" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="2"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Herstellort, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="2">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Herstellort_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Artikel" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="3"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Art, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="3"/>
<Label Content="SDS Kenzeichnung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="4"/>
<!--Obrazki SDS-->
<Grid Grid.Column="1" Grid.Row="4">
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Image Style="{DynamicResource imageObrazek}" Margin="10,5,0,0" Grid.Row="0" Tag="Ostra toksyczność" Name="obr1"
Source="{DynamicResource o1}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek1.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek1.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="40,35,0,0" Grid.Row="0" Tag="Ostra toksyczność, działanie uczulające dla skóry i drażniące" Name="obr2"
Source="{DynamicResource o2}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek2.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek2.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="70,5,0,0" Grid.Row="0" Tag="Wybuchowe"
Source="{DynamicResource o3}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek3.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek3.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="100,35,0,0" Grid.Row="0" Tag="Palne"
Source="{DynamicResource o4}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek4.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek4.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="130,5,0,0" Grid.Row="0" Tag="Sprężone gazy"
Source="{DynamicResource o5}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek5.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek5.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="160,35,0,0" Grid.Row="0" Tag="CMR, Uczulające (układ oddechowy) Toksyczność układowa na narządy docelowe (kat 1 i 2)"
Source="{DynamicResource o6}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek6.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek6.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="190,5,0,0" Grid.Row="0" Tag="Utleniające"
Source="{DynamicResource o8}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek8.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek8.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="220,35,0,0" Grid.Row="0" Tag="Żrące"
Source="{DynamicResource o9}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek9.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek9.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<Image Style="{DynamicResource imageObrazek}" Margin="250,5,0,0" Grid.Row="0" Tag="Niebezpieczne dla środowiska"
Source="{DynamicResource o10}" MouseDown="Image_MouseDown_1"
Opacity="{Binding SDS_Obrazek10.Widoczny, Converter={StaticResource BoolToProcent}, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipImageStyle}" Content="{Binding SDS_Obrazek10.HistoriaObrazka}"/>
</ToolTipService.ToolTip>
</Image>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Row="1" IsEnabled="False"
Text="{Binding SDS_Text_auto, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Row="2"
Text="{Binding SDS_Text, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding SDS_Text_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
</Grid>
<Label Content="Schichten" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="5"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Schichten, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="5" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichten_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Eigenschaft" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="6"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Eigenschaften, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="6">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Eigenschaften_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Anleitung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="7"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Anleitung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="7">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Anleitung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="FS %" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="8"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding FS_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="8" Name="fs_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding FS_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding FS_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="8" Name="fs_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding FS_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="8">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="fs_od" FallbackValue=""/>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="fs_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Dichte" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="9"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Dichte, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="9" Name="dichte">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Dichte_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Dichte_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="9" Name="dichte_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Dichte_Historia_do}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="9">
<Label.Content>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="dichte" FallbackValue=""/>
</Label.Content>
</Label>
<Label Content="Viskosität" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="10"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Viskositat_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="10" Name="vis_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Viskositat_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Viskositat_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Margin="100,3,160,0" Grid.Column="1" Grid.Row="10" Name="vis_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Viskositat_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="10">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="vis_od" FallbackValue=""/>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="vis_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Farbe" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="11"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Farbe, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="11" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Farbe_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Verdünnung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="12"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Verdunnung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="12" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Verdunnung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Content="Schichtdicke" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="13"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Margin="10,3,260,0" Text="{Binding Schichtdicke_od, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Grid.Column="1" Grid.Row="13" Name="schd_od">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichtdicke_od_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Margin="100,3,160,0" Text="{Binding Schichtdicke_do, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, ValidatesOnDataErrors=True}" Grid.Column="1" Grid.Row="13" Name="schd_do">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Schichtdicke_do_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Grid.Column="1" Grid.Row="13">
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}">
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="schd_od" FallbackValue=""/>
<Binding Path="(Validation.Errors)/ErrorContent" ElementName="schd_do" FallbackValue=""/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
<Label Content="Leistung nach Beschichtung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="14"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Leistung_nach_Beschichtung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="14" Name="leist" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Leistung_nach_Beschichtung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Content="{Binding Path=(Validation.Errors)/ErrorContent, ElementName=leist}" Grid.Column="1" Grid.Row="14"/>
<Label Content="Lagerkapazitat" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="15"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Lagerkapazitat, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}" Margin="10,3,260,0" Grid.Column="1" Grid.Row="15" Name="lager">
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Lagerkapazitat_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<Label Style="{StaticResource labelErrDescStyle}" Content="{Binding Path=(Validation.Errors)/ErrorContent, ElementName=lager}" Grid.Column="1" Grid.Row="15"/>
<Label Content="Verarbeitung" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="16"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Verarbeitung, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="16" >
<ToolTipService.ToolTip>
<ToolTip Style="{DynamicResource toolTipHistoriaStyle}" Content="{Binding Verarbeitung_Historia}"/>
</ToolTipService.ToolTip>
</TextBox>
<!--Składniki-->
<Label Content="Inhaltstoffe" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="17"/>
<Expander Grid.Column="1" Grid.Row="17">
<ItemsControl ItemTemplate="{StaticResource InhaltstoffeTemplate}"
ItemsSource="{Binding Inhaltsstoffe}"
Tag="{Binding .}"/>
</Expander>
<Label Content="Preis" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="18"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Preis, Mode=OneWay}" IsEnabled="False" Margin="10,3,260,0" Grid.Column="1" Grid.Row="18"/>
<Label Content="Einheit preis" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="19"/>
<TextBox Style="{StaticResource textBoxLiczbaStyle}" Text="{Binding Einheit_preis, Mode=OneWay}" IsEnabled="False" Margin="10,3,260,0" Grid.Column="1" Grid.Row="19" Background="{Binding Einheit_preis_error, Converter={StaticResource BoolToColorError}}"/>
<Label Content="Behälter" Style="{StaticResource labelStyle}" Grid.Column="0" Grid.Row="20"/>
<TextBox Style="{StaticResource textBoxStyle}" Text="{Binding Behalter, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" Grid.Column="1" Grid.Row="20" IsEnabled="False"/>
<Label Content="Text1" Grid.Column="0" Grid.Row="21"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Column="1" Grid.Row="21"/>
<Label Content="Text2" Grid.Column="0" Grid.Row="22"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Column="1" Grid.Row="22"/>
<Label Content="Text3" Grid.Column="0" Grid.Row="23"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Column="1" Grid.Row="23"/>
<Label Content="Text4" Grid.Column="0" Grid.Row="24"/>
<TextBox Style="{StaticResource textBoxStyle}" Grid.Column="1" Grid.Row="24"/>
</Grid>
</ScrollViewer>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource SaveButton}"
Grid.Column="0"
Command="{Binding Zapisz}"/>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource CloseButton}"
Grid.Column="1"
Click="Button_Click"/>
<Button Style="{DynamicResource BigButtonStyle}"
Content="{DynamicResource PrintButton}"
Grid.Column="3"
IsEnabled="False"
/>
</Grid>
<StatusBar HorizontalAlignment="Stretch"
Height="30"
VerticalAlignment="Bottom"
Width="Auto"
Visibility="Collapsed"
Grid.Row="2">
<Label Content="Test"/>
</StatusBar>
</Grid>
</Window>

View File

@@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Globalization;
using System.Windows.Controls;
namespace Haftmittel
{
public class ClassProcentyValidationRule : ValidationRule
{
public override ValidationResult Validate(object value, CultureInfo cultureInfo)
{
decimal procent = 0;
try
{
if (((string)value).Length > 0)
{
procent = decimal.Parse((String)value);
}
}
catch (Exception)
{
return new ValidationResult(false, "Nieprawidłowe znaki");
}
if ((procent < 0) || (procent > 100))
{
return new ValidationResult(false, "Wartość powinna być z zakresu: 0 - 100");
}
else
{
return new ValidationResult(true, null);
}
}
}
}

View File

@@ -0,0 +1,11 @@
2015-01-05 nowa kolumna Dichte_do, powiazana z Dichte
2015-01-05 zdj<64>cie ogranicze<7A> procentowych z Viskozitat
2015-02-05 nowa kolumna Dichte_do
pokazywanie domy<6D>lnego opakowania zakupu
wyrzucenie ograniczenie warto<74>ci na parametrze FS%
2015-02-06 program pyta si<73> przy zamkni<6E>ciu o niezapisane zmiany
2015-02-12 sortowanie kod<6F>w CAS i mo<6D>liwo<77><6F> u<>ycia skr<6B>t<EFBFBD>w klawiszowych
2015-03-09 rozszerzenie ilo<6C>ci sk<73>adnik<69>w Inhaltstoffe do 20
sk<73>adniki przyjmuj<75> warto<74>ci u<>amkowe
2015-03-12 nowe piktogramy i ich opisy, uproszczona historia
2021-03-29 cztery nowe pola tekstowe

View File

@@ -0,0 +1,52 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Data;
using System.Windows.Media;
namespace Haftmittel
{
[ValueConversion(typeof(Brushes), typeof(bool))]
class ClassKonwerterNaKolory : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is bool)
{
if ((bool)value)
{
return Brushes.Red;
}
else
{
return Brushes.White;
}
}
else
{
return Brushes.White;
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is Brushes)
{
if ((value as Brush) == Brushes.Red)
{
return true;
}
else
{
return false;
}
}
else
{
return false;
}
}
}
}

View File

@@ -0,0 +1,183 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Ten kod został wygenerowany przez narzędzie.
// Wersja wykonawcza:4.0.30319.42000
//
// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
// kod zostanie ponownie wygenerowany.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Haftmittel.Properties {
using System;
/// <summary>
/// Klasa zasobu wymagająca zdefiniowania typu do wyszukiwania zlokalizowanych ciągów itd.
/// </summary>
// Ta klasa została automatycznie wygenerowana za pomocą klasy StronglyTypedResourceBuilder
// przez narzędzie, takie jak ResGen lub Visual Studio.
// Aby dodać lub usunąć składową, edytuj plik ResX, a następnie ponownie uruchom narzędzie ResGen
// z opcją /str lub ponownie utwórz projekt VS.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources() {
}
/// <summary>
/// Zwraca buforowane wystąpienie ResourceManager używane przez tę klasę.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Haftmittel.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Przesłania właściwość CurrentUICulture bieżącego wątku dla wszystkich
/// przypadków przeszukiwania zasobów za pomocą tej klasy zasobów wymagającej zdefiniowania typu.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Close {
get {
object obj = ResourceManager.GetObject("Close", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gsh01 {
get {
object obj = ResourceManager.GetObject("gsh01", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gsh02 {
get {
object obj = ResourceManager.GetObject("gsh02", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gsh03 {
get {
object obj = ResourceManager.GetObject("gsh03", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gsh04 {
get {
object obj = ResourceManager.GetObject("gsh04", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gsh05 {
get {
object obj = ResourceManager.GetObject("gsh05", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gsh06 {
get {
object obj = ResourceManager.GetObject("gsh06", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gsh07 {
get {
object obj = ResourceManager.GetObject("gsh07", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gsh08 {
get {
object obj = ResourceManager.GetObject("gsh08", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap gsh09 {
get {
object obj = ResourceManager.GetObject("gsh09", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Print {
get {
object obj = ResourceManager.GetObject("Print", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Wyszukuje zlokalizowany zasób typu System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Save {
get {
object obj = ResourceManager.GetObject("Save", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
}
}

View File

@@ -0,0 +1,197 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Globalization;
using System.Text;
using System.Reflection;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.IO;
using System.Threading;
using System.Windows.Markup;
using System.Data.Odbc;
using System.Data.SqlClient;
using Haftmittel.Properties;
namespace Haftmittel
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private int tow = 0;
private int ope = 0;
private string connstr = string.Empty;
public MainWindow()
{
try
{
string[] cmd = Environment.GetCommandLineArgs();
if (cmd.Count() < 2)
{
MessageBox.Show("Za mało parametrów");
this.Close();
return;
}
if (OdczytajPlik(cmd[1]))
{
if (string.IsNullOrWhiteSpace(connstr))
{
connstr = Settings.Default.ConnectionString;
}
else
{
connstr = przerobConnectionString(connstr);
}
DataContext = new ClassHaftmittel(tow, ope, connstr);
}
else
{
this.Close();
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
Thread.CurrentThread.CurrentUICulture = new CultureInfo(Settings.Default.Language);
this.Language = XmlLanguage.GetLanguage(Thread.CurrentThread.CurrentUICulture.Name);
try
{
InitializeComponent();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
/// <summary>
/// odczytuje plik CSV wysłany z XLa
/// </summary>
/// <param name="nazwa"></param>
private bool OdczytajPlik(string nazwa)
{
try
{
StreamReader reader = File.OpenText(nazwa);
string line;
while ((line = reader.ReadLine()) != null)
{
string[] items = line.Split(';');
// pierwszy parametr to GID towaru, drugi operatora
tow = Convert.ToInt32(items[1]);
ope = Convert.ToInt32(items[2]);
for (int licz = 3; licz < items.Length - 1; licz++)
{
if (!string.IsNullOrWhiteSpace(items[licz]))
{
connstr += @items[licz] + ";";
}
}
connstr = connstr.Replace("\"", "");
}
return true;
}
catch (Exception)
{
MessageBox.Show(string.Format("Problemy z otwarciem lub zawartością pliku {0}", nazwa));
return false;
}
}
private void Image_MouseDown_1(object sender, MouseButtonEventArgs e)
{
// (DataContext as ClassHaftmittel).SDS_Obrazek1Change();
if ((sender as Image).Opacity == 1)
{
(sender as Image).Opacity = 0.2;
}
else
{
(sender as Image).Opacity = 1;
}
}
private void Button_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
if (DataContext != null)
{
if ((DataContext as ClassHaftmittel).IsChanged)
{
if (MessageBox.Show("Niezapisane dane. Zakończyć?", "Koniec", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
{
e.Cancel = false;
}
else
{
e.Cancel = true;
}
}
}
}
private void ComboBox_KeyDown(object sender, KeyEventArgs e)
{
ObservableCollection<ClassSkladnik> lc = ((sender as ComboBox).ItemsSource as ObservableCollection<ClassSkladnik>);
ClassSkladnik c = lc.Where(x => x.Kod.ToUpper().StartsWith(e.Key.ToString().Last().ToString())).FirstOrDefault();
if (c != null)
{
(sender as ComboBox).SelectedItem = c;
}
}
private string przerobConnectionString(string connstr)
{
if (!string.IsNullOrWhiteSpace(connstr))
{
var odbc = new OdbcConnectionStringBuilder(connstr);
var sql = new SqlConnectionStringBuilder()
{
DataSource = odbc["server"].ToString(),
InitialCatalog = odbc["database"].ToString(),
UserID = odbc["uid"].ToString(),
Password = odbc["pwd"].ToString(),
PersistSecurityInfo = (odbc["trusted_connection"].ToString() == "true")
};
return sql.ConnectionString;
}
else
{
throw new Exception("Problem z dostępem do bazy");
}
}
}
}

BIN
.svn/wc.db Normal file

Binary file not shown.

0
.svn/wc.db-journal Normal file
View File

8
APQP/App.xaml Normal file
View File

@@ -0,0 +1,8 @@
<Application x:Class="APQP.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

16
APQP/App.xaml.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
namespace APQP
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}

1513
APQP/ClassHaftmittel.cs Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,52 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Data;
using System.Windows.Media;
namespace Haftmittel
{
[ValueConversion(typeof(Brushes), typeof(bool))]
class ClassKonwerterNaKolory : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is bool)
{
if ((bool)value)
{
return Brushes.Red;
}
else
{
return Brushes.White;
}
}
else
{
return Brushes.White;
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is Brushes)
{
if ((value as Brush) == Brushes.Red)
{
return true;
}
else
{
return false;
}
}
else
{
return false;
}
}
}
}

View File

@@ -0,0 +1,49 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Data;
using System.Globalization;
namespace Haftmittel
{
/// <summary>
/// true na jasnozielony, false na pomarańczowy
/// </summary>
[ValueConversion(typeof(double), typeof(bool))]
public class ClassKonwerterNaProcenty: IValueConverter
{
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is bool)
{
if ((bool)value)
{
return 1;
}
else
{
return 0.2;
}
}
else
{
return 0.2;
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is double)
{
return ((double)value == 1);
}
else
{
return false;
}
}
}
}

View File

@@ -0,0 +1,38 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Globalization;
using System.Windows.Controls;
namespace Haftmittel
{
public class ClassProcentyValidationRule : ValidationRule
{
public override ValidationResult Validate(object value, CultureInfo cultureInfo)
{
decimal procent = 0;
try
{
if (((string)value).Length > 0)
{
procent = decimal.Parse((String)value);
}
}
catch (Exception)
{
return new ValidationResult(false, "Nieprawidłowe znaki");
}
if ((procent < 0) || (procent > 100))
{
return new ValidationResult(false, "Wartość powinna być z zakresu: 0 - 100");
}
else
{
return new ValidationResult(true, null);
}
}
}
}

27
APQP/ClassSkladnik.cs Normal file
View File

@@ -0,0 +1,27 @@
namespace Haftmittel
{
public class ClassSkladnik
{
private int _id = 0;
private string _kod = string.Empty;
private string _nazwa = string.Empty;
public int Id
{
get => _id;
set => _id = value;
}
public string Kod
{
get => _kod;
set => _kod = value;
}
public string Nazwa
{
get => _nazwa.Trim();
set => _nazwa = value;
}
}
}

6791
APQP/Database/DataSetLista.Designer.cs generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,14 @@
namespace Haftmittel.Database
{
public partial class DataSetLista
{
}
}
namespace Haftmittel.Database {
public partial class DataSetLista {
}
}

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!--<autogenerated>
This code was generated by a tool.
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DataSetUISetting Version="1.00" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TableUISettings />
</DataSetUISetting>

View File

@@ -0,0 +1,482 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="DataSetLista" targetNamespace="http://tempuri.org/DataSetLista.xsd" xmlns:mstns="http://tempuri.org/DataSetLista.xsd" xmlns="http://tempuri.org/DataSetLista.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:annotation>
<xs:appinfo source="urn:schemas-microsoft-com:xml-msdatasource">
<DataSource DefaultConnectionIndex="0" FunctionsComponentName="QueriesTableAdapter" Modifier="AutoLayout, AnsiClass, Class, Public" SchemaSerializationMode="IncludeSchema" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<Connections>
<Connection AppSettingsObjectName="Settings" AppSettingsPropertyName="ConnectionString" ConnectionStringObject="" IsAppSettingsProperty="true" Modifier="Assembly" Name="ConnectionString (Settings)" ParameterPrefix="@" PropertyReference="ApplicationSettings.Haftmittel.Properties.Settings.GlobalReference.Default.ConnectionString" Provider="System.Data.SqlClient" />
</Connections>
<Tables>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="ListaOldTableAdapter" GeneratorDataComponentClassName="ListaOldTableAdapter" Name="ListaOld" UserDataComponentName="ListaOldTableAdapter">
<MainSource>
<DbSource ConnectionRef="ConnectionString (Settings)" DbObjectName="CDNXL_GOTEC_80.myconsult_haftmittel.Lista" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Fill" GenerateShortCommands="true" GeneratorSourceName="Fill" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [myconsult_haftmittel].[Lista] ([hml_TwrTyp], [hml_TwrNumer], [hml_DataPowstania], [hml_DataArchiwizacji], [hml_Herstellort], [hml_SDStext], [hml_SDS1], [hml_SDS2], [hml_SDS3], [hml_SDS4], [hml_SDS5], [hml_SDS6], [hml_SDS7], [hml_SDS8], [hml_SDS9], [hml_SDS10], [hml_Schichten], [hml_Eigenschaften], [hml_Anleitung], [hml_FS_od], [hml_FS_do], [hml_Dichte], [hml_Viskositat_od], [hml_Viskositat_do], [hml_Farbe], [hml_Verdunnung], [hml_Schichtdicke_od], [hml_Schichtdicke_do], [hml_Leistung], [hml_Lagerkapazitat], [hml_Verarbeitung], [hml_Inh0_Id], [hml_Inh0_Procent], [hml_Inh0_ProcentDo], [hml_Inh1_Id], [hml_Inh1_Procent], [hml_Inh1_ProcentDo], [hml_Inh2_Id], [hml_Inh2_Procent], [hml_Inh2_ProcentDo], [hml_Inh3_Id], [hml_Inh3_Procent], [hml_Inh3_ProcentDo], [hml_Inh4_Id], [hml_Inh4_Procent], [hml_Inh4_ProcentDo], [hml_Inh5_Id], [hml_Inh5_Procent], [hml_Inh5_ProcentDo], [hml_Inh6_Id], [hml_Inh6_Procent], [hml_Inh6_ProcentDo], [hml_Inh7_Id], [hml_Inh7_Procent], [hml_Inh7_ProcentDo], [hml_Inh8_Id], [hml_Inh8_Procent], [hml_Inh8_ProcentDo], [hml_Inh9_Id], [hml_Inh9_Procent], [hml_Inh9_ProcentDo], [hml_Behelter], [hml_OpeNumer], [hml_Dichte_do], [hml_Inh10_Id], [hml_Inh11_Id], [hml_Inh12_Id], [hml_Inh13_Id], [hml_Inh14_Id], [hml_Inh15_Id], [hml_Inh16_Id], [hml_Inh17_Id], [hml_Inh18_Id], [hml_Inh19_Id], [hml_Inh10_Procent], [hml_Inh11_Procent], [hml_Inh12_Procent], [hml_Inh13_Procent], [hml_Inh14_Procent], [hml_Inh15_Procent], [hml_Inh16_Procent], [hml_Inh17_Procent], [hml_Inh18_Procent], [hml_Inh19_Procent], [hml_Inh10_ProcentDo], [hml_Inh11_ProcentDo], [hml_Inh12_ProcentDo], [hml_Inh13_ProcentDo], [hml_Inh14_ProcentDo], [hml_Inh15_ProcentDo], [hml_Inh16_ProcentDo], [hml_Inh17_ProcentDo], [hml_Inh18_ProcentDo], [hml_Inh19_ProcentDo]) VALUES (@hml_TwrTyp, @hml_TwrNumer, @hml_DataPowstania, @hml_DataArchiwizacji, @hml_Herstellort, @hml_SDStext, @hml_SDS1, @hml_SDS2, @hml_SDS3, @hml_SDS4, @hml_SDS5, @hml_SDS6, @hml_SDS7, @hml_SDS8, @hml_SDS9, @hml_SDS10, @hml_Schichten, @hml_Eigenschaften, @hml_Anleitung, @hml_FS_od, @hml_FS_do, @hml_Dichte, @hml_Viskositat_od, @hml_Viskositat_do, @hml_Farbe, @hml_Verdunnung, @hml_Schichtdicke_od, @hml_Schichtdicke_do, @hml_Leistung, @hml_Lagerkapazitat, @hml_Verarbeitung, @hml_Inh0_Id, @hml_Inh0_Procent, @hml_Inh0_ProcentDo, @hml_Inh1_Id, @hml_Inh1_Procent, @hml_Inh1_ProcentDo, @hml_Inh2_Id, @hml_Inh2_Procent, @hml_Inh2_ProcentDo, @hml_Inh3_Id, @hml_Inh3_Procent, @hml_Inh3_ProcentDo, @hml_Inh4_Id, @hml_Inh4_Procent, @hml_Inh4_ProcentDo, @hml_Inh5_Id, @hml_Inh5_Procent, @hml_Inh5_ProcentDo, @hml_Inh6_Id, @hml_Inh6_Procent, @hml_Inh6_ProcentDo, @hml_Inh7_Id, @hml_Inh7_Procent, @hml_Inh7_ProcentDo, @hml_Inh8_Id, @hml_Inh8_Procent, @hml_Inh8_ProcentDo, @hml_Inh9_Id, @hml_Inh9_Procent, @hml_Inh9_ProcentDo, @hml_Behelter, @hml_OpeNumer, @hml_Dichte_do, @hml_Inh10_Id, @hml_Inh11_Id, @hml_Inh12_Id, @hml_Inh13_Id, @hml_Inh14_Id, @hml_Inh15_Id, @hml_Inh16_Id, @hml_Inh17_Id, @hml_Inh18_Id, @hml_Inh19_Id, @hml_Inh10_Procent, @hml_Inh11_Procent, @hml_Inh12_Procent, @hml_Inh13_Procent, @hml_Inh14_Procent, @hml_Inh15_Procent, @hml_Inh16_Procent, @hml_Inh17_Procent, @hml_Inh18_Procent, @hml_Inh19_Procent, @hml_Inh10_ProcentDo, @hml_Inh11_ProcentDo, @hml_Inh12_ProcentDo, @hml_Inh13_ProcentDo, @hml_Inh14_ProcentDo, @hml_Inh15_ProcentDo, @hml_Inh16_ProcentDo, @hml_Inh17_ProcentDo, @hml_Inh18_ProcentDo, @hml_Inh19_ProcentDo)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int16" Direction="Input" ParameterName="@hml_TwrTyp" Precision="0" ProviderType="SmallInt" Scale="0" Size="0" SourceColumn="hml_TwrTyp" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_TwrNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@hml_DataPowstania" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="hml_DataPowstania" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@hml_DataArchiwizacji" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="hml_DataArchiwizacji" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Herstellort" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Herstellort" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_SDStext" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_SDStext" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS1" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS2" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS3" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS3" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS4" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS5" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS5" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS6" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS6" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS7" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS7" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS8" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS9" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS9" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Boolean" Direction="Input" ParameterName="@hml_SDS10" Precision="0" ProviderType="Bit" Scale="0" Size="0" SourceColumn="hml_SDS10" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Schichten" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Schichten" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Eigenschaften" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Eigenschaften" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Anleitung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Anleitung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_FS_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_FS_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_FS_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_FS_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Dichte" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Dichte" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Viskositat_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Viskositat_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Viskositat_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Viskositat_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Farbe" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Farbe" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Verdunnung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Verdunnung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Schichtdicke_od" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Schichtdicke_od" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Schichtdicke_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Schichtdicke_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Leistung" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Leistung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Lagerkapazitat" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Lagerkapazitat" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Verarbeitung" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Verarbeitung" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh0_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh0_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh0_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh0_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh0_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh0_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh1_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh1_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh1_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh1_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh1_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh1_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh2_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh2_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh2_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh2_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh2_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh2_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh3_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh3_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh3_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh3_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh3_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh3_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh4_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh4_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh4_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh4_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh4_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh4_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh5_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh5_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh5_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh5_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh5_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh5_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh6_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh6_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh6_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh6_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh6_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh6_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh7_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh7_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh7_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh7_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh7_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh7_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh8_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh8_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh8_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh8_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh8_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh8_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh9_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh9_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh9_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh9_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh9_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh9_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@hml_Behelter" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="hml_Behelter" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_OpeNumer" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_OpeNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Dichte_do" Precision="15" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Dichte_do" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh10_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh10_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh11_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh11_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh12_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh12_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh13_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh13_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh14_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh14_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh15_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh15_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh16_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh16_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh17_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh17_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh18_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh18_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@hml_Inh19_Id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="hml_Inh19_Id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh10_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh10_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh11_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh11_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh12_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh12_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh13_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh13_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh14_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh14_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh15_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh15_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh16_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh16_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh17_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh17_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh18_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh18_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh19_Procent" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh19_Procent" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh10_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh10_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh11_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh11_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh12_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh12_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh13_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh13_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh14_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh14_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh15_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh15_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh16_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh16_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh17_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh17_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh18_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh18_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@hml_Inh19_ProcentDo" Precision="18" ProviderType="Decimal" Scale="4" Size="0" SourceColumn="hml_Inh19_ProcentDo" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT *
, COALESCE(CDN.NazwaObiektu(128, hml_OpeNumer, 0, 2), '') AS Ope_Ident
FROM myconsult_haftmittel.Lista
WHERE hml_TwrNumer = @TwrNumer
ORDER BY hml_DataPowstania</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="TwrNumer" ColumnName="hml_TwrNumer" DataSourceName="CDNXL_GOTEC_80.myconsult_haftmittel.Lista" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="hml_TwrNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="hml_TwrTyp" DataSetColumn="hml_TwrTyp" />
<Mapping SourceColumn="hml_TwrNumer" DataSetColumn="hml_TwrNumer" />
<Mapping SourceColumn="hml_DataPowstania" DataSetColumn="hml_DataPowstania" />
<Mapping SourceColumn="hml_DataArchiwizacji" DataSetColumn="hml_DataArchiwizacji" />
<Mapping SourceColumn="hml_Herstellort" DataSetColumn="hml_Herstellort" />
<Mapping SourceColumn="hml_SDStext" DataSetColumn="hml_SDStext" />
<Mapping SourceColumn="hml_SDS1" DataSetColumn="hml_SDS1" />
<Mapping SourceColumn="hml_SDS2" DataSetColumn="hml_SDS2" />
<Mapping SourceColumn="hml_SDS3" DataSetColumn="hml_SDS3" />
<Mapping SourceColumn="hml_SDS4" DataSetColumn="hml_SDS4" />
<Mapping SourceColumn="hml_SDS5" DataSetColumn="hml_SDS5" />
<Mapping SourceColumn="hml_SDS6" DataSetColumn="hml_SDS6" />
<Mapping SourceColumn="hml_SDS7" DataSetColumn="hml_SDS7" />
<Mapping SourceColumn="hml_SDS8" DataSetColumn="hml_SDS8" />
<Mapping SourceColumn="hml_SDS9" DataSetColumn="hml_SDS9" />
<Mapping SourceColumn="hml_SDS10" DataSetColumn="hml_SDS10" />
<Mapping SourceColumn="hml_Schichten" DataSetColumn="hml_Schichten" />
<Mapping SourceColumn="hml_Eigenschaften" DataSetColumn="hml_Eigenschaften" />
<Mapping SourceColumn="hml_Anleitung" DataSetColumn="hml_Anleitung" />
<Mapping SourceColumn="hml_FS_od" DataSetColumn="hml_FS_od" />
<Mapping SourceColumn="hml_FS_do" DataSetColumn="hml_FS_do" />
<Mapping SourceColumn="hml_Dichte" DataSetColumn="hml_Dichte" />
<Mapping SourceColumn="hml_Viskositat_od" DataSetColumn="hml_Viskositat_od" />
<Mapping SourceColumn="hml_Viskositat_do" DataSetColumn="hml_Viskositat_do" />
<Mapping SourceColumn="hml_Farbe" DataSetColumn="hml_Farbe" />
<Mapping SourceColumn="hml_Verdunnung" DataSetColumn="hml_Verdunnung" />
<Mapping SourceColumn="hml_Schichtdicke_od" DataSetColumn="hml_Schichtdicke_od" />
<Mapping SourceColumn="hml_Schichtdicke_do" DataSetColumn="hml_Schichtdicke_do" />
<Mapping SourceColumn="hml_Leistung" DataSetColumn="hml_Leistung" />
<Mapping SourceColumn="hml_Lagerkapazitat" DataSetColumn="hml_Lagerkapazitat" />
<Mapping SourceColumn="hml_Verarbeitung" DataSetColumn="hml_Verarbeitung" />
<Mapping SourceColumn="hml_Inh0_Id" DataSetColumn="hml_Inh0_Id" />
<Mapping SourceColumn="hml_Inh0_Procent" DataSetColumn="hml_Inh0_Procent" />
<Mapping SourceColumn="hml_Inh0_ProcentDo" DataSetColumn="hml_Inh0_ProcentDo" />
<Mapping SourceColumn="hml_Inh1_Id" DataSetColumn="hml_Inh1_Id" />
<Mapping SourceColumn="hml_Inh1_Procent" DataSetColumn="hml_Inh1_Procent" />
<Mapping SourceColumn="hml_Inh1_ProcentDo" DataSetColumn="hml_Inh1_ProcentDo" />
<Mapping SourceColumn="hml_Inh2_Id" DataSetColumn="hml_Inh2_Id" />
<Mapping SourceColumn="hml_Inh2_Procent" DataSetColumn="hml_Inh2_Procent" />
<Mapping SourceColumn="hml_Inh2_ProcentDo" DataSetColumn="hml_Inh2_ProcentDo" />
<Mapping SourceColumn="hml_Inh3_Id" DataSetColumn="hml_Inh3_Id" />
<Mapping SourceColumn="hml_Inh3_Procent" DataSetColumn="hml_Inh3_Procent" />
<Mapping SourceColumn="hml_Inh3_ProcentDo" DataSetColumn="hml_Inh3_ProcentDo" />
<Mapping SourceColumn="hml_Inh4_Id" DataSetColumn="hml_Inh4_Id" />
<Mapping SourceColumn="hml_Inh4_Procent" DataSetColumn="hml_Inh4_Procent" />
<Mapping SourceColumn="hml_Inh4_ProcentDo" DataSetColumn="hml_Inh4_ProcentDo" />
<Mapping SourceColumn="hml_Inh5_Id" DataSetColumn="hml_Inh5_Id" />
<Mapping SourceColumn="hml_Inh5_Procent" DataSetColumn="hml_Inh5_Procent" />
<Mapping SourceColumn="hml_Inh5_ProcentDo" DataSetColumn="hml_Inh5_ProcentDo" />
<Mapping SourceColumn="hml_Inh6_Id" DataSetColumn="hml_Inh6_Id" />
<Mapping SourceColumn="hml_Inh6_Procent" DataSetColumn="hml_Inh6_Procent" />
<Mapping SourceColumn="hml_Inh6_ProcentDo" DataSetColumn="hml_Inh6_ProcentDo" />
<Mapping SourceColumn="hml_Inh7_Id" DataSetColumn="hml_Inh7_Id" />
<Mapping SourceColumn="hml_Inh7_Procent" DataSetColumn="hml_Inh7_Procent" />
<Mapping SourceColumn="hml_Inh7_ProcentDo" DataSetColumn="hml_Inh7_ProcentDo" />
<Mapping SourceColumn="hml_Inh8_Id" DataSetColumn="hml_Inh8_Id" />
<Mapping SourceColumn="hml_Inh8_Procent" DataSetColumn="hml_Inh8_Procent" />
<Mapping SourceColumn="hml_Inh8_ProcentDo" DataSetColumn="hml_Inh8_ProcentDo" />
<Mapping SourceColumn="hml_Inh9_Id" DataSetColumn="hml_Inh9_Id" />
<Mapping SourceColumn="hml_Inh9_Procent" DataSetColumn="hml_Inh9_Procent" />
<Mapping SourceColumn="hml_Inh9_ProcentDo" DataSetColumn="hml_Inh9_ProcentDo" />
<Mapping SourceColumn="hml_Behelter" DataSetColumn="hml_Behelter" />
<Mapping SourceColumn="hml_OpeNumer" DataSetColumn="hml_OpeNumer" />
<Mapping SourceColumn="Ope_Ident" DataSetColumn="Ope_Ident" />
<Mapping SourceColumn="hml_Dichte_do" DataSetColumn="hml_Dichte_do" />
<Mapping SourceColumn="hml_Inh10_Id" DataSetColumn="hml_Inh10_Id" />
<Mapping SourceColumn="hml_Inh11_Id" DataSetColumn="hml_Inh11_Id" />
<Mapping SourceColumn="hml_Inh12_Id" DataSetColumn="hml_Inh12_Id" />
<Mapping SourceColumn="hml_Inh13_Id" DataSetColumn="hml_Inh13_Id" />
<Mapping SourceColumn="hml_Inh14_Id" DataSetColumn="hml_Inh14_Id" />
<Mapping SourceColumn="hml_Inh15_Id" DataSetColumn="hml_Inh15_Id" />
<Mapping SourceColumn="hml_Inh16_Id" DataSetColumn="hml_Inh16_Id" />
<Mapping SourceColumn="hml_Inh17_Id" DataSetColumn="hml_Inh17_Id" />
<Mapping SourceColumn="hml_Inh18_Id" DataSetColumn="hml_Inh18_Id" />
<Mapping SourceColumn="hml_Inh19_Id" DataSetColumn="hml_Inh19_Id" />
<Mapping SourceColumn="hml_Inh10_Procent" DataSetColumn="hml_Inh10_Procent" />
<Mapping SourceColumn="hml_Inh11_Procent" DataSetColumn="hml_Inh11_Procent" />
<Mapping SourceColumn="hml_Inh12_Procent" DataSetColumn="hml_Inh12_Procent" />
<Mapping SourceColumn="hml_Inh13_Procent" DataSetColumn="hml_Inh13_Procent" />
<Mapping SourceColumn="hml_Inh14_Procent" DataSetColumn="hml_Inh14_Procent" />
<Mapping SourceColumn="hml_Inh15_Procent" DataSetColumn="hml_Inh15_Procent" />
<Mapping SourceColumn="hml_Inh16_Procent" DataSetColumn="hml_Inh16_Procent" />
<Mapping SourceColumn="hml_Inh17_Procent" DataSetColumn="hml_Inh17_Procent" />
<Mapping SourceColumn="hml_Inh18_Procent" DataSetColumn="hml_Inh18_Procent" />
<Mapping SourceColumn="hml_Inh19_Procent" DataSetColumn="hml_Inh19_Procent" />
<Mapping SourceColumn="hml_Inh10_ProcentDo" DataSetColumn="hml_Inh10_ProcentDo" />
<Mapping SourceColumn="hml_Inh11_ProcentDo" DataSetColumn="hml_Inh11_ProcentDo" />
<Mapping SourceColumn="hml_Inh12_ProcentDo" DataSetColumn="hml_Inh12_ProcentDo" />
<Mapping SourceColumn="hml_Inh13_ProcentDo" DataSetColumn="hml_Inh13_ProcentDo" />
<Mapping SourceColumn="hml_Inh14_ProcentDo" DataSetColumn="hml_Inh14_ProcentDo" />
<Mapping SourceColumn="hml_Inh15_ProcentDo" DataSetColumn="hml_Inh15_ProcentDo" />
<Mapping SourceColumn="hml_Inh16_ProcentDo" DataSetColumn="hml_Inh16_ProcentDo" />
<Mapping SourceColumn="hml_Inh17_ProcentDo" DataSetColumn="hml_Inh17_ProcentDo" />
<Mapping SourceColumn="hml_Inh18_ProcentDo" DataSetColumn="hml_Inh18_ProcentDo" />
<Mapping SourceColumn="hml_Inh19_ProcentDo" DataSetColumn="hml_Inh19_ProcentDo" />
</Mappings>
<Sources />
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="DaneTowaruTableAdapter" GeneratorDataComponentClassName="DaneTowaruTableAdapter" Name="DaneTowaru" UserDataComponentName="DaneTowaruTableAdapter">
<MainSource>
<DbSource ConnectionRef="ConnectionString (Settings)" DbObjectName="CDNXL_GOTEC_80.CDN.TwrKarty" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Fill" GenerateShortCommands="false" GeneratorSourceName="Fill" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT Twr_Kod, Twr_Nazwa, Twr_Jm,
CDN.NazwaObiektu(TWD_KntTyp, TWD_KntNumer, 0, 4) AS Dostawca,
coalesce(TwD_Cena, 0) AS TwD_Cena,
coalesce(TwD_Waluta,'') AS TwD_Waluta,
coalesce(TwJ_JmZ+ ' ' + cast(cast(TwJ_PrzeliczL / TwJ_PrzeliczM as decimal(15,2)) as varchar) + ' ' + Twr_Jm,'') AS TwJ_JmZ
FROM CDN.TwrKarty LEFT OUTER JOIN
CDN.TwrDost ON TWD_TwrTyp = Twr_GIDTyp AND TWD_TwrNumer = Twr_GIDNumer AND
TWD_TwrLp = Twr_DstDomyslny AND TWD_KlasaKnt = 8
LEFT OUTER JOIN CDN.TwrJm ON TwJ_TwrTyp = Twr_GIDTyp AND TwJ_TwrNumer = Twr_GIDNumer
AND TwJ_TwrLp = Twr_JmDomyslnaZak
WHERE Twr_GIDNumer = @TwrNumer</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="TwrNumer" ColumnName="Twr_GIDNumer" DataSourceName="CDNXL_GOTEC_80.CDN.TwrKarty" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@TwrNumer" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="Twr_GIDNumer" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="Twr_Kod" DataSetColumn="Twr_Kod" />
<Mapping SourceColumn="Twr_Nazwa" DataSetColumn="Twr_Nazwa" />
<Mapping SourceColumn="Twr_Jm" DataSetColumn="Twr_Jm" />
<Mapping SourceColumn="Dostawca" DataSetColumn="Dostawca" />
<Mapping SourceColumn="TwD_Cena" DataSetColumn="TwD_Cena" />
<Mapping SourceColumn="TwD_Waluta" DataSetColumn="TwD_Waluta" />
<Mapping SourceColumn="TwJ_JmZ" DataSetColumn="TwJ_JmZ" />
</Mappings>
<Sources />
</TableAdapter>
</Tables>
<Sources />
</DataSource>
</xs:appinfo>
</xs:annotation>
<xs:element name="DataSetLista" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DataSetLista" msprop:Generator_UserDSName="DataSetLista">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="ListaOld" msprop:Generator_TableClassName="ListaOldDataTable" msprop:Generator_TableVarName="tableListaOld" msprop:Generator_RowChangedName="ListaOldRowChanged" msprop:Generator_TablePropName="ListaOld" msprop:Generator_RowDeletingName="ListaOldRowDeleting" msprop:Generator_RowChangingName="ListaOldRowChanging" msprop:Generator_RowEvHandlerName="ListaOldRowChangeEventHandler" msprop:Generator_RowDeletedName="ListaOldRowDeleted" msprop:Generator_RowClassName="ListaOldRow" msprop:Generator_UserTableName="ListaOld" msprop:Generator_RowEvArgName="ListaOldRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="hml_TwrTyp" msprop:Generator_ColumnVarNameInTable="columnhml_TwrTyp" msprop:Generator_ColumnPropNameInRow="hml_TwrTyp" msprop:Generator_ColumnPropNameInTable="hml_TwrTypColumn" msprop:Generator_UserColumnName="hml_TwrTyp" type="xs:short" />
<xs:element name="hml_TwrNumer" msprop:Generator_ColumnVarNameInTable="columnhml_TwrNumer" msprop:Generator_ColumnPropNameInRow="hml_TwrNumer" msprop:Generator_ColumnPropNameInTable="hml_TwrNumerColumn" msprop:Generator_UserColumnName="hml_TwrNumer" type="xs:int" />
<xs:element name="hml_DataPowstania" msprop:Generator_ColumnVarNameInTable="columnhml_DataPowstania" msprop:Generator_ColumnPropNameInRow="hml_DataPowstania" msprop:Generator_ColumnPropNameInTable="hml_DataPowstaniaColumn" msprop:Generator_UserColumnName="hml_DataPowstania" type="xs:dateTime" minOccurs="0" />
<xs:element name="hml_DataArchiwizacji" msprop:Generator_ColumnVarNameInTable="columnhml_DataArchiwizacji" msprop:Generator_ColumnPropNameInRow="hml_DataArchiwizacji" msprop:Generator_ColumnPropNameInTable="hml_DataArchiwizacjiColumn" msprop:Generator_UserColumnName="hml_DataArchiwizacji" type="xs:dateTime" minOccurs="0" />
<xs:element name="hml_Herstellort" msprop:Generator_ColumnVarNameInTable="columnhml_Herstellort" msprop:Generator_ColumnPropNameInRow="hml_Herstellort" msprop:Generator_ColumnPropNameInTable="hml_HerstellortColumn" msprop:Generator_UserColumnName="hml_Herstellort" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_SDStext" msprop:Generator_ColumnVarNameInTable="columnhml_SDStext" msprop:Generator_ColumnPropNameInRow="hml_SDStext" msprop:Generator_ColumnPropNameInTable="hml_SDStextColumn" msprop:Generator_UserColumnName="hml_SDStext" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_SDS1" msprop:Generator_ColumnVarNameInTable="columnhml_SDS1" msprop:Generator_ColumnPropNameInRow="hml_SDS1" msprop:Generator_ColumnPropNameInTable="hml_SDS1Column" msprop:Generator_UserColumnName="hml_SDS1" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS2" msprop:Generator_ColumnVarNameInTable="columnhml_SDS2" msprop:Generator_ColumnPropNameInRow="hml_SDS2" msprop:Generator_ColumnPropNameInTable="hml_SDS2Column" msprop:Generator_UserColumnName="hml_SDS2" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS3" msprop:Generator_ColumnVarNameInTable="columnhml_SDS3" msprop:Generator_ColumnPropNameInRow="hml_SDS3" msprop:Generator_ColumnPropNameInTable="hml_SDS3Column" msprop:Generator_UserColumnName="hml_SDS3" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS4" msprop:Generator_ColumnVarNameInTable="columnhml_SDS4" msprop:Generator_ColumnPropNameInRow="hml_SDS4" msprop:Generator_ColumnPropNameInTable="hml_SDS4Column" msprop:Generator_UserColumnName="hml_SDS4" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS5" msprop:Generator_ColumnVarNameInTable="columnhml_SDS5" msprop:Generator_ColumnPropNameInRow="hml_SDS5" msprop:Generator_ColumnPropNameInTable="hml_SDS5Column" msprop:Generator_UserColumnName="hml_SDS5" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS6" msprop:Generator_ColumnVarNameInTable="columnhml_SDS6" msprop:Generator_ColumnPropNameInRow="hml_SDS6" msprop:Generator_ColumnPropNameInTable="hml_SDS6Column" msprop:Generator_UserColumnName="hml_SDS6" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS7" msprop:Generator_ColumnVarNameInTable="columnhml_SDS7" msprop:Generator_ColumnPropNameInRow="hml_SDS7" msprop:Generator_ColumnPropNameInTable="hml_SDS7Column" msprop:Generator_UserColumnName="hml_SDS7" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS8" msprop:Generator_ColumnVarNameInTable="columnhml_SDS8" msprop:Generator_ColumnPropNameInRow="hml_SDS8" msprop:Generator_ColumnPropNameInTable="hml_SDS8Column" msprop:Generator_UserColumnName="hml_SDS8" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS9" msprop:Generator_ColumnVarNameInTable="columnhml_SDS9" msprop:Generator_ColumnPropNameInRow="hml_SDS9" msprop:Generator_ColumnPropNameInTable="hml_SDS9Column" msprop:Generator_UserColumnName="hml_SDS9" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_SDS10" msprop:Generator_ColumnVarNameInTable="columnhml_SDS10" msprop:Generator_ColumnPropNameInRow="hml_SDS10" msprop:Generator_ColumnPropNameInTable="hml_SDS10Column" msprop:Generator_UserColumnName="hml_SDS10" type="xs:boolean" minOccurs="0" />
<xs:element name="hml_Schichten" msprop:Generator_ColumnVarNameInTable="columnhml_Schichten" msprop:Generator_ColumnPropNameInRow="hml_Schichten" msprop:Generator_ColumnPropNameInTable="hml_SchichtenColumn" msprop:Generator_UserColumnName="hml_Schichten" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Eigenschaften" msprop:Generator_ColumnVarNameInTable="columnhml_Eigenschaften" msprop:Generator_ColumnPropNameInRow="hml_Eigenschaften" msprop:Generator_ColumnPropNameInTable="hml_EigenschaftenColumn" msprop:Generator_UserColumnName="hml_Eigenschaften" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Anleitung" msprop:Generator_ColumnVarNameInTable="columnhml_Anleitung" msprop:Generator_ColumnPropNameInRow="hml_Anleitung" msprop:Generator_ColumnPropNameInTable="hml_AnleitungColumn" msprop:Generator_UserColumnName="hml_Anleitung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_FS_od" msprop:Generator_ColumnVarNameInTable="columnhml_FS_od" msprop:Generator_ColumnPropNameInRow="hml_FS_od" msprop:Generator_ColumnPropNameInTable="hml_FS_odColumn" msprop:Generator_UserColumnName="hml_FS_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_FS_do" msprop:Generator_ColumnVarNameInTable="columnhml_FS_do" msprop:Generator_ColumnPropNameInRow="hml_FS_do" msprop:Generator_ColumnPropNameInTable="hml_FS_doColumn" msprop:Generator_UserColumnName="hml_FS_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Dichte" msprop:Generator_ColumnVarNameInTable="columnhml_Dichte" msprop:Generator_ColumnPropNameInRow="hml_Dichte" msprop:Generator_ColumnPropNameInTable="hml_DichteColumn" msprop:Generator_UserColumnName="hml_Dichte" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Viskositat_od" msprop:Generator_ColumnVarNameInTable="columnhml_Viskositat_od" msprop:Generator_ColumnPropNameInRow="hml_Viskositat_od" msprop:Generator_ColumnPropNameInTable="hml_Viskositat_odColumn" msprop:Generator_UserColumnName="hml_Viskositat_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Viskositat_do" msprop:Generator_ColumnVarNameInTable="columnhml_Viskositat_do" msprop:Generator_ColumnPropNameInRow="hml_Viskositat_do" msprop:Generator_ColumnPropNameInTable="hml_Viskositat_doColumn" msprop:Generator_UserColumnName="hml_Viskositat_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Farbe" msprop:Generator_ColumnVarNameInTable="columnhml_Farbe" msprop:Generator_ColumnPropNameInRow="hml_Farbe" msprop:Generator_ColumnPropNameInTable="hml_FarbeColumn" msprop:Generator_UserColumnName="hml_Farbe" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Verdunnung" msprop:Generator_ColumnVarNameInTable="columnhml_Verdunnung" msprop:Generator_ColumnPropNameInRow="hml_Verdunnung" msprop:Generator_ColumnPropNameInTable="hml_VerdunnungColumn" msprop:Generator_UserColumnName="hml_Verdunnung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Schichtdicke_od" msprop:Generator_ColumnVarNameInTable="columnhml_Schichtdicke_od" msprop:Generator_ColumnPropNameInRow="hml_Schichtdicke_od" msprop:Generator_ColumnPropNameInTable="hml_Schichtdicke_odColumn" msprop:Generator_UserColumnName="hml_Schichtdicke_od" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Schichtdicke_do" msprop:Generator_ColumnVarNameInTable="columnhml_Schichtdicke_do" msprop:Generator_ColumnPropNameInRow="hml_Schichtdicke_do" msprop:Generator_ColumnPropNameInTable="hml_Schichtdicke_doColumn" msprop:Generator_UserColumnName="hml_Schichtdicke_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Leistung" msprop:Generator_ColumnVarNameInTable="columnhml_Leistung" msprop:Generator_ColumnPropNameInRow="hml_Leistung" msprop:Generator_ColumnPropNameInTable="hml_LeistungColumn" msprop:Generator_UserColumnName="hml_Leistung" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Lagerkapazitat" msprop:Generator_ColumnVarNameInTable="columnhml_Lagerkapazitat" msprop:Generator_ColumnPropNameInRow="hml_Lagerkapazitat" msprop:Generator_ColumnPropNameInTable="hml_LagerkapazitatColumn" msprop:Generator_UserColumnName="hml_Lagerkapazitat" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Verarbeitung" msprop:Generator_ColumnVarNameInTable="columnhml_Verarbeitung" msprop:Generator_ColumnPropNameInRow="hml_Verarbeitung" msprop:Generator_ColumnPropNameInTable="hml_VerarbeitungColumn" msprop:Generator_UserColumnName="hml_Verarbeitung" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Inh0_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh0_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh0_IdColumn" msprop:Generator_UserColumnName="hml_Inh0_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh0_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh0_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh0_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh0_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh0_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh0_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh0_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh0_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh0_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh1_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh1_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh1_IdColumn" msprop:Generator_UserColumnName="hml_Inh1_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh1_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh1_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh1_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh1_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh1_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh1_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh1_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh1_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh1_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh2_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh2_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh2_IdColumn" msprop:Generator_UserColumnName="hml_Inh2_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh2_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh2_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh2_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh2_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh2_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh2_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh2_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh2_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh2_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh3_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh3_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh3_IdColumn" msprop:Generator_UserColumnName="hml_Inh3_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh3_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh3_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh3_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh3_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh3_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh3_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh3_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh3_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh3_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh4_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh4_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh4_IdColumn" msprop:Generator_UserColumnName="hml_Inh4_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh4_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh4_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh4_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh4_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh4_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh4_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh4_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh4_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh4_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh5_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh5_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh5_IdColumn" msprop:Generator_UserColumnName="hml_Inh5_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh5_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh5_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh5_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh5_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh5_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh5_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh5_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh5_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh5_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh6_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh6_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh6_IdColumn" msprop:Generator_UserColumnName="hml_Inh6_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh6_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh6_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh6_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh6_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh6_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh6_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh6_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh6_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh6_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh7_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh7_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh7_IdColumn" msprop:Generator_UserColumnName="hml_Inh7_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh7_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh7_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh7_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh7_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh7_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh7_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh7_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh7_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh7_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh8_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh8_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh8_IdColumn" msprop:Generator_UserColumnName="hml_Inh8_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh8_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh8_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh8_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh8_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh8_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh8_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh8_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh8_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh8_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh9_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh9_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh9_IdColumn" msprop:Generator_UserColumnName="hml_Inh9_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh9_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh9_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh9_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh9_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh9_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh9_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh9_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh9_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh9_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Behelter" msprop:Generator_ColumnVarNameInTable="columnhml_Behelter" msprop:Generator_ColumnPropNameInRow="hml_Behelter" msprop:Generator_ColumnPropNameInTable="hml_BehelterColumn" msprop:Generator_UserColumnName="hml_Behelter" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_OpeNumer" msprop:Generator_ColumnVarNameInTable="columnhml_OpeNumer" msprop:Generator_ColumnPropNameInRow="hml_OpeNumer" msprop:Generator_ColumnPropNameInTable="hml_OpeNumerColumn" msprop:Generator_UserColumnName="hml_OpeNumer" type="xs:int" minOccurs="0" />
<xs:element name="Ope_Ident" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnOpe_Ident" msprop:Generator_ColumnPropNameInRow="Ope_Ident" msprop:Generator_ColumnPropNameInTable="Ope_IdentColumn" msprop:Generator_UserColumnName="Ope_Ident" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1024" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hml_Dichte_do" msprop:Generator_ColumnVarNameInTable="columnhml_Dichte_do" msprop:Generator_ColumnPropNameInRow="hml_Dichte_do" msprop:Generator_ColumnPropNameInTable="hml_Dichte_doColumn" msprop:Generator_UserColumnName="hml_Dichte_do" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh10_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh10_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh10_IdColumn" msprop:Generator_UserColumnName="hml_Inh10_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh11_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh11_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh11_IdColumn" msprop:Generator_UserColumnName="hml_Inh11_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh12_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh12_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh12_IdColumn" msprop:Generator_UserColumnName="hml_Inh12_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh13_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh13_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh13_IdColumn" msprop:Generator_UserColumnName="hml_Inh13_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh14_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh14_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh14_IdColumn" msprop:Generator_UserColumnName="hml_Inh14_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh15_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh15_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh15_IdColumn" msprop:Generator_UserColumnName="hml_Inh15_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh16_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh16_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh16_IdColumn" msprop:Generator_UserColumnName="hml_Inh16_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh17_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh17_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh17_IdColumn" msprop:Generator_UserColumnName="hml_Inh17_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh18_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh18_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh18_IdColumn" msprop:Generator_UserColumnName="hml_Inh18_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh19_Id" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_Id" msprop:Generator_ColumnPropNameInRow="hml_Inh19_Id" msprop:Generator_ColumnPropNameInTable="hml_Inh19_IdColumn" msprop:Generator_UserColumnName="hml_Inh19_Id" type="xs:int" minOccurs="0" />
<xs:element name="hml_Inh10_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh10_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh10_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh10_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh11_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh11_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh11_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh11_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh12_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh12_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh12_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh12_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh13_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh13_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh13_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh13_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh14_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh14_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh14_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh14_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh15_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh15_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh15_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh15_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh16_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh16_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh16_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh16_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh17_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh17_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh17_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh17_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh18_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh18_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh18_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh18_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh19_Procent" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_Procent" msprop:Generator_ColumnPropNameInRow="hml_Inh19_Procent" msprop:Generator_ColumnPropNameInTable="hml_Inh19_ProcentColumn" msprop:Generator_UserColumnName="hml_Inh19_Procent" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh10_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh10_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh10_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh10_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh10_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh11_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh11_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh11_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh11_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh11_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh12_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh12_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh12_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh12_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh12_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh13_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh13_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh13_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh13_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh13_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh14_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh14_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh14_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh14_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh14_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh15_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh15_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh15_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh15_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh15_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh16_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh16_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh16_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh16_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh16_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh17_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh17_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh17_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh17_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh17_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh18_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh18_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh18_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh18_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh18_ProcentDo" type="xs:decimal" minOccurs="0" />
<xs:element name="hml_Inh19_ProcentDo" msprop:Generator_ColumnVarNameInTable="columnhml_Inh19_ProcentDo" msprop:Generator_ColumnPropNameInRow="hml_Inh19_ProcentDo" msprop:Generator_ColumnPropNameInTable="hml_Inh19_ProcentDoColumn" msprop:Generator_UserColumnName="hml_Inh19_ProcentDo" type="xs:decimal" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DaneTowaru" msprop:Generator_TableClassName="DaneTowaruDataTable" msprop:Generator_TableVarName="tableDaneTowaru" msprop:Generator_TablePropName="DaneTowaru" msprop:Generator_RowDeletingName="DaneTowaruRowDeleting" msprop:Generator_RowChangingName="DaneTowaruRowChanging" msprop:Generator_RowEvHandlerName="DaneTowaruRowChangeEventHandler" msprop:Generator_RowDeletedName="DaneTowaruRowDeleted" msprop:Generator_UserTableName="DaneTowaru" msprop:Generator_RowChangedName="DaneTowaruRowChanged" msprop:Generator_RowEvArgName="DaneTowaruRowChangeEvent" msprop:Generator_RowClassName="DaneTowaruRow">
<xs:complexType>
<xs:sequence>
<xs:element name="Twr_Kod" msprop:Generator_ColumnVarNameInTable="columnTwr_Kod" msprop:Generator_ColumnPropNameInRow="Twr_Kod" msprop:Generator_ColumnPropNameInTable="Twr_KodColumn" msprop:Generator_UserColumnName="Twr_Kod" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Twr_Nazwa" msprop:Generator_ColumnVarNameInTable="columnTwr_Nazwa" msprop:Generator_ColumnPropNameInRow="Twr_Nazwa" msprop:Generator_ColumnPropNameInTable="Twr_NazwaColumn" msprop:Generator_UserColumnName="Twr_Nazwa" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="255" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Twr_Jm" msprop:Generator_ColumnVarNameInTable="columnTwr_Jm" msprop:Generator_ColumnPropNameInRow="Twr_Jm" msprop:Generator_ColumnPropNameInTable="Twr_JmColumn" msprop:Generator_UserColumnName="Twr_Jm" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="8" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Dostawca" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDostawca" msprop:Generator_ColumnPropNameInRow="Dostawca" msprop:Generator_ColumnPropNameInTable="DostawcaColumn" msprop:Generator_UserColumnName="Dostawca" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="1024" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TwD_Cena" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTwD_Cena" msprop:Generator_ColumnPropNameInRow="TwD_Cena" msprop:Generator_ColumnPropNameInTable="TwD_CenaColumn" msprop:Generator_UserColumnName="TwD_Cena" type="xs:decimal" minOccurs="0" />
<xs:element name="TwD_Waluta" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTwD_Waluta" msprop:Generator_ColumnPropNameInRow="TwD_Waluta" msprop:Generator_ColumnPropNameInTable="TwD_WalutaColumn" msprop:Generator_UserColumnName="TwD_Waluta" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="3" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="TwJ_JmZ" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTwJ_JmZ" msprop:Generator_ColumnPropNameInRow="TwJ_JmZ" msprop:Generator_ColumnPropNameInTable="TwJ_JmZColumn" msprop:Generator_UserColumnName="TwJ_JmZ" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="48" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--<autogenerated>
This code was generated by a tool to store the dataset designer's layout information.
Changes to this file may cause incorrect behavior and will be lost if
the code is regenerated.
</autogenerated>-->
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="0" ViewPortY="57" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:ListaOld" ZOrder="1" X="19" Y="67" Height="305" Width="171" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:DaneTowaru" ZOrder="2" X="290" Y="72" Height="210" Width="218" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
</Shapes>
<Connectors />
</DiagramLayout>

Some files were not shown because too many files have changed in this diff Show More