Index: branches/ReklamaReorganizacja/BazaReklam/FacturesFormNew.cs
===================================================================
--- branches/ReklamaReorganizacja/BazaReklam/FacturesFormNew.cs (revision 640)
+++ branches/ReklamaReorganizacja/BazaReklam/FacturesFormNew.cs (revision 640)
@@ -0,0 +1,370 @@
+using System;
+using System.ComponentModel;
+using System.Data;
+using System.Data.SqlClient;
+using System.Drawing;
+using System.Windows.Forms;
+using Baza_Reklam.Classes.Helpers;
+using Baza_Reklam.Classes.Interfaces;
+
+namespace Baza_Reklam
+{
+    public partial class FacturesFormNew : Form, IForm
+    {
+        private const string QUERY = "SELECT TOP 2000 * FROM VIEW_ZESTAWIENIE_FAKTUR_NOWE ";
+
+        private static FacturesFormNew fakturesForm;
+        private readonly SqlCommand command;
+        private readonly SqlDataAdapter sqlDataAdapter;
+
+        private bool commandExecuted;
+
+        public static FacturesFormNew GetFacturesForm(MDIBazaReklam parent)
+        {
+            if (fakturesForm == null)
+            {
+                fakturesForm = new FacturesFormNew(parent);
+            }
+            return fakturesForm;
+        }
+
+        private FacturesFormNew(Form parent)
+        {
+            InitializeComponent();
+
+            MdiParent = parent;
+
+            //podmiana connstringa
+            VIEW_ZESTAWIENIE_FAKTUR_NOWETableAdapter.Connection.ConnectionString = ConnString.getConnString().Value;
+            reklamaTableAdapter.Connection.ConnectionString = ConnString.getConnString().Value;
+
+            //obiekty wykorzytywane przy wyszukiwaniu
+            SqlConnection conn = new SqlConnection(ConnString.getConnString().Value);
+
+            command = new SqlCommand();
+            command.CommandType = CommandType.Text;
+            command.Connection = conn;
+
+            sqlDataAdapter = new SqlDataAdapter();
+
+            //ustawia domyslny rok i miesi¹c w pasku wyszukiwania
+            rokToolStripTextBox.Text = DateTime.Today.Year.ToString();
+            miesiacToolStripTextBox.Text = DateTime.Today.Month.ToString();
+
+            wyszukajToolStrip.Items.Insert(10, new ToolStripLabel("nieuregulowane:"));
+            wyszukajToolStrip.Items.Insert(11, new ToolStripControlHost(new CheckBox(), "zalegleCheckBox"));
+            ((CheckBox)((ToolStripControlHost)wyszukajToolStrip.Items["zalegleCheckBox"]).Control).ThreeState = true;
+            ((CheckBox)((ToolStripControlHost)wyszukajToolStrip.Items["zalegleCheckBox"]).Control).CheckState = CheckState.Indeterminate;
+
+            PoznanKatowicetoolStripButton.Enabled = User.Instance().St_produkcja && User.Instance().St_kierownik;
+        }
+
+        private void FacturesForm_Load(object sender, EventArgs e)
+        {
+            WindowState = FormWindowState.Maximized;
+
+            DBBindings.bindujAgencje(agencjaToolStripComboBox);
+
+            command.CommandText = QUERY;
+            sqlDataAdapter.SelectCommand = command;
+        }
+
+        private void wyszukajToolStripButton_Click(object sender, EventArgs e)
+        {
+            wyszukajToolStrip.Visible = wyszukajToolStrip.Visible ? false : true;
+        }
+
+        private void szukajToolStripButton_Click(object sender, EventArgs e)
+        {
+            command.CommandText = QUERY;
+
+            rEKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWE.Clear();
+
+            command.CommandText += " where 1=1 ";
+
+            command.Parameters.Clear();
+
+            if (nrFakturyToolStripTextBox.Text.Trim() != "")
+            {
+                int i;
+                if (!Int32.TryParse(nrFakturyToolStripTextBox.Text, out i))
+                {
+                    MessageBox.Show("Podaj prawid³owy numer faktury.");
+                    return;
+                }
+
+                command.CommandText += " AND NUMER=@nr";
+                command.Parameters.AddWithValue("@nr", nrFakturyToolStripTextBox.Text.Trim());
+            }
+
+            if (!string.IsNullOrEmpty(kodRozliczeniowyToolStripTextBox.Text.Trim()))
+            {
+                command.CommandText += " AND Numer_Roz = @kod ";
+                command.Parameters.AddWithValue("@kod", kodRozliczeniowyToolStripTextBox.Text.Trim());
+            }
+            else
+            {
+                command.CommandText += " AND Numer_Roz <> 'KAT' AND Numer_Roz <> 'POZ' ";
+            }
+
+            if (rokToolStripTextBox.Text.Trim() != "")
+            {
+                int i;
+                if (!Int32.TryParse(rokToolStripTextBox.Text.Trim(), out i))
+                {
+                    MessageBox.Show("Podaj prawid³owy rok.");
+                    return;
+                }
+
+                command.CommandText += " AND YEAR(DATA_SPRZEDAZY)=@rok";
+                command.Parameters.AddWithValue("@rok", rokToolStripTextBox.Text.Trim());
+            }
+
+            if (miesiacToolStripTextBox.Text.Trim() != "")
+            {
+                int i;
+                if (!Int32.TryParse(miesiacToolStripTextBox.Text.Trim(), out i))
+                {
+                    MessageBox.Show("Podaj prawid³owy miesi¹c.");
+                    return;
+                }
+
+                command.CommandText += " AND MONTH(DATA_SPRZEDAZY)=@miesiac";
+                command.Parameters.AddWithValue("@miesiac", miesiacToolStripTextBox.Text.Trim());
+            }
+
+            if (!string.IsNullOrEmpty(agencjaToolStripComboBox.Text.Trim()))
+            {
+                command.CommandText += " AND Agencja=@agencja";
+                command.Parameters.AddWithValue("@agencja", agencjaToolStripComboBox.Text.Trim());
+            }
+
+            if (!string.IsNullOrEmpty(cbWydawca.Text.Trim()))
+            {
+                int systemKsiegowy = cbWydawca.Text.Trim() == "AACT" ? 1 : 2;
+                command.CommandText += " AND SystemKsiegowyId=@systemKsiegowy";
+                command.Parameters.AddWithValue("@systemKsiegowy", systemKsiegowy);
+            }
+
+            if (((CheckBox)((ToolStripControlHost)wyszukajToolStrip.Items["zalegleCheckBox"]).Control).CheckState == CheckState.Checked)
+            {
+                command.CommandText += " AND ((waluta_miano IS NOT NULL AND ROUND((waluta_brutto - wplata_waluta_brutto), 0) > 1)";
+                command.CommandText += " OR (waluta_miano IS NULL AND ROUND((BRUTTO - suma_zaplat), 0) > 1))";
+            }
+            else if (((CheckBox)((ToolStripControlHost)wyszukajToolStrip.Items["zalegleCheckBox"]).Control).CheckState == CheckState.Unchecked)
+            {
+                command.CommandText += " AND ((waluta_miano IS NOT NULL AND ROUND((waluta_brutto - wplata_waluta_brutto), 0) <= 1)";
+                command.CommandText += " OR (waluta_miano IS NULL AND ROUND((BRUTTO - suma_zaplat), 0) <= 1))";
+            }
+
+            if (!string.IsNullOrEmpty(cbSposobZaplaty.Text.Trim()))
+            {
+                command.CommandText += " AND SposobZaplaty=@sposobZaplaty";
+                command.Parameters.AddWithValue("@sposobZaplaty", cbSposobZaplaty.Text.Trim());
+            }
+
+            sqlDataAdapter.SelectCommand = command;
+
+            Cursor = Cursors.WaitCursor;
+
+            try
+            {
+                sqlDataAdapter.Fill(rEKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWE);
+                commandExecuted = true;
+            }
+            finally
+            {
+                Cursor = Cursors.Default;
+            }
+
+
+        }
+
+        private void kryteriumWyszukiwania_KeyPress(object sender, KeyPressEventArgs e)
+        {
+            if (e.KeyChar == 13) szukajToolStripButton.PerformClick();
+        }
+
+        /// <summary>
+        /// Podsumowuje brutto i zaplate z wyswietlonych faktur
+        /// </summary>
+        private void podsumuj()
+        {
+
+            if (VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.List.Count != 0)
+            {
+                decimal brutto = Convert.ToDecimal(rEKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWE.Compute("Sum(BRUTTO)", ""));
+                decimal netto = Convert.ToDecimal(rEKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWE.Compute("Sum(netto)", ""));
+
+                bruttoTextBox.Text = String.Format("{0:C}", brutto);
+                nettoTextBox.Text = String.Format("{0:C}", netto);
+            }
+            else
+            {
+                bruttoTextBox.Clear();
+                nettoTextBox.Clear();
+            }
+        }
+
+        private void zestawienieFakturBindingSource_ListChanged(object sender, ListChangedEventArgs e)
+        {
+            podsumuj();
+        }
+
+        private void toolStripButton1_Click(object sender, EventArgs e)
+        {
+            PrintDGV.Print_DataGridView(fakturyDataGridView, 50);
+        }
+
+        private void wyczyscPolaToolStripButton_Click(object sender, EventArgs e)
+        {
+            rEKLAMADataSet.ZestawienieFaktur.Clear();
+
+            nrFakturyToolStripTextBox.Clear();
+            kodRozliczeniowyToolStripTextBox.Clear();
+            rokToolStripTextBox.Clear();
+            miesiacToolStripTextBox.Clear();
+            agencjaToolStripComboBox.SelectedIndex = -1;
+            agencjaToolStripComboBox.Text = "";
+            ((CheckBox)((ToolStripControlHost)wyszukajToolStrip.Items["zalegleCheckBox"]).Control).CheckState = CheckState.Indeterminate;
+            cbSposobZaplaty.SelectedIndex = -1;
+            cbSposobZaplaty.Text = string.Empty;
+            cbWydawca.SelectedIndex = -1;
+            cbWydawca.Text = string.Empty;
+        }
+
+        private void podgladToolStripButton_Click(object sender, EventArgs e)
+        {
+            if (VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.Current != null)
+            {
+                DataRowView row = (DataRowView)VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.Current;
+                REKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWERow faktura = (REKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWERow)row.Row;
+
+                Cursor = Cursors.WaitCursor;
+                FactureViewer fv = new FactureViewer(faktura.ID_FAKTURY, false);
+                fv.ShowDialog();
+
+                Cursor = Cursors.Default;
+            }
+        }
+
+        /// <summary>
+        /// Przechodzi do okna KLIENCI i wywietla dane klienta zwi¹zanego z  faktur¹.
+        /// </summary>
+        private void klientToolStripButton_Click(object sender, EventArgs e)
+        {
+            if (VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.Current != null)
+            {
+                DataRowView row = (DataRowView)VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.Current;
+
+                int custID = Convert.ToInt32(row["ID_NABYWCY"]);
+                ClientsForm.getClientsForm((MDIBazaReklam)MdiParent).pokazKlienta(custID);
+
+                Hide();
+
+                ClientsForm.getClientsForm((MDIBazaReklam)MdiParent).Show();
+            }
+        }
+
+        private void FacturesForm_Shown(object sender, EventArgs e)
+        {
+            if (User.Instance().St_kierownik)
+            {
+                agencjaToolStripComboBox.Text = User.Instance().SymbolAgencji;
+            }
+            else if (User.Instance().St_handlowiec | User.Instance().St_subhandlowiec)
+            {
+                kodRozliczeniowyToolStripTextBox.Text = User.Instance().Kod_agenta;
+            }
+        }
+
+        private void excelToolStripButton_Click(object sender, EventArgs e)
+        {
+            Cursor = Cursors.WaitCursor;
+
+            ExcelHelper ex = new ExcelHelper();
+            ex.Export(fakturyDataGridView);
+
+            Cursor = Cursors.Default;
+        }
+
+        private void fakturyDataGridView_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
+        {
+            if (e.ListChangedType == ListChangedType.Reset)
+            {
+                foreach (DataGridViewRow r in fakturyDataGridView.Rows)
+                {
+                    DataRowView row = (DataRowView)r.DataBoundItem;
+                    REKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWERow
+                    fakt = (REKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWERow)
+                    row.Row;
+
+                    if (fakt.ilEmisji != fakt.ilPozycji)
+                    {
+                        r.DefaultCellStyle.ForeColor = Color.Crimson;
+                    }
+                    if (FakturaHelper.IsSumaEmisjiMniejszaOdFakturyNetto(fakt))
+                    {
+                        r.DefaultCellStyle.Font = new Font(fakturyDataGridView.DefaultCellStyle.Font, FontStyle.Bold);
+                    }
+                }
+            }
+        }
+
+        private void wplata2toolStripButton_Click(object sender, EventArgs e)
+        {
+            if (VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.Current != null)
+            {
+                DataRowView row = (DataRowView)VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.Current;
+                REKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWERow f = (REKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWERow)row.Row;
+
+                PaymentForm2 pf2 = f.IsidWplatyNull() ? new PaymentForm2(0, f.ID_FAKTURY) : new PaymentForm2(f.idWplaty, f.ID_FAKTURY);
+
+                if (pf2.ShowDialog() == DialogResult.OK)
+                {
+                    f.idWplaty = pf2.IdWplaty;
+                    f.EndEdit();
+                    fakturyDataGridView.Refresh();
+                }
+            }
+        }
+
+        private void zamowieniaToolStripButton_Click(object sender, EventArgs e)
+        {
+            if (VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.Current != null)
+            {
+                DataRowView row = (DataRowView)VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.Current;
+                REKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWERow f = (REKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWERow)row.Row;
+
+                ZamowieniaForm zf = new ZamowieniaForm(f.ID_NABYWCY, f.idZamowienia);
+                zf.ShowDialog();
+            }
+        }
+
+        private void PoznanKatowicetoolStripButton_Click(object sender, EventArgs e)
+        {
+            FakturowaniePoznanKatowice fpk = new FakturowaniePoznanKatowice();
+            fpk.ShowDialog();
+        }
+
+
+        private void odswiezToolStripButton_Click(object sender, EventArgs e)
+        {
+            if (commandExecuted)
+            {
+                Cursor = Cursors.WaitCursor;
+
+                rEKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWE.Clear();
+                sqlDataAdapter.Fill(rEKLAMADataSet.VIEW_ZESTAWIENIE_FAKTUR_NOWE);
+                fakturyDataGridView.Refresh();
+
+                Cursor = Cursors.Default;
+            }
+        }
+
+        public void CloseForm()
+        {
+            fakturesForm = null;
+        }
+    }
+}
Index: branches/ReklamaReorganizacja/BazaReklam/FacturesFormNew.resx
===================================================================
--- branches/ReklamaReorganizacja/BazaReklam/FacturesFormNew.resx (revision 640)
+++ branches/ReklamaReorganizacja/BazaReklam/FacturesFormNew.resx (revision 640)
@@ -0,0 +1,494 @@
+<?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=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <metadata name="bindingNavigator1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>637, 17</value>
+  </metadata>
+  <metadata name="VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>17, 17</value>
+  </metadata>
+  <metadata name="rEKLAMADataSet.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>17, 54</value>
+  </metadata>
+  <assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+  <data name="bindingNavigatorMoveFirstItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAStJREFUOE9jYBg0
+        oHDW8/9NC57/z5z4+D8uR4W3P8Apx5A789n/VUfe/8elKL77wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+
+        ///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0v3f1BxRFoa33wJpb1wFt7/z73yX/AG4D
+        Apsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvgUXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF
+        7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbAIu/O/9T+11gVGSSd+C+b9vW/bvA83AYY
+        Zt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPulf8gBXgVDZqMh+wQAPB2wKsSwCgmAAAA
+        AElFTkSuQmCC
+</value>
+  </data>
+  <data name="bindingNavigatorMovePreviousItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAL1JREFUOE9jYBgy
+        ILz9wX+yHRvf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3v
+        kn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ14A0ChbVd8+3/6nN///bu+/dcpfPffImE9aQaADNFP
+        Of/fpOjFf5WsT/+NI5eRbgDIEIOkE/9l077+1w2eR54BYJekXv6v4TuNfANAhqh4TKDMALKTMc01AgDQ
+        FGCYkuTLEQAAAABJRU5ErkJggg==
+</value>
+  </data>
+  <data name="bindingNavigatorMoveNextItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAKtJREFUOE9jYBh0
+        oHDW8/8UOSp35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78n73v1//OrX//u5VeJt2QyK5H/6ds+/W/
+        ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuIN8Sj6v7/krnv4JoVXXqI1wyKPvvSu/8D
+        W56BbSZZM8gAi7w7/20KrpCnGWSAYdZt8jWDDNBJu0GanylKtoNCMwCgfl+gC2KedgAAAABJRU5ErkJg
+        gg==
+</value>
+  </data>
+  <data name="bindingNavigatorMoveLastItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAATBJREFUOE9jYBhU
+        oHDW8/+4HASSa1rw/H/mxMc41TDkznz2P6H7HlYFILlVR97/D29/gNuAjClP/8/b//t/QtcdDEUguYX7
+        PvwPbriG24CEnif/Z+/79b9z69//bqWXURSC5KZtef/fv/oCbgMiux79n7Lt1/+SpX//J0z/+98m9yxc
+        MUiud/WH/16lJ3AbENj88H/r2vdgzcYlX/5LR1/7bxy5DKwBJFc3/91/l/wDuA3wqLr/v2TuO7hmRZce
+        uGKQXP60N//tM7bjNsC+9O7/wJZnYJuRNYNcAJLLnvz6v0XCetwGWOTd+W9TcAVDM8gAkFxq/2u4l7Cm
+        F8Os21g1gxSD5MJaXv7XDZ6H2wU6aTdwSoLk/Kof/tfwnYbbAHz5yin3yn8VjwlgPKjyHwMAvtG/s0Vm
+        x8MAAAAASUVORK5CYII=
+</value>
+  </data>
+  <data name="wyszukajToolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAABA5JREFUSEvtVH1M
+        W1UcnbLgMBoStwkxAQKWSEdMwIgUQ+g2CixAIWPa0LTQsHTIh0Yjshq1drhBSwi2ItDRbdCWL+lY5DsS
+        ZAnaAB3UMD4qSiQbAwlZ3HSBMd3I8Xdfim4VMdE//Gc3OXnv3XfvOff8zr13x46H7b9WQCgU7pTL5QcV
+        CsV+4vIheP1bzkdp4iMMeXl5T0ul0qSMjIzi1NTUMQLS09ORlJQ0FRUVpQ8MDAyhcY+5x2+vRyvclZ2d
+        fS43N3c1MzNzvqCgwEV9G1qtFgaDAUajEQ0NDTCbzbBYLNDpdEhMTFwJDw9/h5h3E3ZuqyAWiz8mYuTk
+        5KC9vR12ux39/f3o6OiAzWZDY2Mj6uvrOREmYLVaObH8/HxERkZeIjcpJPAEgVXgry0hIeEKs9/T0wOn
+        0wmHw4GhoSEMDg5yZGzFRUVFoAyQnJyM+Ph4UCZQq9XQaDSQyWT3goODW0noBXdGrMx/tri4uNm0tDS0
+        tbWhpqYGo6Oj6OvrQ2FhIcrLyyGRSDhS9iQyToQ5Wltbw2ZzuWaQlSW7fVShqI2IiNj3QD7UURAdHb3h
+        crnQ2dkJvV7PlWt6evoPApZDllwG1fFiKJVKsJJOTk5iYWEBKyvLMNY1ocrUjYraDpp7dCUsLCyRRJ7c
+        3AS+oaGh75OT31QqFZgbJjQxMYGlpUVMTV7GyVNV0JSeQf7rKohpRzF3LKfRkRHY2nthH7+GOxvA3C3A
+        1HsZsbGCXiKPcpeM29fP8Hi845THOitFU1MTuru7MDJsh766DRMzS1i8uQHHj4Cy8G0cTk/jgrZ91gpL
+        5xjmfgbmbwCOReDC90DKIeEKcR4j+G2Gwbaaf0hIyJsxMTGrZWVlOHvGBIu5GV988xOu/wpcuQkMk4D+
+        /DAOCGO5c/GpoRJ1A1fRPw8M/AB8Pgucc95FgujAMvGVEILvz5s58aPdoKRQb3xUUoLK2hZ8eRUYuQZ8
+        Rc+uOeCT7m/xPJ8/5u/v3yyTSm6fMPXhtBOou3QPhq/XUdl0Ec/xnh0krhOeAkyMiewJCgrKEYtTf9Fo
+        q2GeAVoo7+Yp4PQ48EGlFX5+e1tonI4ca+jEr71XPQC1ZQYVDRepfCmr3t7e9fT/NVaVrY4GOzC7Kfhj
+        bPKHlnHoeq+jtGsZFee/g0gkuuXl5XWWxmQS9vH5/LxDItGsVHLkbozgRZePj4+Z+ksJLxMe30qA9XEi
+        AoHgDar1+lvqKrx7yoiMw+I7vr6+jfTvJCGCwC6/PYSDhGLmilBE2E94ivDgofNQYyJ7qdZycmMNCAho
+        Jesm6tMSku8jYOPYng8g8NzPv786PERYJuxCe4nwKuEV9ztbtee1zd3E/7RqD37uk01ipWCWGdj7tta3
+        InnY9/9V4HecFiR4F1lB0gAAAABJRU5ErkJggg==
+</value>
+  </data>
+  <data name="klientToolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAACZ5JREFUWEellwlU
+        lOUax19AwwVScYmkEFxCQQS83YtLat5cTlGWp4yyyDQ0DVEyFB3QGVlkhxEQEXBDDAoIIwoRZRnWYRcY
+        UGAYFlklBEREQP73eYG695yr515ozvmf75vvm3l//+d5t+dVYs/5RO5nG7oG2B5lFWasqsImqaiyjsGn
+        rHzSJDZFVZnNGVJmjYNK7NrHjiyOmuglPX1eW2N+Hn+EiYVWbCjqKEP8SYbrLgw3XBkSTzHc8mBIFzNk
+        nGYQCtnQLU92hQDapIljBj3rD7GHmeVFK4ZrxxmiBQw/2DHE2JMRR4ab7v+GSwMZ8s8xZJERBwvmQm3N
+        I034SyawjakE72V139synLFkCLOehHRPfWR66ePmKS3EClSHTUlGM5Dlz5AdwHBVxOpUVNj7BJ/+lwxc
+        sWYrQvYy+O9kKPRfDRQ4A7kiQErKEQJ5jig+a4JrJ0a6gHdFpt9IVxgtYI4EX0hSHreJiANs/5mvKN0n
+        tIFCgmedALJJHJ5D1ywHuooQeYTGgidDms+I+NjYtpqFEHg1afK4DYRZMVcfC4a+G99Q5CcpYjJR6AYU
+        uVM2ThGcnuU6ItfPEHFChmQykerN8JsTg8UGFk7g90jTxm3g8n4mDvuaEdCVQE509QBKxUCZP3Dbe8SE
+        1AmNUR/iyrcjg5TPkl9EDOZrhmfDxySNcRsIsmTuWQINippA3ACHlgcCd0NGTBSQsXwXQHYR5b/aoTrF
+        FSXXBSi8tgcHd66PIPAnf8nAoXUvLC4T6g8ij+BcxZ4EDgAqyESJL4FD0a9IRllGHKIun4PY8xS8nIUI
+        8hXBy9WlYNq0aXvIwEskpXFlYd48NqnXV78T2cdp8NHA4ynnJoq8gMoIPKzLQcTlC7gQFY3EsjvIaOvG
+        RYVi4HJW0WO3c+c77GwONpq9/fYXo+NgXLNBufeCSSmSD9CItx8xIaWBVxqIRwQPDQ2GVFGP1oFetPT1
+        oqqzE9cb2nrPSO5UeUhqqtwSiu8dFxztXmlqupNMzBzPlFRqPW8SjFhzIO0wILEDMu0xWJOISIpcIleg
+        beAxegefoP1xD6ofdCBdoXgYJJFV+SQVVzmlVMqdE4ua9++2kKuqqr5FBtTH3BWZYoN3PYSrhpBiA9yi
+        TOT7oirnZwRFRKG27xG6+vvQP9CPh2REKBQOSeqaHwSklVT6JMmqXBLLq13S6muFgYE9hkuXehJcbzzL
+        89TmQKN0RG0Fkmg9KL2EXyND8GOeDNXdvZB3P8T93h7UdnYhu/F+71VpRRU34JVcXn0yoUzudkte73mz
+        rM1s88YEgr9NenGsWVAWbNVa0SNe3IqoLTQDIhF62h3xNZ3Ib+2A7H4nitt+H44+5nZDV0RxU7svpf9U
+        oqza/rcyuVdqdYNzYn2z5S6LYgLvJmmOycBjVz0d+Te6sWX7dAf7vZfQQHRHkJcTou624paiBck1TUiv
+        aUZSRQN+KW3AxULFwIX8uu6TCaVyu1/KavwkVU3C1IaWXZ+bFxH4OxLfqv+/T6/bsjfaDum2PxAZoEuo
+        h3zbTSgqLsKVc34IzaxARHk7ImX38WN+LaKL6/BDUR2u0n1IRg2EqTV9wtT6zgvShhYvibx97SrT62My
+        wCPn8D5fIwz4G+Oh8xIU2KxBTGoeYuPi4R0Wi+CSh7iYXYvLeQqE5dbiYk4tgjMVCJDUwPWGnL4rBoRZ
+        dd1eV64+0tTUDB1TF/Qf07vW6bwUCP4bBs+YoM/bEPWWc5FyaAtK4iPh6Xgcgcl3EZjdiLMZCgSSAiQK
+        eKUSPKkGl6WNCM1tRXBcY7+5vv7glClTAgwNDS3JxKz/uTI+cVhgkLJu4dMnYmM8OW2EPl9jPPJYhi4n
+        fTQd0EGD3SqUhnvCVXQcfilV8M5shVjSAL/UOpzLbEB4YQs801oQIm2F9Z6vEBoSzAdpr0fQ+afLtWau
+        H10Zn788d1npOjZ99xp63A3xyM0QPa5L0elkgA7hErQJ9NB8+DW0+JqjmEw4Hz2IgPAYBKUr4JPRCp/0
+        NlyStiEsJgHbt5rBTyxG++8duFPXhh9tzJBjwqRLJrC1ZGLKczPRsmuepPWoHh44GuDBSX10iPTRzuHH
+        FqPJ9jXUH1iImr3zUSt4C3XfuyHa/Sg8j1jDy94WHoJDEO3bifNHrJDjLYKb6ARK7tbj1/Bj6Pv5PcBz
+        FWrWq+X/XZ2tfKaJbYyp3N0++/c2wWK0HtOjiBcPg1vs9NBEkTccXAiF1XxUW+qg4gttlFksQKX9Vih8
+        baAIdID8tAAy0T5Iv9wMmd8puIsDcPbQZ+iJeoe2cWsg2QLwXoO69WpFq9XYG/9lovwD9ZnCD7SGeKRN
+        3y1Coy3p0CLcs1mEemuC7yP4bl1U7pgH2fZXcfsjLRRseRk5m19CxvrZSF01E0mvT0eC4YtIXKmLXG8X
+        1JstwaDAGEjcTvXEfiDlC8BnLe5tVC9ZrzbcHVP/7I7Cf2ro55lpos56AeS759N1IWqtFgyD5V/rouor
+        HdwZhZds00LhB3OR+44msjbMgWTtLKSumIHrRi/iNwN1/LxwKuKMtVB0/AjaPzHqhr0RkPDpiInUHYDv
+        ajSYzS7f8tGnB8nADJIKK143Y2nKullPZdu1h6NR7CPobh1U7tLB3S/nocKC0v7pq/gDzs1mb5yD9Ddn
+        IWWVBpJXzsBZRnUhZYAbiHl1MsI1JkNy+HB9tJHSTRxbBsR/TMXMXtrcPsNPP/2Eww4OFQTnu+Vw/Tjx
+        eyN1m0STyd3J/9BA5U4dVHH4Dh2Uf64NmfkrKKa0F73/MvLe1YR08xxkvjUHaWso+pUaSFmhgfMTlRG3
+        SA3h0ydCqKw05MxYoYmKyiWad943TSbE44g+EGOGe021yM4rwvLly3n59g1pLjfA5+esZZOUzUXaqhHR
+        ei/cTzKZjrQ3ZkK6SRMF772MAkp7wftzkU/R89SnUuQJS6chWpuinUFQxob8GVNQKXRNi7Hz1F4AyZa0
+        iWp00yxjFhvu7wFJdgFc3dygp6cXRu92kGb/sUmo0A2vYF6nA95Ok8lKHuZqE67Yqk244aqufNt3qkqt
+        eKJKq6cya3NjrN6BMdl+xtI/ZCz2dcYuURl8bhQqoiuvhtaQdEl8K55sYGr65lGBqNnY2CRcV1f3kpKS
+        Eq8VNo2+/8PDcCZUSXNIS0hvkniVSywmIDmRXEfF78kH+3YUyM8DpiR+MuL/54eT/6wJ+XfyyvaSeOS8
+        /3n6n3mW5Eb4C75y8azwH/KD5/xRAIfwex3SK6NAPpi4eQ591pLLn/Gpx9viaeel2jD8X1WPB4CBe56u
+        AAAAAElFTkSuQmCC
+</value>
+  </data>
+  <data name="podgladToolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+        /2qLked/A577utGNKIc+AAAAAElFTkSuQmCC
+</value>
+  </data>
+  <data name="toolStripButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+</value>
+  </data>
+  <data name="excelToolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAplJREFUSEu1VtlK
+        HEEULfMD+YSQvOQP8pbn5BOSfwj5hrzkA4zbjIrbuOs4rjcGEUQEEZdy33dxY1xxGTTKSZ+qruk4dkBI
+        23DpOxfmnLqnTtXtPBU8eX/lUaSwILHfH1UciDS+/PzsIb/04oUicHwsunif9Ber1AdL4hOo72lEEvkZ
+        q4ZS37x4bQiyrFFKpVS+R/DWEIyPa2j9OFgfHdUYGdEYHtYYGtIYHNQYGNDo79fo69Po7dUQ0ejq0ujo
+        0EiltOvgR5bg7g7mERGb+DnrNzdAe7vg8hI4PweamwXpNHBwACQSgq0tYH0dKC8XLC4Cc3PZPQgI7u/D
+        CVi/vY2AoKdHzOpzg/XOTjEdtLUJWlvFdNDYKKivF9NBdbWgokJMB6WlglhMHkv07B08+x5Qhu5uASVx
+        wd9OnlRKkEwKWloETU2ChgZBXZ2gpkZQVfUEiTIZ6xYCclMZzFm/voYBp4NOTmD0PzwE9vZg9N/cBNbW
+        rIsWFoDZ2RAXXV1ZIG4mQRnMWb+4gNnc01Pg+Bhm9bTo7q4loEVXV4GyMsH8PDAzE0LAFdIlucE6wZ00
+        zj21tf+Wp7g4xEVnZ/YQEYxvl7NOWag7DxelofY7OzAHjPbk6peWvMsyLkaeqamQDtg6gehxvl3O+tFR
+        IMv+fnB6NzYswfIyzAmm/6engcnJEALqyvZzg3UeKIaThbpXVj50DldfUiIoKhIUFIRIxJVx4wjEt8tZ
+        p1t4Yp0sBKdrVlbsxjrnUHvvvvQuzpAO+Ge6gkB8u5z17e3AjnQMZSG4052XG6UpLBRMTABj3vDy54F/
+        XX/99SnSccmZ8updIhg4dnZyvHECkZXX7P8EMYjlj0wzmA3JGzsgIgli+UP/4WcLP12iCoP8BxdAjuo0
+        CNGlAAAAAElFTkSuQmCC
+</value>
+  </data>
+  <data name="wplata2toolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+        /geozQsXvpx68QAAAABJRU5ErkJggg==
+</value>
+  </data>
+  <data name="zamowieniaToolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAxtJREFUSEu1ll1s
+        S2EYxw/34tLlwg23bhCJRETiI7jD3BhuEDLxEYko4aKLyZguQ4fJZBMTMYSNZZYME9na7a1u3We7r2rX
+        fdnSjXXT9ud9z2lrpkHieJN/8p43Of//c57neZ//WaD9WAvm7M3YYpDYv23WisBUHH25RzIvllioKeIi
+        p3lY9zgRrKZtMkQSApp1BFNgmzayoWkXJJbqAilVM1OlaTYpsFwXaGoSCPEr1LnDIWhoEHz4IKivF7x9
+        K6irE9TWCmpqBK9eCaqqBM+fC549Ezx5IpJfUJAS4DcrGoWZGZiehslJmJiA0VEYGoJgEAYGoLcXvF7o
+        7ASPJ1WDvxOIxWB2VhK8OY3n9bH/IzAecBJw36OzPo+gz2X+F7iqT/Bl8D2TgRreVZz6d4HIZIDBjgp8
+        jps4qiw0Pj1AuK+cqf4yast2UXn/PHWVd2l4U0OHJ/TnGqg8z13vy7cx1WeThHYiwRJmPt0l7LUR7rrK
+        rP+GfLYx3naO0Zbj3Lm8hZ6ePxRZFVF1ixJScFWfJTKQB+HrRIOXiPRa+dqTw1eflWnPbmIdW2HsKMPu
+        bO4XWXWB7m5ob4fW1jRdFIkYraiEknC8tDDmOQ2fc2U/XiTmzSTWqBGXwKPhq1xMqd2qp8fng64uaGuD
+        lpY0AlNTRp/Px+PbR4h7N8i3V4J7kQxvCXRkEG1fQUGuhf5+fkmP251GIBw2LtF8vHggow+sh/418kat
+        llgrsQ78G7lVWPhT9Mn0fPyYRmB83Lih8/HQvhfiB2X+svA3byMgdsj9PtkPh8jPOZTKffIGq+hdrjQC
+        IyPG9Z+L4eEoVY92SrJcivO3Ul5Swr3iYm5e2a6fPSjOkoWN6+NB5V4VV0Xf3JxGIBQyZstchAZjXMvf
+        LyPNps0TJBAw5o7T8YnzZ05ywXJYksdTnaOil/NSDs40AuplNbjmQ537/QaxKqjqmGTPq65ReVfDLZka
+        Fb1TmlfCDxLjOrs601S7VJ6Ssar0h+EY3qnsTTmQUlVj9l+gOBRXwjJ1Y9ZFlhkGYQoUV8L0f/5tUb8u
+        ZkFn/g4qo7wLJRn9nwAAAABJRU5ErkJggg==
+</value>
+  </data>
+  <data name="odswiezToolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+</value>
+  </data>
+  <data name="PoznanKatowicetoolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAgxJREFUOE+lkvtL
+        U2EYx+0PEbtpFwnBKPGKiJImGP0gYhIYs1E5GF5gIxkpA00JRSmMEF0ohMh+GaRWYlqabMVcNdS2QpaI
+        VqiDIYhk397vA6fXhCjyhYdzeM/5fp7vczkAdeL2cwho7v/wWzT1zcN+Pwhr51uY2/y41PQaF+wzKKiZ
+        QvaN58g0jyLd5KEUcQbg+84P/Cm2tncQjW3j68YWIqubCC3FcOJc478BAuGoZM6zvoRnakXEruEIjhc4
+        /g5gZop9c+voGAyLbQIfeBZxLL9BA1jzXvuGbWamuKh+GmmVbswE19A59FEBbmoAG7YbsLtm2mZmiml9
+        cvabNDwpz6YB7LYBoMXCumkJr7LOmnnHzBQ/9X2Bo2cOibm1GsBREbAQiYmw/8lnuCeWkVzcgnZlnw1j
+        3HV/wuNXK6i/9x5Hc6wawDlTXHbLJ+LZUBQPRyKwdQdxutwl1h+NLXHh5Ht1ewBHsiwawCW57HyDAfWR
+        dvl0uhZQ1eqX8aVc7EKLqrum651ATLf9OJx5XQM4KmY0xPzZ0hFAiQJnXB0WwME0E3IsL5B17ZlADqWb
+        NYDrOepdlcysmTWWOrxqbceRWtaLk0VO1XW72D5Vckd2gMBfq8zdpmUG62NJvKM4+XyziDk24xmfWoGE
+        s1c0gHPmbrPTpHNJKOCo2G1mZs20zcwUJ5yp1AB5+8/zEwgF5GMVDxh4AAAAAElFTkSuQmCC
+</value>
+  </data>
+  <metadata name="wyszukajToolStrip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>310, 54</value>
+  </metadata>
+  <data name="szukajToolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAgxJREFUOE+lkvtL
+        U2EYx+0PEbtpFwnBKPGKiJImGP0gYhIYs1E5GF5gIxkpA00JRSmMEF0ohMh+GaRWYlqabMVcNdS2QpaI
+        VqiDIYhk397vA6fXhCjyhYdzeM/5fp7vczkAdeL2cwho7v/wWzT1zcN+Pwhr51uY2/y41PQaF+wzKKiZ
+        QvaN58g0jyLd5KEUcQbg+84P/Cm2tncQjW3j68YWIqubCC3FcOJc478BAuGoZM6zvoRnakXEruEIjhc4
+        /g5gZop9c+voGAyLbQIfeBZxLL9BA1jzXvuGbWamuKh+GmmVbswE19A59FEBbmoAG7YbsLtm2mZmiml9
+        cvabNDwpz6YB7LYBoMXCumkJr7LOmnnHzBQ/9X2Bo2cOibm1GsBREbAQiYmw/8lnuCeWkVzcgnZlnw1j
+        3HV/wuNXK6i/9x5Hc6wawDlTXHbLJ+LZUBQPRyKwdQdxutwl1h+NLXHh5Ht1ewBHsiwawCW57HyDAfWR
+        dvl0uhZQ1eqX8aVc7EKLqrum651ATLf9OJx5XQM4KmY0xPzZ0hFAiQJnXB0WwME0E3IsL5B17ZlADqWb
+        NYDrOepdlcysmTWWOrxqbceRWtaLk0VO1XW72D5Vckd2gMBfq8zdpmUG62NJvKM4+XyziDk24xmfWoGE
+        s1c0gHPmbrPTpHNJKOCo2G1mZs20zcwUJ5yp1AB5+8/zEwgF5GMVDxh4AAAAAElFTkSuQmCC
+</value>
+  </data>
+  <data name="wyczyscPolaToolStripButton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
+        YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAVZJREFUOE/Nkj1I
+        QlEYhs8tNS5S0ZQkNfSjIEbtCv2BW4MFFUVaSA39UDk01RIVEdUWDUHQlGAhrhEErk7N0dQuXBIan75j
+        16W6CkHQhXe5h/c573m/T6n/+BkSqpacM5dCKvM2ZFqliGm99pvWS9i0nvpMq+j3WNkWlRdnu8jjSNBm
+        btNwsw6XKTiagvQYLIQptLrfxThvQ35m6JvJrMH1MpwnYC8OG8OQCJH7BByKep0SGDo2V0twkYSTGdgZ
+        h5UIzAYE4NKAM1HA7ugbx3jWgONp2J+AXTFvjkj8QYh3CqChCgg6AnRhbMdgaxRWo7Ao5sluiLUJwKgP
+        KPqbLFIDkAzDXFDMXRUzURe5ZlX3CSrrVfnHDnf5wecq33vd5Ttvo0hVtGWoQr0SdSl6znpUB6LTL9L/
+        EiJfre3XS6IhPXbbuvGq9Pi02XmRbPLvV7lWtD87+wCLQ54gGwCTLQAAAABJRU5ErkJggg==
+</value>
+  </data>
+  <metadata name="reklamaTableAdapter.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>153, 54</value>
+  </metadata>
+  <metadata name="VIEW_ZESTAWIENIE_FAKTUR_NOWETableAdapter.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>329, 17</value>
+  </metadata>
+  <metadata name="FirstName.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="TERMIN_ZAPLATY.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="dataWplaty.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="NUMER.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="sumaNettoZEmisji.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="BRUTTO.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="wplata_brutto.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="waluta_miano.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="waluta_brutto.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="wplata_waluta_brutto.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="SposobZaplaty.UserAddedColumn" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>120</value>
+  </metadata>
+</root>
Index: branches/ReklamaReorganizacja/BazaReklam/FacturesFormNew.Designer.cs
===================================================================
--- branches/ReklamaReorganizacja/BazaReklam/FacturesFormNew.Designer.cs (revision 640)
+++ branches/ReklamaReorganizacja/BazaReklam/FacturesFormNew.Designer.cs (revision 640)
@@ -0,0 +1,893 @@
+namespace Baza_Reklam
+{
+    partial class FacturesFormNew
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region Windows Form Designer generated code
+
+        /// <summary>
+        /// Required method for Designer support - do not modify
+        /// the contents of this method with the code editor.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            this.components = new System.ComponentModel.Container();
+            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FacturesFormNew));
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
+            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
+            this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
+            this.VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource = new System.Windows.Forms.BindingSource(this.components);
+            this.rEKLAMADataSet = new Baza_Reklam.REKLAMADataSet();
+            this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
+            this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
+            this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
+            this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
+            this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
+            this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
+            this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
+            this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
+            this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
+            this.wyszukajToolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.klientToolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.podgladToolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
+            this.excelToolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
+            this.wplata2toolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.zamowieniaToolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.odswiezToolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
+            this.PoznanKatowicetoolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
+            this.wyszukajToolStrip = new System.Windows.Forms.ToolStrip();
+            this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
+            this.nrFakturyToolStripTextBox = new System.Windows.Forms.ToolStripTextBox();
+            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
+            this.kodRozliczeniowyToolStripTextBox = new System.Windows.Forms.ToolStripTextBox();
+            this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
+            this.rokToolStripTextBox = new System.Windows.Forms.ToolStripTextBox();
+            this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
+            this.miesiacToolStripTextBox = new System.Windows.Forms.ToolStripTextBox();
+            this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
+            this.agencjaToolStripComboBox = new System.Windows.Forms.ToolStripComboBox();
+            this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
+            this.cbWydawca = new System.Windows.Forms.ToolStripComboBox();
+            this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
+            this.cbSposobZaplaty = new System.Windows.Forms.ToolStripComboBox();
+            this.szukajToolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.wyczyscPolaToolStripButton = new System.Windows.Forms.ToolStripButton();
+            this.panel = new System.Windows.Forms.Panel();
+            this.label2 = new System.Windows.Forms.Label();
+            this.label1 = new System.Windows.Forms.Label();
+            this.bruttoTextBox = new System.Windows.Forms.TextBox();
+            this.nettoTextBox = new System.Windows.Forms.TextBox();
+            this.reklamaTableAdapter = new Baza_Reklam.REKLAMADataSetTableAdapters.REKLAMATableAdapter();
+            this.VIEW_ZESTAWIENIE_FAKTUR_NOWETableAdapter = new Baza_Reklam.REKLAMADataSetTableAdapters.VIEW_ZESTAWIENIE_FAKTUR_NOWETableAdapter();
+            this.fakturyDataGridView = new System.Windows.Forms.DataGridView();
+            this.FirstName = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.TERMIN_ZAPLATY = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.dataWplaty = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.NUMER = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.nRFKDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.sumaNettoZEmisji = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.nETTODataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.sVATDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.vATDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.BRUTTO = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.wplata_brutto = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.waluta_miano = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.waluta_brutto = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.wplata_waluta_brutto = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.dATASPRZEDAZYDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.symbolDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.agencjaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            this.SposobZaplaty = new System.Windows.Forms.DataGridViewTextBoxColumn();
+            ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
+            this.bindingNavigator1.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.rEKLAMADataSet)).BeginInit();
+            this.wyszukajToolStrip.SuspendLayout();
+            this.panel.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.fakturyDataGridView)).BeginInit();
+            this.SuspendLayout();
+            // 
+            // bindingNavigator1
+            // 
+            this.bindingNavigator1.AddNewItem = null;
+            this.bindingNavigator1.BindingSource = this.VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource;
+            this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
+            this.bindingNavigator1.DeleteItem = null;
+            this.bindingNavigator1.ImageScalingSize = new System.Drawing.Size(24, 24);
+            this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.bindingNavigatorMoveFirstItem,
+            this.bindingNavigatorMovePreviousItem,
+            this.bindingNavigatorSeparator,
+            this.bindingNavigatorPositionItem,
+            this.bindingNavigatorCountItem,
+            this.bindingNavigatorSeparator1,
+            this.bindingNavigatorMoveNextItem,
+            this.bindingNavigatorMoveLastItem,
+            this.bindingNavigatorSeparator2,
+            this.wyszukajToolStripButton,
+            this.klientToolStripButton,
+            this.podgladToolStripButton,
+            this.toolStripButton1,
+            this.excelToolStripButton,
+            this.toolStripSeparator1,
+            this.wplata2toolStripButton,
+            this.zamowieniaToolStripButton,
+            this.odswiezToolStripButton,
+            this.toolStripSeparator2,
+            this.PoznanKatowicetoolStripButton,
+            this.toolStripSeparator3});
+            this.bindingNavigator1.Location = new System.Drawing.Point(0, 0);
+            this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
+            this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
+            this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
+            this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
+            this.bindingNavigator1.Name = "bindingNavigator1";
+            this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
+            this.bindingNavigator1.Size = new System.Drawing.Size(979, 31);
+            this.bindingNavigator1.TabIndex = 1;
+            this.bindingNavigator1.Text = "bindingNavigator1";
+            // 
+            // VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource
+            // 
+            this.VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.DataMember = "VIEW_ZESTAWIENIE_FAKTUR_NOWE";
+            this.VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.DataSource = this.rEKLAMADataSet;
+            this.VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource.ListChanged += new System.ComponentModel.ListChangedEventHandler(this.zestawienieFakturBindingSource_ListChanged);
+            // 
+            // rEKLAMADataSet
+            // 
+            this.rEKLAMADataSet.DataSetName = "REKLAMADataSet";
+            this.rEKLAMADataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
+            // 
+            // bindingNavigatorCountItem
+            // 
+            this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
+            this.bindingNavigatorCountItem.Size = new System.Drawing.Size(36, 28);
+            this.bindingNavigatorCountItem.Text = "of {0}";
+            this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
+            // 
+            // bindingNavigatorMoveFirstItem
+            // 
+            this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
+            this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
+            this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
+            this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(28, 28);
+            this.bindingNavigatorMoveFirstItem.Text = "Move first";
+            // 
+            // bindingNavigatorMovePreviousItem
+            // 
+            this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
+            this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
+            this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
+            this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(28, 28);
+            this.bindingNavigatorMovePreviousItem.Text = "Move previous";
+            // 
+            // bindingNavigatorSeparator
+            // 
+            this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
+            this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 31);
+            // 
+            // bindingNavigatorPositionItem
+            // 
+            this.bindingNavigatorPositionItem.AccessibleName = "Position";
+            this.bindingNavigatorPositionItem.AutoSize = false;
+            this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
+            this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
+            this.bindingNavigatorPositionItem.Text = "0";
+            this.bindingNavigatorPositionItem.ToolTipText = "Current position";
+            // 
+            // bindingNavigatorSeparator1
+            // 
+            this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
+            this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 31);
+            // 
+            // bindingNavigatorMoveNextItem
+            // 
+            this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
+            this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
+            this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
+            this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(28, 28);
+            this.bindingNavigatorMoveNextItem.Text = "Move next";
+            // 
+            // bindingNavigatorMoveLastItem
+            // 
+            this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
+            this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
+            this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
+            this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(28, 28);
+            this.bindingNavigatorMoveLastItem.Text = "Move last";
+            // 
+            // bindingNavigatorSeparator2
+            // 
+            this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
+            this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 31);
+            // 
+            // wyszukajToolStripButton
+            // 
+            this.wyszukajToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.wyszukajToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("wyszukajToolStripButton.Image")));
+            this.wyszukajToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.wyszukajToolStripButton.Name = "wyszukajToolStripButton";
+            this.wyszukajToolStripButton.Size = new System.Drawing.Size(28, 28);
+            this.wyszukajToolStripButton.Text = "Szukaj";
+            this.wyszukajToolStripButton.Click += new System.EventHandler(this.wyszukajToolStripButton_Click);
+            // 
+            // klientToolStripButton
+            // 
+            this.klientToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.klientToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("klientToolStripButton.Image")));
+            this.klientToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.klientToolStripButton.Name = "klientToolStripButton";
+            this.klientToolStripButton.Size = new System.Drawing.Size(28, 28);
+            this.klientToolStripButton.Text = "Przejd do klienta";
+            this.klientToolStripButton.Click += new System.EventHandler(this.klientToolStripButton_Click);
+            // 
+            // podgladToolStripButton
+            // 
+            this.podgladToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.podgladToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("podgladToolStripButton.Image")));
+            this.podgladToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.podgladToolStripButton.Name = "podgladToolStripButton";
+            this.podgladToolStripButton.Size = new System.Drawing.Size(28, 28);
+            this.podgladToolStripButton.Text = "Wydruk faktury";
+            this.podgladToolStripButton.Click += new System.EventHandler(this.podgladToolStripButton_Click);
+            // 
+            // toolStripButton1
+            // 
+            this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
+            this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.toolStripButton1.Name = "toolStripButton1";
+            this.toolStripButton1.Size = new System.Drawing.Size(28, 28);
+            this.toolStripButton1.Text = "Drukuj";
+            this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
+            // 
+            // excelToolStripButton
+            // 
+            this.excelToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.excelToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("excelToolStripButton.Image")));
+            this.excelToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.excelToolStripButton.Name = "excelToolStripButton";
+            this.excelToolStripButton.Size = new System.Drawing.Size(28, 28);
+            this.excelToolStripButton.Text = "Exportuj do excela";
+            this.excelToolStripButton.Click += new System.EventHandler(this.excelToolStripButton_Click);
+            // 
+            // toolStripSeparator1
+            // 
+            this.toolStripSeparator1.Name = "toolStripSeparator1";
+            this.toolStripSeparator1.Size = new System.Drawing.Size(6, 31);
+            // 
+            // wplata2toolStripButton
+            // 
+            this.wplata2toolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.wplata2toolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("wplata2toolStripButton.Image")));
+            this.wplata2toolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.wplata2toolStripButton.Name = "wplata2toolStripButton";
+            this.wplata2toolStripButton.Size = new System.Drawing.Size(28, 28);
+            this.wplata2toolStripButton.Text = "Wp³ata";
+            this.wplata2toolStripButton.Click += new System.EventHandler(this.wplata2toolStripButton_Click);
+            // 
+            // zamowieniaToolStripButton
+            // 
+            this.zamowieniaToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.zamowieniaToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("zamowieniaToolStripButton.Image")));
+            this.zamowieniaToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.zamowieniaToolStripButton.Name = "zamowieniaToolStripButton";
+            this.zamowieniaToolStripButton.Size = new System.Drawing.Size(28, 28);
+            this.zamowieniaToolStripButton.Text = "Zamówienia";
+            this.zamowieniaToolStripButton.Click += new System.EventHandler(this.zamowieniaToolStripButton_Click);
+            // 
+            // odswiezToolStripButton
+            // 
+            this.odswiezToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.odswiezToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("odswiezToolStripButton.Image")));
+            this.odswiezToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.odswiezToolStripButton.Name = "odswiezToolStripButton";
+            this.odswiezToolStripButton.Size = new System.Drawing.Size(28, 28);
+            this.odswiezToolStripButton.Text = "Odwie¿";
+            this.odswiezToolStripButton.Click += new System.EventHandler(this.odswiezToolStripButton_Click);
+            // 
+            // toolStripSeparator2
+            // 
+            this.toolStripSeparator2.Name = "toolStripSeparator2";
+            this.toolStripSeparator2.Size = new System.Drawing.Size(6, 31);
+            // 
+            // PoznanKatowicetoolStripButton
+            // 
+            this.PoznanKatowicetoolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+            this.PoznanKatowicetoolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("PoznanKatowicetoolStripButton.Image")));
+            this.PoznanKatowicetoolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.PoznanKatowicetoolStripButton.Name = "PoznanKatowicetoolStripButton";
+            this.PoznanKatowicetoolStripButton.Size = new System.Drawing.Size(99, 28);
+            this.PoznanKatowicetoolStripButton.Text = "Poznañ - Katowice";
+            this.PoznanKatowicetoolStripButton.Click += new System.EventHandler(this.PoznanKatowicetoolStripButton_Click);
+            // 
+            // toolStripSeparator3
+            // 
+            this.toolStripSeparator3.Name = "toolStripSeparator3";
+            this.toolStripSeparator3.Size = new System.Drawing.Size(6, 31);
+            // 
+            // wyszukajToolStrip
+            // 
+            this.wyszukajToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
+            this.toolStripLabel1,
+            this.nrFakturyToolStripTextBox,
+            this.toolStripLabel2,
+            this.kodRozliczeniowyToolStripTextBox,
+            this.toolStripLabel3,
+            this.rokToolStripTextBox,
+            this.toolStripLabel5,
+            this.miesiacToolStripTextBox,
+            this.toolStripLabel4,
+            this.agencjaToolStripComboBox,
+            this.toolStripLabel7,
+            this.cbWydawca,
+            this.toolStripLabel6,
+            this.cbSposobZaplaty,
+            this.szukajToolStripButton,
+            this.wyczyscPolaToolStripButton});
+            this.wyszukajToolStrip.Location = new System.Drawing.Point(0, 31);
+            this.wyszukajToolStrip.Name = "wyszukajToolStrip";
+            this.wyszukajToolStrip.Size = new System.Drawing.Size(979, 25);
+            this.wyszukajToolStrip.TabIndex = 3;
+            this.wyszukajToolStrip.TabStop = true;
+            // 
+            // toolStripLabel1
+            // 
+            this.toolStripLabel1.Name = "toolStripLabel1";
+            this.toolStripLabel1.Size = new System.Drawing.Size(25, 22);
+            this.toolStripLabel1.Text = "Nr: ";
+            // 
+            // nrFakturyToolStripTextBox
+            // 
+            this.nrFakturyToolStripTextBox.Name = "nrFakturyToolStripTextBox";
+            this.nrFakturyToolStripTextBox.Size = new System.Drawing.Size(40, 25);
+            this.nrFakturyToolStripTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.kryteriumWyszukiwania_KeyPress);
+            // 
+            // toolStripLabel2
+            // 
+            this.toolStripLabel2.Name = "toolStripLabel2";
+            this.toolStripLabel2.Size = new System.Drawing.Size(54, 22);
+            this.toolStripLabel2.Text = "Kod roz.: ";
+            // 
+            // kodRozliczeniowyToolStripTextBox
+            // 
+            this.kodRozliczeniowyToolStripTextBox.Name = "kodRozliczeniowyToolStripTextBox";
+            this.kodRozliczeniowyToolStripTextBox.Size = new System.Drawing.Size(50, 25);
+            this.kodRozliczeniowyToolStripTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.kryteriumWyszukiwania_KeyPress);
+            // 
+            // toolStripLabel3
+            // 
+            this.toolStripLabel3.Name = "toolStripLabel3";
+            this.toolStripLabel3.Size = new System.Drawing.Size(32, 22);
+            this.toolStripLabel3.Text = "Rok: ";
+            this.toolStripLabel3.ToolTipText = "Rok daty sprzeda¿y";
+            // 
+            // rokToolStripTextBox
+            // 
+            this.rokToolStripTextBox.Name = "rokToolStripTextBox";
+            this.rokToolStripTextBox.Size = new System.Drawing.Size(40, 25);
+            this.rokToolStripTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.kryteriumWyszukiwania_KeyPress);
+            // 
+            // toolStripLabel5
+            // 
+            this.toolStripLabel5.Name = "toolStripLabel5";
+            this.toolStripLabel5.Size = new System.Drawing.Size(48, 22);
+            this.toolStripLabel5.Text = "Miesi¹c: ";
+            this.toolStripLabel5.ToolTipText = "Miesi¹c daty sprzeda¿y";
+            // 
+            // miesiacToolStripTextBox
+            // 
+            this.miesiacToolStripTextBox.Name = "miesiacToolStripTextBox";
+            this.miesiacToolStripTextBox.Size = new System.Drawing.Size(20, 25);
+            this.miesiacToolStripTextBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.kryteriumWyszukiwania_KeyPress);
+            // 
+            // toolStripLabel4
+            // 
+            this.toolStripLabel4.Name = "toolStripLabel4";
+            this.toolStripLabel4.Size = new System.Drawing.Size(53, 22);
+            this.toolStripLabel4.Text = "Agencja: ";
+            // 
+            // agencjaToolStripComboBox
+            // 
+            this.agencjaToolStripComboBox.Name = "agencjaToolStripComboBox";
+            this.agencjaToolStripComboBox.Size = new System.Drawing.Size(110, 25);
+            this.agencjaToolStripComboBox.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.kryteriumWyszukiwania_KeyPress);
+            // 
+            // toolStripLabel7
+            // 
+            this.toolStripLabel7.Name = "toolStripLabel7";
+            this.toolStripLabel7.Size = new System.Drawing.Size(58, 22);
+            this.toolStripLabel7.Text = "Wydawca:";
+            // 
+            // cbWydawca
+            // 
+            this.cbWydawca.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+            this.cbWydawca.Items.AddRange(new object[] {
+            "",
+            "AACT",
+            "Sam Press"});
+            this.cbWydawca.Name = "cbWydawca";
+            this.cbWydawca.Size = new System.Drawing.Size(75, 25);
+            // 
+            // toolStripLabel6
+            // 
+            this.toolStripLabel6.Name = "toolStripLabel6";
+            this.toolStripLabel6.Size = new System.Drawing.Size(85, 22);
+            this.toolStripLabel6.Text = "Sposób zap³aty:";
+            // 
+            // cbSposobZaplaty
+            // 
+            this.cbSposobZaplaty.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
+            this.cbSposobZaplaty.Items.AddRange(new object[] {
+            "",
+            "Barter",
+            "Gotówka",
+            "Karta kredytowa",
+            "Przelew"});
+            this.cbSposobZaplaty.Name = "cbSposobZaplaty";
+            this.cbSposobZaplaty.Size = new System.Drawing.Size(100, 25);
+            this.cbSposobZaplaty.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.kryteriumWyszukiwania_KeyPress);
+            // 
+            // szukajToolStripButton
+            // 
+            this.szukajToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
+            this.szukajToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("szukajToolStripButton.Image")));
+            this.szukajToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.szukajToolStripButton.Name = "szukajToolStripButton";
+            this.szukajToolStripButton.Size = new System.Drawing.Size(48, 22);
+            this.szukajToolStripButton.Text = "SZUKAJ";
+            this.szukajToolStripButton.Click += new System.EventHandler(this.szukajToolStripButton_Click);
+            // 
+            // wyczyscPolaToolStripButton
+            // 
+            this.wyczyscPolaToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+            this.wyczyscPolaToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("wyczyscPolaToolStripButton.Image")));
+            this.wyczyscPolaToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta;
+            this.wyczyscPolaToolStripButton.Name = "wyczyscPolaToolStripButton";
+            this.wyczyscPolaToolStripButton.Size = new System.Drawing.Size(23, 22);
+            this.wyczyscPolaToolStripButton.Text = "toolStripButton2";
+            this.wyczyscPolaToolStripButton.ToolTipText = "Wyczyæ filtr wyszukiwania";
+            this.wyczyscPolaToolStripButton.Click += new System.EventHandler(this.wyczyscPolaToolStripButton_Click);
+            // 
+            // panel
+            // 
+            this.panel.Controls.Add(this.label2);
+            this.panel.Controls.Add(this.label1);
+            this.panel.Controls.Add(this.bruttoTextBox);
+            this.panel.Controls.Add(this.nettoTextBox);
+            this.panel.Dock = System.Windows.Forms.DockStyle.Bottom;
+            this.panel.Location = new System.Drawing.Point(0, 630);
+            this.panel.Name = "panel";
+            this.panel.Size = new System.Drawing.Size(979, 34);
+            this.panel.TabIndex = 4;
+            // 
+            // label2
+            // 
+            this.label2.AutoSize = true;
+            this.label2.Location = new System.Drawing.Point(798, 13);
+            this.label2.Name = "label2";
+            this.label2.Size = new System.Drawing.Size(38, 13);
+            this.label2.TabIndex = 5;
+            this.label2.Text = "Brutto:";
+            // 
+            // label1
+            // 
+            this.label1.AutoSize = true;
+            this.label1.Location = new System.Drawing.Point(623, 13);
+            this.label1.Name = "label1";
+            this.label1.Size = new System.Drawing.Size(36, 13);
+            this.label1.TabIndex = 4;
+            this.label1.Text = "Netto:";
+            // 
+            // bruttoTextBox
+            // 
+            this.bruttoTextBox.BackColor = System.Drawing.Color.White;
+            this.bruttoTextBox.Location = new System.Drawing.Point(842, 6);
+            this.bruttoTextBox.Name = "bruttoTextBox";
+            this.bruttoTextBox.ReadOnly = true;
+            this.bruttoTextBox.Size = new System.Drawing.Size(125, 20);
+            this.bruttoTextBox.TabIndex = 1;
+            this.bruttoTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
+            // 
+            // nettoTextBox
+            // 
+            this.nettoTextBox.BackColor = System.Drawing.Color.White;
+            this.nettoTextBox.Location = new System.Drawing.Point(665, 6);
+            this.nettoTextBox.Name = "nettoTextBox";
+            this.nettoTextBox.ReadOnly = true;
+            this.nettoTextBox.Size = new System.Drawing.Size(116, 20);
+            this.nettoTextBox.TabIndex = 0;
+            this.nettoTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
+            // 
+            // reklamaTableAdapter
+            // 
+            this.reklamaTableAdapter.ClearBeforeFill = true;
+            // 
+            // VIEW_ZESTAWIENIE_FAKTUR_NOWETableAdapter
+            // 
+            this.VIEW_ZESTAWIENIE_FAKTUR_NOWETableAdapter.ClearBeforeFill = true;
+            // 
+            // fakturyDataGridView
+            // 
+            this.fakturyDataGridView.AllowUserToAddRows = false;
+            this.fakturyDataGridView.AllowUserToDeleteRows = false;
+            dataGridViewCellStyle1.BackColor = System.Drawing.Color.MintCream;
+            this.fakturyDataGridView.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
+            this.fakturyDataGridView.AutoGenerateColumns = false;
+            this.fakturyDataGridView.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
+            this.fakturyDataGridView.BackgroundColor = System.Drawing.Color.White;
+            this.fakturyDataGridView.CausesValidation = false;
+            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
+            dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
+            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
+            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
+            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
+            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
+            this.fakturyDataGridView.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
+            this.fakturyDataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+            this.fakturyDataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
+            this.FirstName,
+            this.TERMIN_ZAPLATY,
+            this.dataWplaty,
+            this.NUMER,
+            this.nRFKDataGridViewTextBoxColumn,
+            this.sumaNettoZEmisji,
+            this.nETTODataGridViewTextBoxColumn,
+            this.sVATDataGridViewTextBoxColumn,
+            this.vATDataGridViewTextBoxColumn,
+            this.BRUTTO,
+            this.wplata_brutto,
+            this.waluta_miano,
+            this.waluta_brutto,
+            this.wplata_waluta_brutto,
+            this.dATASPRZEDAZYDataGridViewTextBoxColumn,
+            this.symbolDataGridViewTextBoxColumn,
+            this.agencjaDataGridViewTextBoxColumn,
+            this.SposobZaplaty});
+            this.fakturyDataGridView.DataSource = this.VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource;
+            this.fakturyDataGridView.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.fakturyDataGridView.GridColor = System.Drawing.Color.LightGray;
+            this.fakturyDataGridView.Location = new System.Drawing.Point(0, 56);
+            this.fakturyDataGridView.MultiSelect = false;
+            this.fakturyDataGridView.Name = "fakturyDataGridView";
+            this.fakturyDataGridView.ReadOnly = true;
+            this.fakturyDataGridView.RowHeadersWidth = 10;
+            this.fakturyDataGridView.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
+            this.fakturyDataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
+            this.fakturyDataGridView.Size = new System.Drawing.Size(979, 574);
+            this.fakturyDataGridView.TabIndex = 5;
+            this.fakturyDataGridView.DataBindingComplete += new System.Windows.Forms.DataGridViewBindingCompleteEventHandler(this.fakturyDataGridView_DataBindingComplete);
+            // 
+            // FirstName
+            // 
+            this.FirstName.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
+            this.FirstName.DataPropertyName = "FirstName";
+            this.FirstName.HeaderText = "Klient";
+            this.FirstName.Name = "FirstName";
+            this.FirstName.ReadOnly = true;
+            this.FirstName.Width = 85;
+            // 
+            // TERMIN_ZAPLATY
+            // 
+            this.TERMIN_ZAPLATY.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
+            this.TERMIN_ZAPLATY.DataPropertyName = "TERMIN_ZAPLATY";
+            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            this.TERMIN_ZAPLATY.DefaultCellStyle = dataGridViewCellStyle3;
+            this.TERMIN_ZAPLATY.HeaderText = "Termin p³at.";
+            this.TERMIN_ZAPLATY.Name = "TERMIN_ZAPLATY";
+            this.TERMIN_ZAPLATY.ReadOnly = true;
+            this.TERMIN_ZAPLATY.Width = 90;
+            // 
+            // dataWplaty
+            // 
+            this.dataWplaty.DataPropertyName = "dataWplaty";
+            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            this.dataWplaty.DefaultCellStyle = dataGridViewCellStyle4;
+            this.dataWplaty.HeaderText = "Data wp³aty";
+            this.dataWplaty.Name = "dataWplaty";
+            this.dataWplaty.ReadOnly = true;
+            this.dataWplaty.Width = 83;
+            // 
+            // NUMER
+            // 
+            this.NUMER.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
+            this.NUMER.DataPropertyName = "NUMER";
+            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            this.NUMER.DefaultCellStyle = dataGridViewCellStyle5;
+            this.NUMER.HeaderText = "Nr";
+            this.NUMER.Name = "NUMER";
+            this.NUMER.ReadOnly = true;
+            this.NUMER.Width = 30;
+            // 
+            // nRFKDataGridViewTextBoxColumn
+            // 
+            this.nRFKDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
+            this.nRFKDataGridViewTextBoxColumn.DataPropertyName = "NR_FK";
+            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
+            this.nRFKDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle6;
+            this.nRFKDataGridViewTextBoxColumn.HeaderText = "Nr fakt.";
+            this.nRFKDataGridViewTextBoxColumn.Name = "nRFKDataGridViewTextBoxColumn";
+            this.nRFKDataGridViewTextBoxColumn.ReadOnly = true;
+            this.nRFKDataGridViewTextBoxColumn.Width = 80;
+            // 
+            // sumaNettoZEmisji
+            // 
+            this.sumaNettoZEmisji.DataPropertyName = "sumaNettoZEmisji";
+            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
+            dataGridViewCellStyle7.Format = "C2";
+            dataGridViewCellStyle7.NullValue = null;
+            this.sumaNettoZEmisji.DefaultCellStyle = dataGridViewCellStyle7;
+            this.sumaNettoZEmisji.HeaderText = "Wartoæ emisji w zamówieniu";
+            this.sumaNettoZEmisji.Name = "sumaNettoZEmisji";
+            this.sumaNettoZEmisji.ReadOnly = true;
+            this.sumaNettoZEmisji.Width = 105;
+            // 
+            // nETTODataGridViewTextBoxColumn
+            // 
+            this.nETTODataGridViewTextBoxColumn.DataPropertyName = "NETTO";
+            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
+            dataGridViewCellStyle8.Format = "C2";
+            this.nETTODataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle8;
+            this.nETTODataGridViewTextBoxColumn.HeaderText = "Netto";
+            this.nETTODataGridViewTextBoxColumn.Name = "nETTODataGridViewTextBoxColumn";
+            this.nETTODataGridViewTextBoxColumn.ReadOnly = true;
+            this.nETTODataGridViewTextBoxColumn.Width = 58;
+            // 
+            // sVATDataGridViewTextBoxColumn
+            // 
+            this.sVATDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
+            this.sVATDataGridViewTextBoxColumn.DataPropertyName = "S_VAT";
+            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            dataGridViewCellStyle9.Format = "P";
+            this.sVATDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle9;
+            this.sVATDataGridViewTextBoxColumn.HeaderText = "%VAT";
+            this.sVATDataGridViewTextBoxColumn.Name = "sVATDataGridViewTextBoxColumn";
+            this.sVATDataGridViewTextBoxColumn.ReadOnly = true;
+            this.sVATDataGridViewTextBoxColumn.Width = 70;
+            // 
+            // vATDataGridViewTextBoxColumn
+            // 
+            this.vATDataGridViewTextBoxColumn.DataPropertyName = "VAT";
+            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
+            dataGridViewCellStyle10.Format = "C2";
+            dataGridViewCellStyle10.NullValue = null;
+            this.vATDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle10;
+            this.vATDataGridViewTextBoxColumn.HeaderText = "VAT";
+            this.vATDataGridViewTextBoxColumn.Name = "vATDataGridViewTextBoxColumn";
+            this.vATDataGridViewTextBoxColumn.ReadOnly = true;
+            this.vATDataGridViewTextBoxColumn.Width = 53;
+            // 
+            // BRUTTO
+            // 
+            this.BRUTTO.DataPropertyName = "BRUTTO";
+            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
+            dataGridViewCellStyle11.Format = "C";
+            this.BRUTTO.DefaultCellStyle = dataGridViewCellStyle11;
+            this.BRUTTO.HeaderText = "Brutto";
+            this.BRUTTO.Name = "BRUTTO";
+            this.BRUTTO.ReadOnly = true;
+            this.BRUTTO.Width = 60;
+            // 
+            // wplata_brutto
+            // 
+            this.wplata_brutto.DataPropertyName = "wplata_brutto";
+            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
+            dataGridViewCellStyle12.Format = "c";
+            this.wplata_brutto.DefaultCellStyle = dataGridViewCellStyle12;
+            this.wplata_brutto.HeaderText = "Wp³ata PLN";
+            this.wplata_brutto.Name = "wplata_brutto";
+            this.wplata_brutto.ReadOnly = true;
+            this.wplata_brutto.Width = 85;
+            // 
+            // waluta_miano
+            // 
+            this.waluta_miano.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
+            this.waluta_miano.DataPropertyName = "waluta_miano";
+            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            dataGridViewCellStyle13.NullValue = "PLN";
+            this.waluta_miano.DefaultCellStyle = dataGridViewCellStyle13;
+            this.waluta_miano.HeaderText = "W";
+            this.waluta_miano.Name = "waluta_miano";
+            this.waluta_miano.ReadOnly = true;
+            this.waluta_miano.Width = 35;
+            // 
+            // waluta_brutto
+            // 
+            this.waluta_brutto.DataPropertyName = "waluta_brutto";
+            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
+            dataGridViewCellStyle14.Format = "N2";
+            dataGridViewCellStyle14.NullValue = null;
+            this.waluta_brutto.DefaultCellStyle = dataGridViewCellStyle14;
+            this.waluta_brutto.HeaderText = "Waluta brutto";
+            this.waluta_brutto.Name = "waluta_brutto";
+            this.waluta_brutto.ReadOnly = true;
+            this.waluta_brutto.Width = 88;
+            // 
+            // wplata_waluta_brutto
+            // 
+            this.wplata_waluta_brutto.DataPropertyName = "wplata_waluta_brutto";
+            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
+            dataGridViewCellStyle15.Format = "N";
+            this.wplata_waluta_brutto.DefaultCellStyle = dataGridViewCellStyle15;
+            this.wplata_waluta_brutto.HeaderText = "Wp³ata wal.";
+            this.wplata_waluta_brutto.Name = "wplata_waluta_brutto";
+            this.wplata_waluta_brutto.ReadOnly = true;
+            this.wplata_waluta_brutto.Width = 83;
+            // 
+            // dATASPRZEDAZYDataGridViewTextBoxColumn
+            // 
+            this.dATASPRZEDAZYDataGridViewTextBoxColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
+            this.dATASPRZEDAZYDataGridViewTextBoxColumn.DataPropertyName = "DATA_SPRZEDAZY";
+            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
+            this.dATASPRZEDAZYDataGridViewTextBoxColumn.DefaultCellStyle = dataGridViewCellStyle16;
+            this.dATASPRZEDAZYDataGridViewTextBoxColumn.HeaderText = "Data sprzed.";
+            this.dATASPRZEDAZYDataGridViewTextBoxColumn.Name = "dATASPRZEDAZYDataGridViewTextBoxColumn";
+            this.dATASPRZEDAZYDataGridViewTextBoxColumn.ReadOnly = true;
+            this.dATASPRZEDAZYDataGridViewTextBoxColumn.Width = 90;
+            // 
+            // symbolDataGridViewTextBoxColumn
+            // 
+            this.symbolDataGridViewTextBoxColumn.DataPropertyName = "Symbol";
+            this.symbolDataGridViewTextBoxColumn.HeaderText = "Agent";
+            this.symbolDataGridViewTextBoxColumn.Name = "symbolDataGridViewTextBoxColumn";
+            this.symbolDataGridViewTextBoxColumn.ReadOnly = true;
+            this.symbolDataGridViewTextBoxColumn.Width = 60;
+            // 
+            // agencjaDataGridViewTextBoxColumn
+            // 
+            this.agencjaDataGridViewTextBoxColumn.DataPropertyName = "Agencja";
+            this.agencjaDataGridViewTextBoxColumn.HeaderText = "Agencja";
+            this.agencjaDataGridViewTextBoxColumn.Name = "agencjaDataGridViewTextBoxColumn";
+            this.agencjaDataGridViewTextBoxColumn.ReadOnly = true;
+            this.agencjaDataGridViewTextBoxColumn.Width = 71;
+            // 
+            // SposobZaplaty
+            // 
+            this.SposobZaplaty.DataPropertyName = "SposobZaplaty";
+            this.SposobZaplaty.HeaderText = "Sposób zap³aty";
+            this.SposobZaplaty.Name = "SposobZaplaty";
+            this.SposobZaplaty.ReadOnly = true;
+            this.SposobZaplaty.Width = 97;
+            // 
+            // FacturesFormNew
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ClientSize = new System.Drawing.Size(979, 664);
+            this.ControlBox = false;
+            this.Controls.Add(this.fakturyDataGridView);
+            this.Controls.Add(this.panel);
+            this.Controls.Add(this.wyszukajToolStrip);
+            this.Controls.Add(this.bindingNavigator1);
+            this.Name = "FacturesFormNew";
+            this.Text = "Faktury";
+            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
+            this.Load += new System.EventHandler(this.FacturesForm_Load);
+            this.Shown += new System.EventHandler(this.FacturesForm_Shown);
+            ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).EndInit();
+            this.bindingNavigator1.ResumeLayout(false);
+            this.bindingNavigator1.PerformLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.rEKLAMADataSet)).EndInit();
+            this.wyszukajToolStrip.ResumeLayout(false);
+            this.wyszukajToolStrip.PerformLayout();
+            this.panel.ResumeLayout(false);
+            this.panel.PerformLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.fakturyDataGridView)).EndInit();
+            this.ResumeLayout(false);
+            this.PerformLayout();
+
+        }
+
+        #endregion
+
+        private System.Windows.Forms.BindingNavigator bindingNavigator1;
+        private System.Windows.Forms.ToolStripLabel bindingNavigatorCountItem;
+        private System.Windows.Forms.ToolStripButton bindingNavigatorMoveFirstItem;
+        private System.Windows.Forms.ToolStripButton bindingNavigatorMovePreviousItem;
+        private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator;
+        private System.Windows.Forms.ToolStripTextBox bindingNavigatorPositionItem;
+        private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator1;
+        private System.Windows.Forms.ToolStripButton bindingNavigatorMoveNextItem;
+        private System.Windows.Forms.ToolStripButton bindingNavigatorMoveLastItem;
+        private System.Windows.Forms.ToolStripSeparator bindingNavigatorSeparator2;
+        private REKLAMADataSet rEKLAMADataSet;
+        private Baza_Reklam.REKLAMADataSetTableAdapters.REKLAMATableAdapter reklamaTableAdapter;
+        private System.Windows.Forms.ToolStripButton wyszukajToolStripButton;
+        private System.Windows.Forms.ToolStrip wyszukajToolStrip;
+        private System.Windows.Forms.Panel panel;
+        private System.Windows.Forms.ToolStripLabel toolStripLabel1;
+        private System.Windows.Forms.ToolStripTextBox nrFakturyToolStripTextBox;
+        private System.Windows.Forms.ToolStripButton szukajToolStripButton;
+        private System.Windows.Forms.ToolStripLabel toolStripLabel2;
+        private System.Windows.Forms.ToolStripTextBox kodRozliczeniowyToolStripTextBox;
+        private System.Windows.Forms.TextBox bruttoTextBox;
+        private System.Windows.Forms.TextBox nettoTextBox;
+        private System.Windows.Forms.ToolStripButton toolStripButton1;
+        private System.Windows.Forms.ToolStripButton wyczyscPolaToolStripButton;
+        private System.Windows.Forms.ToolStripButton podgladToolStripButton;
+        private System.Windows.Forms.ToolStripLabel toolStripLabel3;
+        private System.Windows.Forms.ToolStripTextBox rokToolStripTextBox;
+        private System.Windows.Forms.ToolStripLabel toolStripLabel4;
+        private System.Windows.Forms.ToolStripComboBox agencjaToolStripComboBox;
+        private System.Windows.Forms.ToolStripLabel toolStripLabel5;
+        private System.Windows.Forms.ToolStripTextBox miesiacToolStripTextBox;
+        private System.Windows.Forms.ToolStripButton klientToolStripButton;
+        private System.Windows.Forms.ToolStripButton excelToolStripButton;
+        private System.Windows.Forms.BindingSource VIEW_ZESTAWIENIE_FAKTUR_NOWEBindingSource;
+        private Baza_Reklam.REKLAMADataSetTableAdapters.VIEW_ZESTAWIENIE_FAKTUR_NOWETableAdapter VIEW_ZESTAWIENIE_FAKTUR_NOWETableAdapter;
+        private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
+        private System.Windows.Forms.ToolStripButton wplata2toolStripButton;
+        private System.Windows.Forms.ToolStripButton zamowieniaToolStripButton;
+        private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
+        private System.Windows.Forms.ToolStripButton PoznanKatowicetoolStripButton;
+        private System.Windows.Forms.ToolStripButton odswiezToolStripButton;
+        private System.Windows.Forms.Label label2;
+        private System.Windows.Forms.Label label1;
+        private System.Windows.Forms.ToolStripLabel toolStripLabel6;
+        private System.Windows.Forms.ToolStripComboBox cbSposobZaplaty;
+        private System.Windows.Forms.DataGridView fakturyDataGridView;
+        private System.Windows.Forms.DataGridViewTextBoxColumn FirstName;
+        private System.Windows.Forms.DataGridViewTextBoxColumn TERMIN_ZAPLATY;
+        private System.Windows.Forms.DataGridViewTextBoxColumn dataWplaty;
+        private System.Windows.Forms.DataGridViewTextBoxColumn NUMER;
+        private System.Windows.Forms.DataGridViewTextBoxColumn nRFKDataGridViewTextBoxColumn;
+        private System.Windows.Forms.DataGridViewTextBoxColumn sumaNettoZEmisji;
+        private System.Windows.Forms.DataGridViewTextBoxColumn nETTODataGridViewTextBoxColumn;
+        private System.Windows.Forms.DataGridViewTextBoxColumn sVATDataGridViewTextBoxColumn;
+        private System.Windows.Forms.DataGridViewTextBoxColumn vATDataGridViewTextBoxColumn;
+        private System.Windows.Forms.DataGridViewTextBoxColumn BRUTTO;
+        private System.Windows.Forms.DataGridViewTextBoxColumn wplata_brutto;
+        private System.Windows.Forms.DataGridViewTextBoxColumn waluta_miano;
+        private System.Windows.Forms.DataGridViewTextBoxColumn waluta_brutto;
+        private System.Windows.Forms.DataGridViewTextBoxColumn wplata_waluta_brutto;
+        private System.Windows.Forms.DataGridViewTextBoxColumn dATASPRZEDAZYDataGridViewTextBoxColumn;
+        private System.Windows.Forms.DataGridViewTextBoxColumn symbolDataGridViewTextBoxColumn;
+        private System.Windows.Forms.DataGridViewTextBoxColumn agencjaDataGridViewTextBoxColumn;
+        private System.Windows.Forms.DataGridViewTextBoxColumn SposobZaplaty;
+        private System.Windows.Forms.ToolStripLabel toolStripLabel7;
+        private System.Windows.Forms.ToolStripComboBox cbWydawca;
+        private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
+
+    }
+}
