章政 8 жил өмнө
parent
commit
0c45a0eaec

+ 30 - 0
UAS-MES/DataOperate/ExcelHandler.cs

@@ -5,6 +5,7 @@ using NPOI.HSSF.UserModel;
 using NPOI.SS.UserModel;
 using NPOI.HSSF.Util;
 using NPOI.SS.Formula.Eval;
+using System.Text;
 
 namespace UAS_MES.DataOperate
 {
@@ -143,6 +144,35 @@ namespace UAS_MES.DataOperate
             return dt;
         }
 
+        public void WriteTxt(DataTable dt, string FolderPath, string FileName)
+        {
+            StreamWriter sr;
+            string filePath = @FolderPath;
+            string report;
+            if (File.Exists(filePath + "\\" + FileName))   //如果文件存在,则创建File.AppendText对象   
+            {
+                File.Delete(filePath + "\\" + FileName);
+            }
+            sr = File.CreateText(filePath + "\\" + FileName);
+            StringBuilder sb = new StringBuilder();
+            string Title = "";
+            foreach (DataColumn dc in dt.Columns)
+            {
+                Title += String.Format("{0,20}", dc.ColumnName.ToString());
+            }
+            sr.WriteLine(Title + "\r");
+            foreach (DataRow dr in dt.Rows)
+            {
+                string text = "";
+                for (int i = 0; i < dt.Columns.Count; i++)
+                {
+                    text += String.Format("{0,20}", dr[i].ToString());
+                }
+                sr.WriteLine(text + "\r");
+            }
+            sr.Close();
+        }
+
         /// <summary>
         /// 将DataTable形式的数据转成Excel格式的,然后用字节流的形式写入文件
         /// </summary>

+ 221 - 0
UAS-MES/FunctionCode/Query/Query_SpecialReport.Designer.cs

@@ -0,0 +1,221 @@
+namespace UAS_MES.Query
+{
+    partial class Query_SpecialReport
+    {
+        /// <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()
+        {
+            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Query_SpecialReport));
+            this.Export = new UAS_MES.CustomControl.ButtonUtil.NormalButton();
+            this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
+            this.label1 = new System.Windows.Forms.Label();
+            this.label2 = new System.Windows.Forms.Label();
+            this.label3 = new System.Windows.Forms.Label();
+            this.label4 = new System.Windows.Forms.Label();
+            this.SerialNum = new UAS_MES.CustomControl.TextBoxWithIcon.EnterTextBox();
+            this.CartonBegin = new UAS_MES.CustomControl.TextBoxWithIcon.EnterTextBox();
+            this.CartonEnd = new UAS_MES.CustomControl.TextBoxWithIcon.EnterTextBox();
+            this.PaletteEnd = new UAS_MES.CustomControl.TextBoxWithIcon.EnterTextBox();
+            this.PaletteBegin = new UAS_MES.CustomControl.TextBoxWithIcon.EnterTextBox();
+            this.InDate = new System.Windows.Forms.DateTimePicker();
+            this.SuspendLayout();
+            // 
+            // Export
+            // 
+            this.Export.AllPower = null;
+            this.Export.BackColor = System.Drawing.Color.Transparent;
+            this.Export.DownImage = ((System.Drawing.Image)(resources.GetObject("Export.DownImage")));
+            this.Export.Image = null;
+            this.Export.IsShowBorder = true;
+            this.Export.Location = new System.Drawing.Point(181, 272);
+            this.Export.MoveImage = ((System.Drawing.Image)(resources.GetObject("Export.MoveImage")));
+            this.Export.Name = "Export";
+            this.Export.NormalImage = ((System.Drawing.Image)(resources.GetObject("Export.NormalImage")));
+            this.Export.Power = null;
+            this.Export.Size = new System.Drawing.Size(75, 28);
+            this.Export.TabIndex = 0;
+            this.Export.Text = "导出";
+            this.Export.UseVisualStyleBackColor = false;
+            this.Export.Click += new System.EventHandler(this.Export_Click);
+            // 
+            // label1
+            // 
+            this.label1.AutoSize = true;
+            this.label1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label1.Location = new System.Drawing.Point(53, 80);
+            this.label1.Name = "label1";
+            this.label1.Size = new System.Drawing.Size(52, 21);
+            this.label1.TabIndex = 1;
+            this.label1.Text = "SERIE";
+            // 
+            // label2
+            // 
+            this.label2.AutoSize = true;
+            this.label2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label2.Location = new System.Drawing.Point(53, 116);
+            this.label2.Name = "label2";
+            this.label2.Size = new System.Drawing.Size(77, 21);
+            this.label2.TabIndex = 2;
+            this.label2.Text = "CARTON";
+            // 
+            // label3
+            // 
+            this.label3.AutoSize = true;
+            this.label3.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label3.Location = new System.Drawing.Point(53, 194);
+            this.label3.Name = "label3";
+            this.label3.Size = new System.Drawing.Size(81, 21);
+            this.label3.TabIndex = 3;
+            this.label3.Text = "DATECRE";
+            // 
+            // label4
+            // 
+            this.label4.AutoSize = true;
+            this.label4.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
+            this.label4.Location = new System.Drawing.Point(53, 153);
+            this.label4.Name = "label4";
+            this.label4.Size = new System.Drawing.Size(75, 21);
+            this.label4.TabIndex = 4;
+            this.label4.Text = "PALETTE";
+            // 
+            // SerialNum
+            // 
+            this.SerialNum.AllPower = null;
+            this.SerialNum.BackColor = System.Drawing.Color.White;
+            this.SerialNum.ID = null;
+            this.SerialNum.Location = new System.Drawing.Point(181, 80);
+            this.SerialNum.Name = "SerialNum";
+            this.SerialNum.Power = null;
+            this.SerialNum.Size = new System.Drawing.Size(196, 21);
+            this.SerialNum.Str = null;
+            this.SerialNum.Str1 = null;
+            this.SerialNum.Str2 = null;
+            this.SerialNum.TabIndex = 5;
+            // 
+            // CartonBegin
+            // 
+            this.CartonBegin.AllPower = null;
+            this.CartonBegin.BackColor = System.Drawing.Color.White;
+            this.CartonBegin.ID = null;
+            this.CartonBegin.Location = new System.Drawing.Point(181, 120);
+            this.CartonBegin.Name = "CartonBegin";
+            this.CartonBegin.Power = null;
+            this.CartonBegin.Size = new System.Drawing.Size(196, 21);
+            this.CartonBegin.Str = null;
+            this.CartonBegin.Str1 = null;
+            this.CartonBegin.Str2 = null;
+            this.CartonBegin.TabIndex = 6;
+            // 
+            // CartonEnd
+            // 
+            this.CartonEnd.AllPower = null;
+            this.CartonEnd.BackColor = System.Drawing.Color.White;
+            this.CartonEnd.ID = null;
+            this.CartonEnd.Location = new System.Drawing.Point(377, 120);
+            this.CartonEnd.Name = "CartonEnd";
+            this.CartonEnd.Power = null;
+            this.CartonEnd.Size = new System.Drawing.Size(196, 21);
+            this.CartonEnd.Str = null;
+            this.CartonEnd.Str1 = null;
+            this.CartonEnd.Str2 = null;
+            this.CartonEnd.TabIndex = 7;
+            // 
+            // PaletteEnd
+            // 
+            this.PaletteEnd.AllPower = null;
+            this.PaletteEnd.BackColor = System.Drawing.Color.White;
+            this.PaletteEnd.ID = null;
+            this.PaletteEnd.Location = new System.Drawing.Point(377, 157);
+            this.PaletteEnd.Name = "PaletteEnd";
+            this.PaletteEnd.Power = null;
+            this.PaletteEnd.Size = new System.Drawing.Size(196, 21);
+            this.PaletteEnd.Str = null;
+            this.PaletteEnd.Str1 = null;
+            this.PaletteEnd.Str2 = null;
+            this.PaletteEnd.TabIndex = 9;
+            // 
+            // PaletteBegin
+            // 
+            this.PaletteBegin.AllPower = null;
+            this.PaletteBegin.BackColor = System.Drawing.Color.White;
+            this.PaletteBegin.ID = null;
+            this.PaletteBegin.Location = new System.Drawing.Point(181, 157);
+            this.PaletteBegin.Name = "PaletteBegin";
+            this.PaletteBegin.Power = null;
+            this.PaletteBegin.Size = new System.Drawing.Size(196, 21);
+            this.PaletteBegin.Str = null;
+            this.PaletteBegin.Str1 = null;
+            this.PaletteBegin.Str2 = null;
+            this.PaletteBegin.TabIndex = 8;
+            // 
+            // InDate
+            // 
+            this.InDate.Location = new System.Drawing.Point(181, 194);
+            this.InDate.Name = "InDate";
+            this.InDate.Size = new System.Drawing.Size(196, 21);
+            this.InDate.TabIndex = 10;
+            // 
+            // Query_SpecialReport
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ClientSize = new System.Drawing.Size(747, 538);
+            this.Controls.Add(this.InDate);
+            this.Controls.Add(this.PaletteEnd);
+            this.Controls.Add(this.PaletteBegin);
+            this.Controls.Add(this.CartonEnd);
+            this.Controls.Add(this.CartonBegin);
+            this.Controls.Add(this.SerialNum);
+            this.Controls.Add(this.label4);
+            this.Controls.Add(this.label3);
+            this.Controls.Add(this.label2);
+            this.Controls.Add(this.label1);
+            this.Controls.Add(this.Export);
+            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+            this.Name = "Query_SpecialReport";
+            this.Tag = "Query!SpecialReport";
+            this.Text = "Query_SpecialReport";
+            this.ResumeLayout(false);
+            this.PerformLayout();
+
+        }
+
+        #endregion
+
+        private CustomControl.ButtonUtil.NormalButton Export;
+        private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
+        private System.Windows.Forms.Label label1;
+        private System.Windows.Forms.Label label2;
+        private System.Windows.Forms.Label label3;
+        private System.Windows.Forms.Label label4;
+        private CustomControl.TextBoxWithIcon.EnterTextBox SerialNum;
+        private CustomControl.TextBoxWithIcon.EnterTextBox CartonBegin;
+        private CustomControl.TextBoxWithIcon.EnterTextBox CartonEnd;
+        private CustomControl.TextBoxWithIcon.EnterTextBox PaletteEnd;
+        private CustomControl.TextBoxWithIcon.EnterTextBox PaletteBegin;
+        private System.Windows.Forms.DateTimePicker InDate;
+    }
+}

+ 133 - 0
UAS-MES/FunctionCode/Query/Query_SpecialReport.cs

@@ -0,0 +1,133 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+using UAS_MES.DataOperate;
+using UAS_MES.Entity;
+
+namespace UAS_MES.Query
+{
+    public partial class Query_SpecialReport : Form
+    {
+
+        DataHelper dh = SystemInf.dh;
+
+        public Query_SpecialReport()
+        {
+            InitializeComponent();
+        }
+
+        private void Export_Click(object sender, EventArgs e)
+        {
+            ExcelExport("");
+        }
+
+
+        //选择导出Excel时是选择导出数据的还是模板
+        private void ExcelExport(string DataOrTemplet)
+        {
+            //Data表示导出数据
+            //Templet表示导出模板
+            folderBrowserDialog1.Description = "选择导出的路径";
+            DialogResult result = folderBrowserDialog1.ShowDialog();
+            if (result == DialogResult.OK)
+            {
+                string FolderPath = folderBrowserDialog1.SelectedPath;
+                ExcelHandler eh = new ExcelHandler();
+                DataTable dt = new DataTable();
+                string st_tablesql = "";
+                string st_id = "";
+                string st_condition = "";
+                dt = (DataTable)dh.ExecuteSql("select st_id,st_tablesql,st_condition from SEARCHTEMPLATE where st_title='ZIDE出货报表'", "select");
+                if (dt.Rows.Count > 0)
+                {
+                    st_tablesql = dt.Rows[0]["st_tablesql"].ToString();
+                    st_id = dt.Rows[0]["st_id"].ToString();
+                    st_condition = dt.Rows[0]["st_condition"].ToString();
+                    dt = (DataTable)dh.ExecuteSql("select stg_field,stg_text,stg_table,stg_formula,stg_type from  SEARCHTEMPLATEgrid where stg_stid='" + st_id + "'", "select");
+                    string SQLField = "";
+                    for (int i = 0; i < dt.Rows.Count; i++)
+                    {
+                        if (dt.Rows[i]["stg_table"].ToString() != "")
+                        {
+                            if (dt.Rows[i]["stg_type"].ToString() == "DATE")
+                            {
+                                SQLField += "to_char(" + dt.Rows[i]["stg_field"].ToString() + ",'YYYYMMDD') as " + dt.Rows[i]["stg_text"].ToString() + ",";
+                            }
+                            else
+                            {
+                                SQLField += dt.Rows[i]["stg_field"].ToString() + " as " + dt.Rows[i]["stg_text"].ToString() + ",";
+                            }
+                        }
+                        else
+                        {
+                            if (dt.Rows[i]["stg_formula"].ToString().Replace("'", "").Trim() == "")
+                                SQLField += "''" + " as " + dt.Rows[i]["stg_text"].ToString() + ",";
+                            else
+                                SQLField += dt.Rows[i]["stg_formula"].ToString() + " as " + dt.Rows[i]["stg_text"].ToString() + ",";
+                        }
+                    }
+                    SQLField = SQLField.Substring(0, SQLField.Length - 1);
+                    string sql = "select " + SQLField + " from " + st_tablesql;
+                    if (st_condition != "")
+                    {
+                        sql += " where " + st_condition;
+                    }
+                    if (SerialNum.Text != "")
+                    {
+                        sql += " and ms_sncode='" + SerialNum.Text + "'";
+                    }
+                    if (CartonBegin.Text != "" || CartonEnd.Text != "")
+                    {
+                        if (CartonBegin.Text != "" && CartonEnd.Text == "")
+                        {
+                            sql += " and ms_outboxcode> '" + CartonBegin.Text + "' ";
+                        }
+                        if (CartonBegin.Text == "" && CartonEnd.Text != "")
+                        {
+                            sql += " and ms_outboxcode< '" + CartonBegin.Text + "' ";
+                        }
+                        if (CartonBegin.Text != "" && CartonEnd.Text != "")
+                        {
+                            sql += " and ms_outboxcode between '" + CartonBegin.Text + "' and '" + CartonEnd.Text + "' ";
+                        }
+                    }
+                    if (PaletteBegin.Text != "" || PaletteBegin.Text != "")
+                    {
+                        if (PaletteBegin.Text != "" && PaletteEnd.Text == "")
+                        {
+                            sql += " and v_outboxcode> '" + PaletteBegin.Text + "' ";
+                        }
+                        if (PaletteBegin.Text == "" && PaletteEnd.Text != "")
+                        {
+                            sql += " and v_outboxcode< '" + PaletteEnd.Text + "' ";
+                        }
+                        if (PaletteBegin.Text != "" && PaletteEnd.Text != "")
+                        {
+                            sql += " and v_outboxcode between '" + PaletteBegin.Text + "' and '" + PaletteEnd.Text + "' ";
+                        }
+                    }
+                    if (InDate.Text != "")
+                    {
+                        sql += " and trunc(ms_indate) = trunc(to_date('" + InDate.Value.ToString("yyyy-MM-dd") + "','yyyy-MM-dd')) ";
+                    }
+                    dt = (DataTable)dh.ExecuteSql(sql, "select");
+                    //导出Excel的时候返回一个文件名,用户选择是否打开
+                    /*string filePath = */
+                    eh.WriteTxt(dt, FolderPath, "NL" + DateTime.Now.Year.ToString().Substring(2,2) + (DateTime.Now.DayOfYear < 100 ? "0" + DateTime.Now.DayOfYear.ToString() : DateTime.Now.DayOfYear.ToString()) + "COC");
+                    ////用户选择导出之后是否立即打开
+                    //MessageBoxButtons messButton = MessageBoxButtons.YesNo;
+                    //string openFile = MessageBox.Show(this.ParentForm, "是否打开文件", "提示", messButton).ToString();
+                    //if (openFile == "Yes")
+                    //{
+                    //    System.Diagnostics.Process.Start(filePath);
+                    //}
+                }
+            }
+        }
+    }
+}

+ 162 - 0
UAS-MES/FunctionCode/Query/Query_SpecialReport.resx

@@ -0,0 +1,162 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+  <data name="Export.DownImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAAEUAAAAWCAYAAACWl1FwAAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m
+        dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAFcSURBVFhH5di7UsJAFMbxtDT6QMI76IAFT0npIE0K
+        GcRORxHklpAIBHLfbILV8XxeNsMznJ35F5vu+82kWYuILD4N7oq75roCw27sb/x5WBdc27btntY64o/i
+        DnZjPxy4S6A0R6PHO1WUNHc9ep4uxIXd2D8eP/XZowWUThBG+n3p0stsKbbJ0qFDFFfscQuUbpzm9Pqx
+        Eh8c4PGLkuX0Nl+LDw4GJckUTRaO+OBQo+SKpitXfHAwKClfZuuN+OBgUDJV0NzxxAeHM5TFxhffGUpe
+        aFp5n+KDg0FRfHH8nfjgUKPoktztXnxwMCgFX7xdID441ChlRf7+ID44GBTNl21wFB8capSqot0xFB8c
+        /lE6Wa70IU5oH0Ziw/5cFebpoPUwHPbL04nCJKUgisWF3dgPB3gABc9v7fvBoBcnaVKdvkha2I39cPjx
+        oPrhusndcPinpIXd2N8gIusbTaFspKtR2SQAAAAASUVORK5CYII=
+</value>
+  </data>
+  <data name="Export.MoveImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAAEUAAAAWCAYAAACWl1FwAAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m
+        dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAFzSURBVFhH5djNSgJRGMZxL2P2gTfQFbZvHSEZFBEW
+        CEIQBEIgVFiS9qXWoDmp4/fHzDmjM2a+vU/QqUVX0DvwXxxn9fwYXJwYEcXWNzIWt83dcq7AsBv7LXgA
+        ZI0r71/aaqjCJf8o7sFu7IcDFwdK4vimrv1oSZXRnArdQFzYjf3pQkOzRxIoVWc6X5X6M7ruBGIr9mbU
+        9MIVe9hAcXvBO125WnxwgMcXSpcPF20tPjgYlI5eUK6lxAcHg9Lmw3nTFx8cDEpLLSjr+OKDg0FpqojO
+        Gp744GBQ3vyITutT8cHBoDheRCe1ifjgYFBe+ZCxJ+KDg0GpT0NKv4zFBweDUpuEdFQdiQ8OBsXmw2Fl
+        JD44/KCM53TwNBQfHAzKMx/2Hgfig8M3SrXYUasUfz67DwOxYf9dV5urg+RWzta4aEnxn83OfV9c2I39
+        cIAHUOJceTNbUfmW94GX0sJu7IcDPH5fXCe4EvfXxe5/D7ux3yKi2CfkPhTy27lqkwAAAABJRU5ErkJg
+        gg==
+</value>
+  </data>
+  <data name="Export.NormalImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        iVBORw0KGgoAAAANSUhEUgAAAEUAAAAWCAYAAACWl1FwAAAABGdBTUEAALGPC/xhBQAAABl0RVh0U29m
+        dHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAGVSURBVFhH5di7agJRFIXhDSKoYBQEC8FCECwEQRBE
+        4uUVEtTiPKVlom2wttM6IfF+15njXHRnL19jD/zFmanWV8zAEDNTp9OJS6/Sm2QUht3YH4cHtdvtF6k7
+        mUwG1tqd3FR3YTf2w0FKUVOu6XT68Xgw3+8PtWH/bDYbCkeLGo1Gz/d9JwzvrL0gCKx49KlerxtIBUGo
+        PjjAg2q1mqDc2fN99cEBHlStVk0oB+t56oMDPKhSqZggDNm1N/XBAR5ULpeNvGD46rrqgwM8qFQqGV8O
+        56ujPjjAg4rFosFL5ni5qA8O8KBCoWBuns/701l9cIAH5fN5QfF4dzipDw7woFwuZ+zN483+oD44wIOy
+        2azB52i13asPDvCgTCZjHGt5sdmqDw7woHQ6bRzX8ny1UR8c4EHJZNJc5fC7XKsPDvCgRCLR2x9Pzt9q
+        zT+Lpdqw/3A6W/HoUywWa32Nx8OL4zwffM8X6sJu7IcDPCgajaak7udoNNjsdgc81BZ2Yz8c4PH8cR2J
+        ROJSU3qXjMKwG/vjzEz/skOI3Zqgv7AAAAAASUVORK5CYII=
+</value>
+  </data>
+  <metadata name="folderBrowserDialog1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>17, 17</value>
+  </metadata>
+</root>