diff --git a/Project/EETGW.csproj b/Project/EETGW.csproj index 329da22..fdb290e 100644 --- a/Project/EETGW.csproj +++ b/Project/EETGW.csproj @@ -11,7 +11,7 @@ WinExe Project GWEE - v4.5.2 + v4.6 512 true False @@ -167,29 +167,8 @@ ..\packages\Microsoft.Owin.Hosting.4.1.1\lib\net45\Microsoft.Owin.Hosting.dll - - ..\packages\Microsoft.ReportViewer.11.0.3366.16\lib\Microsoft.ReportViewer.Common.dll - - - ..\packages\Microsoft.ReportViewer.11.0.3366.16\lib\Microsoft.ReportViewer.DataVisualization.DLL - - - ..\packages\Microsoft.ReportViewer.11.0.3366.16\lib\Microsoft.ReportViewer.Design.DLL - - - ..\packages\Microsoft.ReportViewer.11.0.3366.16\lib\Microsoft.ReportViewer.ProcessingObjectModel.DLL - - - ..\packages\Microsoft.ReportViewer.11.0.3366.16\lib\Microsoft.ReportViewer.WebDesign.DLL - - - ..\packages\Microsoft.ReportViewer.11.0.3366.16\lib\Microsoft.ReportViewer.WebForms.DLL - - - ..\packages\Microsoft.ReportViewer.11.0.3366.16\lib\Microsoft.ReportViewer.WinForms.DLL - - - ..\packages\Microsoft.SqlServer.Types.11.0.1\lib\net20\Microsoft.SqlServer.Types.dll + + ..\packages\Microsoft.SqlServer.Types.14.0.314.76\lib\net40\Microsoft.SqlServer.Types.dll ..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll @@ -612,22 +591,6 @@ - - SqlServerTypes\x64\msvcr100.dll - Always - - - SqlServerTypes\x64\SqlServerSpatial110.dll - Always - - - SqlServerTypes\x86\msvcr100.dll - Always - - - SqlServerTypes\x86\SqlServerSpatial110.dll - Always - TextTemplatingFileGenerator AdoNetEFMain.edmx @@ -644,6 +607,18 @@ PreserveNewest + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + diff --git a/Project/SqlServerTypes/Loader.cs b/Project/SqlServerTypes/Loader.cs index 8911029..92f9384 100644 --- a/Project/SqlServerTypes/Loader.cs +++ b/Project/SqlServerTypes/Loader.cs @@ -7,7 +7,7 @@ namespace SqlServerTypes /// /// Utility methods related to CLR Types for SQL Server /// - internal class Utilities + public class Utilities { [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)] private static extern IntPtr LoadLibrary(string libname); @@ -25,8 +25,8 @@ namespace SqlServerTypes ? Path.Combine(rootApplicationPath, @"SqlServerTypes\x64\") : Path.Combine(rootApplicationPath, @"SqlServerTypes\x86\"); - LoadNativeAssembly(nativeBinaryPath, "msvcr100.dll"); - LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial110.dll"); + LoadNativeAssembly(nativeBinaryPath, "msvcr120.dll"); + LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial140.dll"); } private static void LoadNativeAssembly(string nativeBinaryPath, string assemblyName) diff --git a/Project/SqlServerTypes/readme.htm b/Project/SqlServerTypes/readme.htm index 1f4b224..f76d0bf 100644 --- a/Project/SqlServerTypes/readme.htm +++ b/Project/SqlServerTypes/readme.htm @@ -19,17 +19,39 @@

Action required to load native assemblies

- To deploy an application that uses spatial data types to a machine that does not have 'System CLR Types for SQL Server' installed you also need to deploy the native assembly SqlServerSpatial110.dll. Both x86 (32 bit) and x64 (64 bit) versions of this assembly have been added to your project under the SqlServerTypes\x86 and SqlServerTypes\x64 subdirectories. The native assembly msvcr100.dll is also included in case the C++ runtime is not installed. + To deploy an application that uses spatial data types to a machine that does not have 'System CLR Types for SQL Server' installed you also need to deploy the native assembly SqlServerSpatial140.dll. Both x86 (32 bit) and x64 (64 bit) versions of this assembly have been added to your project under the SqlServerTypes\x86 and SqlServerTypes\x64 subdirectories. The native assembly msvcr120.dll is also included in case the C++ runtime is not installed.

You need to add code to load the correct one of these assemblies at runtime (depending on the current architecture).

-

ASP.NET applications

+

ASP.NET Web Sites

- For ASP.NET applications, add the following line of code to the Application_Start method in Global.asax.cs: + For ASP.NET Web Sites, add the following block of code to the code behind file of the Web Form where you have added Report Viewer Control: +

+    Default.aspx.cs:
+        
+    public partial class _Default : System.Web.UI.Page
+    {
+        static bool _isSqlTypesLoaded = false;
+
+        public _Default()
+        {
+            if (!_isSqlTypesLoaded)
+            {
+                SqlServerTypes.Utilities.LoadNativeAssemblies(Server.MapPath("~"));
+                _isSqlTypesLoaded = true;
+            }
+            
+        }
+    }
+
+

+

ASP.NET Web Applications

+

+ For ASP.NET Web Applications, add the following line of code to the Application_Start method in Global.asax.cs:

    SqlServerTypes.Utilities.LoadNativeAssemblies(Server.MapPath("~/bin"));

-

Desktop applications

+

Desktop Applications

For desktop applications, add the following line of code to run before any spatial operations are performed:

    SqlServerTypes.Utilities.LoadNativeAssemblies(AppDomain.CurrentDomain.BaseDirectory);
diff --git a/Project/SqlServerTypes/x64/SqlServerSpatial140.dll b/Project/SqlServerTypes/x64/SqlServerSpatial140.dll new file mode 100644 index 0000000..6e443bf Binary files /dev/null and b/Project/SqlServerTypes/x64/SqlServerSpatial140.dll differ diff --git a/Project/SqlServerTypes/x64/msvcr120.dll b/Project/SqlServerTypes/x64/msvcr120.dll new file mode 100644 index 0000000..67937ce Binary files /dev/null and b/Project/SqlServerTypes/x64/msvcr120.dll differ diff --git a/Project/SqlServerTypes/x86/SqlServerSpatial140.dll b/Project/SqlServerTypes/x86/SqlServerSpatial140.dll new file mode 100644 index 0000000..590a22a Binary files /dev/null and b/Project/SqlServerTypes/x86/SqlServerSpatial140.dll differ diff --git a/Project/SqlServerTypes/x86/msvcr120.dll b/Project/SqlServerTypes/x86/msvcr120.dll new file mode 100644 index 0000000..23447f5 Binary files /dev/null and b/Project/SqlServerTypes/x86/msvcr120.dll differ diff --git a/Project/app.config b/Project/app.config index 43e4f08..8e2d89b 100644 --- a/Project/app.config +++ b/Project/app.config @@ -28,9 +28,13 @@ + + + + - + - \ No newline at end of file + diff --git a/Project/packages.config b/Project/packages.config index 358006f..1e44b13 100644 --- a/Project/packages.config +++ b/Project/packages.config @@ -15,8 +15,8 @@ - - + + \ No newline at end of file diff --git a/SubProject/FBS0000/FBS0000.csproj b/SubProject/FBS0000/FBS0000.csproj index a2c995f..2477611 100644 --- a/SubProject/FBS0000/FBS0000.csproj +++ b/SubProject/FBS0000/FBS0000.csproj @@ -9,7 +9,7 @@ Properties FBS0000 FBS0000 - v4.5 + v4.6 512 @@ -58,8 +58,24 @@ ..\..\DLL\libxl.net.dll - - + + ..\..\packages\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1449.0\lib\net40\Microsoft.ReportViewer.Common.dll + + + ..\..\packages\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1449.0\lib\net40\Microsoft.ReportViewer.DataVisualization.dll + + + ..\..\packages\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1449.0\lib\net40\Microsoft.ReportViewer.Design.dll + + + ..\..\packages\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1449.0\lib\net40\Microsoft.ReportViewer.ProcessingObjectModel.dll + + + ..\..\packages\Microsoft.ReportingServices.ReportViewerControl.Winforms.150.1449.0\lib\net40\Microsoft.ReportViewer.WinForms.dll + + + ..\..\packages\Microsoft.SqlServer.Types.14.0.314.76\lib\net40\Microsoft.SqlServer.Types.dll + ..\..\packages\NetOffice.Core.1.7.4.4\lib\net40\NetOffice.dll False @@ -150,6 +166,7 @@ + fLovWorkUser.cs @@ -221,6 +238,21 @@ + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 245, 17 + + + 397, 17 + + + 630, 17 + + + + AAEAAAD/////AQAAAAAAAAAEAQAAACdTeXN0ZW0uR2xvYmFsaXphdGlvbi5EYXRlVGltZUZvcm1hdElu + Zm8rAAAABm1fbmFtZQxhbURlc2lnbmF0b3IMcG1EZXNpZ25hdG9yDWRhdGVTZXBhcmF0b3IXZ2VuZXJh + bFNob3J0VGltZVBhdHRlcm4WZ2VuZXJhbExvbmdUaW1lUGF0dGVybg10aW1lU2VwYXJhdG9yD21vbnRo + RGF5UGF0dGVybhVkYXRlVGltZU9mZnNldFBhdHRlcm4IY2FsZW5kYXIOZmlyc3REYXlPZldlZWsQY2Fs + ZW5kYXJXZWVrUnVsZRNmdWxsRGF0ZVRpbWVQYXR0ZXJuE2FiYnJldmlhdGVkRGF5TmFtZXMUbV9zdXBl + clNob3J0RGF5TmFtZXMIZGF5TmFtZXMVYWJicmV2aWF0ZWRNb250aE5hbWVzCm1vbnRoTmFtZXMSZ2Vu + aXRpdmVNb250aE5hbWVzH21fZ2VuaXRpdmVBYmJyZXZpYXRlZE1vbnRoTmFtZXMSbGVhcFllYXJNb250 + aE5hbWVzD2xvbmdEYXRlUGF0dGVybhBzaG9ydERhdGVQYXR0ZXJuEHllYXJNb250aFBhdHRlcm4PbG9u + Z1RpbWVQYXR0ZXJuEHNob3J0VGltZVBhdHRlcm4UYWxsWWVhck1vbnRoUGF0dGVybnMUYWxsU2hvcnRE + YXRlUGF0dGVybnMTYWxsTG9uZ0RhdGVQYXR0ZXJucxRhbGxTaG9ydFRpbWVQYXR0ZXJucxNhbGxMb25n + VGltZVBhdHRlcm5zCm1fZXJhTmFtZXMQbV9hYmJyZXZFcmFOYW1lcxdtX2FiYnJldkVuZ2xpc2hFcmFO + YW1lcxFvcHRpb25hbENhbGVuZGFycwxtX2lzUmVhZE9ubHkLZm9ybWF0RmxhZ3MJQ3VsdHVyZUlEEW1f + dXNlVXNlck92ZXJyaWRlEGJVc2VDYWxlbmRhckluZm8JbkRhdGFJdGVtE21faXNEZWZhdWx0Q2FsZW5k + YXILbV9kYXRlV29yZHMBAQEBAQEBAQEDAAABBgYGBgYGBgYBAQEBAQYGBgYGBgYGBwADAAAAAAAGJlN5 + c3RlbS5HbG9iYWxpemF0aW9uLkdyZWdvcmlhbkNhbGVuZGFyCAgIAShTeXN0ZW0uR2xvYmFsaXphdGlv + bi5EYXRlVGltZUZvcm1hdEZsYWdzCAEBCAEGAgAAAAVrby1LUgYDAAAABuyYpOyghAYEAAAABuyYpO2b + hAYFAAAAAS0KCgYGAAAAAToGBwAAAAlN7JuUIGTsnbwKCQgAAAAAAAAAAAAAAAoJCQAAAAoJCgAAAAkL + AAAACQwAAAAJDQAAAAkOAAAACgYPAAAAHHl5eXkn64WEJyBNJ+yblCcgZCfsnbwnIGRkZGQGEAAAAAp5 + eXl5LU1NLWRkBhEAAAAQeXl5eSfrhYQnIE0n7JuUJwYSAAAACnR0IGg6bW06c3MGEwAAAAd0dCBoOm1t + CRQAAAAJFQAAAAkWAAAACRcAAAAJGAAAAAkZAAAACRoAAAAJGwAAAAkcAAAAAATj////KFN5c3RlbS5H + bG9iYWxpemF0aW9uLkRhdGVUaW1lRm9ybWF0RmxhZ3MBAAAAB3ZhbHVlX18ACP////8SBAAAAQAAAAAA + AAoECAAAACZTeXN0ZW0uR2xvYmFsaXphdGlvbi5HcmVnb3JpYW5DYWxlbmRhcgYAAAAGbV90eXBlEW1f + Y3VycmVudEVyYVZhbHVlD3R3b0RpZ2l0WWVhck1heBpDYWxlbmRhcittX2N1cnJlbnRFcmFWYWx1ZRVD + YWxlbmRhcittX2lzUmVhZE9ubHkYQ2FsZW5kYXIrdHdvRGlnaXRZZWFyTWF4AwAAAAAAK1N5c3RlbS5H + bG9iYWxpemF0aW9uLkdyZWdvcmlhbkNhbGVuZGFyVHlwZXMICAgBCATi////K1N5c3RlbS5HbG9iYWxp + emF0aW9uLkdyZWdvcmlhbkNhbGVuZGFyVHlwZXMBAAAAB3ZhbHVlX18ACAEAAAD///////////////8A + /////xEJAAAABwAAAAYfAAAAA+ydvAYgAAAAA+yblAYhAAAAA+2ZlAYiAAAAA+yImAYjAAAAA+uqqQYk + AAAAA+q4iAYlAAAAA+2GoBEKAAAABwAAAAYmAAAACeydvOyalOydvAYnAAAACeyblOyalOydvAYoAAAA + Ce2ZlOyalOydvAYpAAAACeyImOyalOydvAYqAAAACeuqqeyalOydvAYrAAAACeq4iOyalOydvAYsAAAA + Ce2GoOyalOydvBELAAAADQAAAAYtAAAAATEGLgAAAAEyBi8AAAABMwYwAAAAATQGMQAAAAE1BjIAAAAB + NgYzAAAAATcGNAAAAAE4BjUAAAABOQY2AAAAAjEwBjcAAAACMTEGOAAAAAIxMgY5AAAAABEMAAAADQAA + AAY6AAAABDHsm5QGOwAAAAQy7JuUBjwAAAAEM+yblAY9AAAABDTsm5QGPgAAAAQ17JuUBj8AAAAENuyb + lAZAAAAABDfsm5QGQQAAAAQ47JuUBkIAAAAEOeyblAZDAAAABTEw7JuUBkQAAAAFMTHsm5QGRQAAAAUx + MuyblAk5AAAAEQ0AAAANAAAABkcAAAAEMeyblAZIAAAABDLsm5QGSQAAAAQz7JuUBkoAAAAENOyblAZL + AAAABDXsm5QGTAAAAAQ27JuUBk0AAAAEN+yblAZOAAAABDjsm5QGTwAAAAQ57JuUBlAAAAAFMTDsm5QG + UQAAAAUxMeyblAZSAAAABTEy7JuUCTkAAAARDgAAAA0AAAAGVAAAAAExBlUAAAABMgZWAAAAATMGVwAA + AAE0BlgAAAABNQZZAAAAATYGWgAAAAE3BlsAAAABOAZcAAAAATkGXQAAAAIxMAZeAAAAAjExBl8AAAAC + MTIJOQAAABEUAAAAAwAAAAZhAAAAEHl5eXkn64WEJyBNJ+yblCcGYgAAABJ5eXl5J+uFhCcgTU1NJ+yb + lCcGYwAAAA55eXl5J+uFhCcgTU1NTREVAAAABAAAAAZkAAAACnl5eXktTU0tZGQGZQAAAAh5eS1NTS1k + ZAZmAAAABnl5LU0tZAZnAAAACHl5eXktTS1kERYAAAAKAAAABmgAAAAceXl5eSfrhYQnIE0n7JuUJyBk + J+ydvCcgZGRkZAZpAAAAF3l5eXkn64WEJyBNJ+yblCcgZCfsnbwnBmoAAAAaeXkn64WEJyBNJ+yblCcg + ZCfsnbwnIGRkZGQGawAAABV5eSfrhYQnIE0n7JuUJyBkJ+ydvCcGbAAAAB55eXl5J+uFhCcgTU0n7JuU + JyBkZCfsnbwnIGRkZGQGbQAAABl5eXl5J+uFhCcgTU0n7JuUJyBkZCfsnbwnBm4AAAAeeXl5eSfrhYQg + J01NTSfsm5QgJ2Qn7J28ICdkZGRkBm8AAAAZeXl5eSfrhYQgJ01NTSfsm5QgJ2Qn7J28JwZwAAAAGnl5 + eXkn64WEICdNTU1NIGQn7J28ICdkZGRkBnEAAAAVeXl5eSfrhYQgJ01NTU0gZCfsnbwnERcAAAAEAAAA + BnIAAAAHdHQgaDptbQZzAAAACHR0IGhoOm1tBnQAAAAESDptbQZ1AAAABUhIOm1tERgAAAAEAAAABnYA + AAAKdHQgaDptbTpzcwZ3AAAAC3R0IGhoOm1tOnNzBngAAAAHSDptbTpzcwZ5AAAACEhIOm1tOnNzERkA + AAABAAAABnoAAAAG7ISc6riwERoAAAABAAAABnsAAAAG7ISc6riwERsAAAABAAAACTkAAAAPHAAAAAMA + AAAIAQAAAAUAAAACAAAACw== + + + + + AAEAAAD/////AQAAAAAAAAAEAQAAACVTeXN0ZW0uR2xvYmFsaXphdGlvbi5OdW1iZXJGb3JtYXRJbmZv + IgAAABBudW1iZXJHcm91cFNpemVzEmN1cnJlbmN5R3JvdXBTaXplcxFwZXJjZW50R3JvdXBTaXplcwxw + b3NpdGl2ZVNpZ24MbmVnYXRpdmVTaWduFm51bWJlckRlY2ltYWxTZXBhcmF0b3IUbnVtYmVyR3JvdXBT + ZXBhcmF0b3IWY3VycmVuY3lHcm91cFNlcGFyYXRvchhjdXJyZW5jeURlY2ltYWxTZXBhcmF0b3IOY3Vy + cmVuY3lTeW1ib2wSYW5zaUN1cnJlbmN5U3ltYm9sCW5hblN5bWJvbBZwb3NpdGl2ZUluZmluaXR5U3lt + Ym9sFm5lZ2F0aXZlSW5maW5pdHlTeW1ib2wXcGVyY2VudERlY2ltYWxTZXBhcmF0b3IVcGVyY2VudEdy + b3VwU2VwYXJhdG9yDXBlcmNlbnRTeW1ib2wOcGVyTWlsbGVTeW1ib2wMbmF0aXZlRGlnaXRzCm1fZGF0 + YUl0ZW0TbnVtYmVyRGVjaW1hbERpZ2l0cxVjdXJyZW5jeURlY2ltYWxEaWdpdHMXY3VycmVuY3lQb3Np + dGl2ZVBhdHRlcm4XY3VycmVuY3lOZWdhdGl2ZVBhdHRlcm4VbnVtYmVyTmVnYXRpdmVQYXR0ZXJuFnBl + cmNlbnRQb3NpdGl2ZVBhdHRlcm4WcGVyY2VudE5lZ2F0aXZlUGF0dGVybhRwZXJjZW50RGVjaW1hbERp + Z2l0cxFkaWdpdFN1YnN0aXR1dGlvbgppc1JlYWRPbmx5EW1fdXNlVXNlck92ZXJyaWRlDW1faXNJbnZh + cmlhbnQVdmFsaWRGb3JQYXJzZUFzTnVtYmVyF3ZhbGlkRm9yUGFyc2VBc0N1cnJlbmN5BwcHAQEBAQEB + AQEBAQEBAQEBBgAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgBAQEBAQkCAAAACQMAAAAJAgAAAAYF + AAAAASsGBgAAAAEtBgcAAAABLgYIAAAAASwGCQAAAAEsBgoAAAABLgYLAAAAA+KCqQYMAAAAAVwGDQAA + AANOYU4GDgAAAAPiiJ4GDwAAAAQt4oieCQcAAAAJCAAAAAYSAAAAASUGEwAAAAPigLAJFAAAAAAAAAAC + AAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAgAAAAEAAAABAAABAQ8CAAAAAQAAAAgDAAAADwMAAAAB + AAAACAMAAAARFAAAAAoAAAAGFQAAAAEwBhYAAAABMQYXAAAAATIGGAAAAAEzBhkAAAABNAYaAAAAATUG + GwAAAAE2BhwAAAABNwYdAAAAATgGHgAAAAE5Cw== + + + + + AAEAAAD/////AQAAAAAAAAAEAQAAACVTeXN0ZW0uR2xvYmFsaXphdGlvbi5OdW1iZXJGb3JtYXRJbmZv + IgAAABBudW1iZXJHcm91cFNpemVzEmN1cnJlbmN5R3JvdXBTaXplcxFwZXJjZW50R3JvdXBTaXplcwxw + b3NpdGl2ZVNpZ24MbmVnYXRpdmVTaWduFm51bWJlckRlY2ltYWxTZXBhcmF0b3IUbnVtYmVyR3JvdXBT + ZXBhcmF0b3IWY3VycmVuY3lHcm91cFNlcGFyYXRvchhjdXJyZW5jeURlY2ltYWxTZXBhcmF0b3IOY3Vy + cmVuY3lTeW1ib2wSYW5zaUN1cnJlbmN5U3ltYm9sCW5hblN5bWJvbBZwb3NpdGl2ZUluZmluaXR5U3lt + Ym9sFm5lZ2F0aXZlSW5maW5pdHlTeW1ib2wXcGVyY2VudERlY2ltYWxTZXBhcmF0b3IVcGVyY2VudEdy + b3VwU2VwYXJhdG9yDXBlcmNlbnRTeW1ib2wOcGVyTWlsbGVTeW1ib2wMbmF0aXZlRGlnaXRzCm1fZGF0 + YUl0ZW0TbnVtYmVyRGVjaW1hbERpZ2l0cxVjdXJyZW5jeURlY2ltYWxEaWdpdHMXY3VycmVuY3lQb3Np + dGl2ZVBhdHRlcm4XY3VycmVuY3lOZWdhdGl2ZVBhdHRlcm4VbnVtYmVyTmVnYXRpdmVQYXR0ZXJuFnBl + cmNlbnRQb3NpdGl2ZVBhdHRlcm4WcGVyY2VudE5lZ2F0aXZlUGF0dGVybhRwZXJjZW50RGVjaW1hbERp + Z2l0cxFkaWdpdFN1YnN0aXR1dGlvbgppc1JlYWRPbmx5EW1fdXNlVXNlck92ZXJyaWRlDW1faXNJbnZh + cmlhbnQVdmFsaWRGb3JQYXJzZUFzTnVtYmVyF3ZhbGlkRm9yUGFyc2VBc0N1cnJlbmN5BwcHAQEBAQEB + AQEBAQEBAQEBBgAAAAAAAAAAAAAAAAAAAAgICAgICAgICAgICAgBAQEBAQkCAAAACQMAAAAJAgAAAAYF + AAAAASsGBgAAAAEtBgcAAAABLgYIAAAAASwGCQAAAAEsBgoAAAABLgYLAAAAA+KCqQYMAAAAAVwGDQAA + AANOYU4GDgAAAAPiiJ4GDwAAAAQt4oieCQcAAAAJCAAAAAYSAAAAASUGEwAAAAPigLAJFAAAAAAAAAAC + AAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAgAAAAEAAAABAAABAQ8CAAAAAQAAAAgDAAAADwMAAAAB + AAAACAMAAAARFAAAAAoAAAAGFQAAAAEwBhYAAAABMQYXAAAAATIGGAAAAAEzBhkAAAABNAYaAAAAATUG + GwAAAAE2BhwAAAABNwYdAAAAATgGHgAAAAE5Cw== + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0 + dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uRHJh + d2luZy5QcmludGluZy5QYXBlclNpemUFAAAABGtpbmQEbmFtZQV3aWR0aAZoZWlnaHQbY3JlYXRlZEJ5 + RGVmYXVsdENvbnN0cnVjdG9yBAEAAAAhU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUGFwZXJLaW5kAgAA + AAgIAQIAAAAF/f///yFTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QYXBlcktpbmQBAAAAB3ZhbHVlX18A + CAIAAAAJAAAABgQAAAACQTQ7AwAAkQQAAAAL + + + + 119, 17 + + + 17, 17 + + + 183, 17 + + \ No newline at end of file diff --git a/SubProject/FPJ0000/JobReport_/fJobReport.Designer.cs b/SubProject/FPJ0000/JobReport_/fJobReport.Designer.cs index 8209c74..739ac41 100644 --- a/SubProject/FPJ0000/JobReport_/fJobReport.Designer.cs +++ b/SubProject/FPJ0000/JobReport_/fJobReport.Designer.cs @@ -30,20 +30,20 @@ { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(fJobReport)); - FarPoint.Win.Spread.CellType.TextCellType textCellType23 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType24 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType25 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType26 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType27 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType28 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType29 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType30 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType31 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.NumberCellType numberCellType7 = new FarPoint.Win.Spread.CellType.NumberCellType(); - FarPoint.Win.Spread.CellType.NumberCellType numberCellType8 = new FarPoint.Win.Spread.CellType.NumberCellType(); - FarPoint.Win.Spread.CellType.NumberCellType numberCellType9 = new FarPoint.Win.Spread.CellType.NumberCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType32 = new FarPoint.Win.Spread.CellType.TextCellType(); - FarPoint.Win.Spread.CellType.TextCellType textCellType33 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType1 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType2 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType3 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType4 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType5 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType6 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType7 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType8 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType9 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.NumberCellType numberCellType1 = new FarPoint.Win.Spread.CellType.NumberCellType(); + FarPoint.Win.Spread.CellType.NumberCellType numberCellType2 = new FarPoint.Win.Spread.CellType.NumberCellType(); + FarPoint.Win.Spread.CellType.NumberCellType numberCellType3 = new FarPoint.Win.Spread.CellType.NumberCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType10 = new FarPoint.Win.Spread.CellType.TextCellType(); + FarPoint.Win.Spread.CellType.TextCellType textCellType11 = new FarPoint.Win.Spread.CellType.TextCellType(); this.bn = new System.Windows.Forms.BindingNavigator(this.components); this.bs = new System.Windows.Forms.BindingSource(this.components); this.dsMSSQL = new FPJ0000.dsPRJ(); @@ -69,6 +69,8 @@ this.btReportDay = new System.Windows.Forms.ToolStripButton(); this.toolStripButton1 = new System.Windows.Forms.ToolStripButton(); this.toolStripButton3 = new System.Windows.Forms.ToolStripButton(); + this.toolStripButton5 = new System.Windows.Forms.ToolStripDropDownButton(); + this.k5DailyFormToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.cm = new System.Windows.Forms.ContextMenuStrip(this.components); this.columnSizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.autoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -105,6 +107,7 @@ this.태그자료만조회ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripButton2 = new System.Windows.Forms.ToolStripButton(); this.richTextBox1 = new System.Windows.Forms.RichTextBox(); + this.wFDailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); ((System.ComponentModel.ISupportInitialize)(this.bn)).BeginInit(); this.bn.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit(); @@ -144,15 +147,16 @@ this.btReport, this.btReportDay, this.toolStripButton1, - this.toolStripButton3}); - this.bn.Location = new System.Drawing.Point(0, 637); + this.toolStripButton3, + this.toolStripButton5}); + this.bn.Location = new System.Drawing.Point(0, 664); this.bn.MoveFirstItem = this.bindingNavigatorMoveFirstItem; this.bn.MoveLastItem = this.bindingNavigatorMoveLastItem; this.bn.MoveNextItem = this.bindingNavigatorMoveNextItem; this.bn.MovePreviousItem = this.bindingNavigatorMovePreviousItem; this.bn.Name = "bn"; this.bn.PositionItem = this.bindingNavigatorPositionItem; - this.bn.Size = new System.Drawing.Size(1139, 25); + this.bn.Size = new System.Drawing.Size(1280, 25); this.bn.TabIndex = 0; this.bn.Text = "bindingNavigator1"; // @@ -348,6 +352,26 @@ this.toolStripButton3.Text = "적정인원보고서"; this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click); // + // toolStripButton5 + // + this.toolStripButton5.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; + this.toolStripButton5.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.k5DailyFormToolStripMenuItem, + this.wFDailToolStripMenuItem}); + this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image"))); + this.toolStripButton5.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton5.Name = "toolStripButton5"; + this.toolStripButton5.Size = new System.Drawing.Size(72, 22); + this.toolStripButton5.Text = "보고서"; + this.toolStripButton5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + // + // k5DailyFormToolStripMenuItem + // + this.k5DailyFormToolStripMenuItem.Name = "k5DailyFormToolStripMenuItem"; + this.k5DailyFormToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.k5DailyFormToolStripMenuItem.Text = "K5 DailyForm"; + this.k5DailyFormToolStripMenuItem.Click += new System.EventHandler(this.k5DailyFormToolStripMenuItem_Click); + // // cm // this.cm.Font = new System.Drawing.Font("맑은 고딕", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); @@ -472,6 +496,7 @@ this.tam.EETGW_JobReport_EBoardTableAdapter = null; this.tam.EETGW_NoteTableAdapter = null; this.tam.EETGW_ProjecthistoryDTableAdapter = null; + this.tam.EETGW_ProjectsScheduleTableAdapter = null; this.tam.EETGW_ProjectToDoTableAdapter = null; this.tam.EETGW_SaveCostTableAdapter = null; this.tam.JobReportTableAdapter = this.ta; @@ -499,7 +524,7 @@ this.fpSpread1.Name = "fpSpread1"; this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] { this.fpSpread1_Sheet1}); - this.fpSpread1.Size = new System.Drawing.Size(1139, 540); + this.fpSpread1.Size = new System.Drawing.Size(1280, 567); this.fpSpread1.StatusBarVisible = true; this.fpSpread1.TabIndex = 2; // @@ -528,82 +553,82 @@ this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 12).Value = "비고"; this.fpSpread1_Sheet1.ColumnHeader.Cells.Get(0, 13).Value = "#"; this.fpSpread1_Sheet1.ColumnHeader.Rows.Get(0).Height = 28F; - this.fpSpread1_Sheet1.Columns.Get(0).CellType = textCellType23; + this.fpSpread1_Sheet1.Columns.Get(0).CellType = textCellType1; this.fpSpread1_Sheet1.Columns.Get(0).DataField = "pdate"; this.fpSpread1_Sheet1.Columns.Get(0).Label = "날짜"; this.fpSpread1_Sheet1.Columns.Get(0).Width = 58F; this.fpSpread1_Sheet1.Columns.Get(1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - this.fpSpread1_Sheet1.Columns.Get(1).CellType = textCellType24; + this.fpSpread1_Sheet1.Columns.Get(1).CellType = textCellType2; this.fpSpread1_Sheet1.Columns.Get(1).DataField = "ww"; this.fpSpread1_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; this.fpSpread1_Sheet1.Columns.Get(1).Label = "WW"; this.fpSpread1_Sheet1.Columns.Get(1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(2).CellType = textCellType25; + this.fpSpread1_Sheet1.Columns.Get(2).CellType = textCellType3; this.fpSpread1_Sheet1.Columns.Get(2).DataField = "username"; this.fpSpread1_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; this.fpSpread1_Sheet1.Columns.Get(2).Label = "담당"; this.fpSpread1_Sheet1.Columns.Get(2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; this.fpSpread1_Sheet1.Columns.Get(3).AllowAutoFilter = true; - this.fpSpread1_Sheet1.Columns.Get(3).CellType = textCellType26; + this.fpSpread1_Sheet1.Columns.Get(3).CellType = textCellType4; this.fpSpread1_Sheet1.Columns.Get(3).DataField = "requestpart"; this.fpSpread1_Sheet1.Columns.Get(3).Label = "요청부서"; this.fpSpread1_Sheet1.Columns.Get(3).Width = 78F; this.fpSpread1_Sheet1.Columns.Get(4).AllowAutoFilter = true; - this.fpSpread1_Sheet1.Columns.Get(4).CellType = textCellType27; + this.fpSpread1_Sheet1.Columns.Get(4).CellType = textCellType5; this.fpSpread1_Sheet1.Columns.Get(4).DataField = "package"; this.fpSpread1_Sheet1.Columns.Get(4).Label = "패키지"; this.fpSpread1_Sheet1.Columns.Get(4).Width = 86F; - this.fpSpread1_Sheet1.Columns.Get(5).CellType = textCellType28; + this.fpSpread1_Sheet1.Columns.Get(5).CellType = textCellType6; this.fpSpread1_Sheet1.Columns.Get(5).DataField = "status"; this.fpSpread1_Sheet1.Columns.Get(5).Label = "상태"; this.fpSpread1_Sheet1.Columns.Get(6).AllowAutoFilter = true; - this.fpSpread1_Sheet1.Columns.Get(6).CellType = textCellType29; + this.fpSpread1_Sheet1.Columns.Get(6).CellType = textCellType7; this.fpSpread1_Sheet1.Columns.Get(6).DataField = "type"; this.fpSpread1_Sheet1.Columns.Get(6).Label = "업무형태"; this.fpSpread1_Sheet1.Columns.Get(6).Width = 84F; this.fpSpread1_Sheet1.Columns.Get(7).AllowAutoFilter = true; - this.fpSpread1_Sheet1.Columns.Get(7).CellType = textCellType30; + this.fpSpread1_Sheet1.Columns.Get(7).CellType = textCellType8; this.fpSpread1_Sheet1.Columns.Get(7).DataField = "process"; this.fpSpread1_Sheet1.Columns.Get(7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left; this.fpSpread1_Sheet1.Columns.Get(7).Label = "업무분류"; this.fpSpread1_Sheet1.Columns.Get(7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; this.fpSpread1_Sheet1.Columns.Get(7).Width = 80F; this.fpSpread1_Sheet1.Columns.Get(8).AllowAutoFilter = true; - this.fpSpread1_Sheet1.Columns.Get(8).CellType = textCellType31; + this.fpSpread1_Sheet1.Columns.Get(8).CellType = textCellType9; this.fpSpread1_Sheet1.Columns.Get(8).DataField = "projectName"; this.fpSpread1_Sheet1.Columns.Get(8).Label = "프로젝트(아이템)"; this.fpSpread1_Sheet1.Columns.Get(8).Width = 158F; this.fpSpread1_Sheet1.Columns.Get(9).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); - numberCellType7.DecimalPlaces = 0; - numberCellType7.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.Yes; - numberCellType7.MaximumValue = 2147483647D; - numberCellType7.MinimumValue = -2147483648D; - this.fpSpread1_Sheet1.Columns.Get(9).CellType = numberCellType7; + numberCellType1.DecimalPlaces = 0; + numberCellType1.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.Yes; + numberCellType1.MaximumValue = 2147483647D; + numberCellType1.MinimumValue = -2147483648D; + this.fpSpread1_Sheet1.Columns.Get(9).CellType = numberCellType1; this.fpSpread1_Sheet1.Columns.Get(9).DataField = "pidx"; this.fpSpread1_Sheet1.Columns.Get(9).Label = "*"; this.fpSpread1_Sheet1.Columns.Get(9).Tag = "pidx"; this.fpSpread1_Sheet1.Columns.Get(9).Width = 39F; - numberCellType8.MaximumValue = 999999999999999D; - numberCellType8.MinimumValue = -999999999999999D; - this.fpSpread1_Sheet1.Columns.Get(10).CellType = numberCellType8; + numberCellType2.MaximumValue = 999999999999999D; + numberCellType2.MinimumValue = -999999999999999D; + this.fpSpread1_Sheet1.Columns.Get(10).CellType = numberCellType2; this.fpSpread1_Sheet1.Columns.Get(10).DataField = "hrs"; this.fpSpread1_Sheet1.Columns.Get(10).Label = "시간"; this.fpSpread1_Sheet1.Columns.Get(10).Width = 52F; - numberCellType9.MaximumValue = 999999999999999D; - numberCellType9.MinimumValue = -999999999999999D; - this.fpSpread1_Sheet1.Columns.Get(11).CellType = numberCellType9; + numberCellType3.MaximumValue = 999999999999999D; + numberCellType3.MinimumValue = -999999999999999D; + this.fpSpread1_Sheet1.Columns.Get(11).CellType = numberCellType3; this.fpSpread1_Sheet1.Columns.Get(11).DataField = "ot"; this.fpSpread1_Sheet1.Columns.Get(11).ForeColor = System.Drawing.Color.Red; this.fpSpread1_Sheet1.Columns.Get(11).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; this.fpSpread1_Sheet1.Columns.Get(11).Label = "초과"; this.fpSpread1_Sheet1.Columns.Get(11).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; - this.fpSpread1_Sheet1.Columns.Get(12).CellType = textCellType32; + this.fpSpread1_Sheet1.Columns.Get(12).CellType = textCellType10; this.fpSpread1_Sheet1.Columns.Get(12).DataField = "description"; this.fpSpread1_Sheet1.Columns.Get(12).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Left; this.fpSpread1_Sheet1.Columns.Get(12).Label = "비고"; this.fpSpread1_Sheet1.Columns.Get(12).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; this.fpSpread1_Sheet1.Columns.Get(12).Width = 113F; - this.fpSpread1_Sheet1.Columns.Get(13).CellType = textCellType33; + this.fpSpread1_Sheet1.Columns.Get(13).CellType = textCellType11; this.fpSpread1_Sheet1.Columns.Get(13).DataField = "tag"; this.fpSpread1_Sheet1.Columns.Get(13).Label = "#"; this.fpSpread1_Sheet1.Columns.Get(13).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; @@ -632,7 +657,7 @@ this.toolStripButton2}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; - this.toolStrip1.Size = new System.Drawing.Size(1139, 37); + this.toolStrip1.Size = new System.Drawing.Size(1280, 37); this.toolStrip1.TabIndex = 4; this.toolStrip1.Text = "toolStrip1"; // @@ -761,18 +786,25 @@ this.richTextBox1.BackColor = System.Drawing.Color.Gainsboro; this.richTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bs, "description", true)); this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Bottom; - this.richTextBox1.Location = new System.Drawing.Point(0, 577); + this.richTextBox1.Location = new System.Drawing.Point(0, 604); this.richTextBox1.Name = "richTextBox1"; this.richTextBox1.ReadOnly = true; - this.richTextBox1.Size = new System.Drawing.Size(1139, 60); + this.richTextBox1.Size = new System.Drawing.Size(1280, 60); this.richTextBox1.TabIndex = 5; this.richTextBox1.Text = ""; // + // wFDailToolStripMenuItem + // + this.wFDailToolStripMenuItem.Name = "wFDailToolStripMenuItem"; + this.wFDailToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.wFDailToolStripMenuItem.Text = "WF Dail"; + this.wFDailToolStripMenuItem.Click += new System.EventHandler(this.wFDailToolStripMenuItem_Click); + // // fJobReport // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1139, 662); + this.ClientSize = new System.Drawing.Size(1280, 689); this.Controls.Add(this.fpSpread1); this.Controls.Add(this.richTextBox1); this.Controls.Add(this.toolStrip1); @@ -859,5 +891,8 @@ private System.Windows.Forms.ToolStripLabel toolStripLabel4; private System.Windows.Forms.ToolStripTextBox tbProcess; private System.Windows.Forms.ToolStripButton toolStripButton4; + private System.Windows.Forms.ToolStripDropDownButton toolStripButton5; + private System.Windows.Forms.ToolStripMenuItem k5DailyFormToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem wFDailToolStripMenuItem; } } \ No newline at end of file diff --git a/SubProject/FPJ0000/JobReport_/fJobReport.cs b/SubProject/FPJ0000/JobReport_/fJobReport.cs index 1a77c61..32e6be5 100644 --- a/SubProject/FPJ0000/JobReport_/fJobReport.cs +++ b/SubProject/FPJ0000/JobReport_/fJobReport.cs @@ -660,5 +660,18 @@ namespace FPJ0000 } } + + private void k5DailyFormToolStripMenuItem_Click(object sender, EventArgs e) + { + + var f = new JobReport_.rK5Dailyform(); + f.Show(); + } + + private void wFDailToolStripMenuItem_Click(object sender, EventArgs e) + { + var f2 = new JobReport_.K5Dailyform(); + f2.Show(); + } } } diff --git a/SubProject/FPJ0000/JobReport_/fJobReport.resx b/SubProject/FPJ0000/JobReport_/fJobReport.resx index 15b94b3..67249ce 100644 --- a/SubProject/FPJ0000/JobReport_/fJobReport.resx +++ b/SubProject/FPJ0000/JobReport_/fJobReport.resx @@ -257,9 +257,25 @@ GoSrpcVIQqmAj6LZftFBup9vWiUlUQdIDCbsQrsGZRJKBbOXyA++SlEsu6QjvQAAAABJRU5ErkJggg== - - 17, 17 - + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAL5SURBVDhPhZNZTxNRGIZ7pT/BoBdemrhAtEZxSRQELEsC + LggEUQqlEBCQQA1EEVNQWcSABEjUEIjGCzXEBQpYQEoptKEYEUTAsi/KUoG20ykzLa9npg3FhMQveXIu + zvmenO+dMwKu/O+oYkNKtMrQR9o/IUVaK1lpnlJu1dGhJT10UJFm8JRMXb4//PUOvmlrBd7vUi+a6OWl + NcputNhgNLtZNnHQ+DFvQu6HacSVD1OiVMVOV6uzggs1iytm2t4zyUA3xUI3zUI7yUIzsQ7VTxuahyyw + sUDDsBW576YQ/2TY+o8k8IHaukato2/Gji8zLFlZ9PKSdXQabPg0RBGBA33zdujmGBQopuGb0/6Kb44s + 9Rm/UhS+Ia26hPjKy6hsqUN+fSl88zzhQxAVnIS//BjKGsr4Ucw0i4UVCv63O1leEFHi+7Z9oBGNo89R + qc3iJdcrgpD1MgZpdVGQVIchrjoODf0LaBw04+O3NaySnALkXTQvEJWLdoYVptu1Ix14MSBHsSqVl8RW + BZPmC0h6mgi1wcKP0jZqhZLksGJhEJDf7RRwFVjYSWfUiKE3aFCtu4WHrZmILD2H2Ipw6Ccp6EmwXMDq + MWcmRiLwl28RnLmbxxzP3ouYchH6xnpQ0JEMuSIDUY/9UKd6j6+zLPQk2J4JBt2ERRMD33suwRGZh1Qo + 24O02mhcrQpEdNl5XpKhiIGsPpHcxA/cft+0Hb3cJyaYSJCnczROgVC2a1Yo200OeUCY5YGLxX5IeSaG + ekiJAmU2kt+IIamKgJ4IdORtaImAZhzwzlS5Rzib00XPr9Lon7XzdI7M4WZNEhJIo7Q6Cpm1Nzb3OKh1 + O4TprW7BCZmKnjG6Bf/DQkbwSmx2C7wzPlOG36aN7Q5vB2VjHIfECrOrnQSZ1Dr+a40yGRYsjvElK8YX + rTC4WDIzPFzy5HcBefIOhmVX911r+u5qFwiOJrWkeEmaWw9LlUYvaRO9SYITzwSFE4mCPiBpWjkY19Tm + KVbECwQCwV8VL6KkvF4YKgAAAABJRU5ErkJggg== + + 325, 17 diff --git a/SubProject/FPJ0000/JobReport_/rJobReportUser.Designer.cs b/SubProject/FPJ0000/JobReport_/rJobReportUser.Designer.cs index f00517b..e4f1519 100644 --- a/SubProject/FPJ0000/JobReport_/rJobReportUser.Designer.cs +++ b/SubProject/FPJ0000/JobReport_/rJobReportUser.Designer.cs @@ -29,6 +29,155 @@ private void InitializeComponent() { this.components = new System.ComponentModel.Container(); + FarPoint.Win.Spread.NamedStyle namedStyle3 = new FarPoint.Win.Spread.NamedStyle("Normal"); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType18 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.Spread.NamedStyle namedStyle4 = new FarPoint.Win.Spread.NamedStyle("표준_MC별 적정인원 분석_020614"); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType19 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder122 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, false, true, true, true); + FarPoint.Win.LineBorder lineBorder123 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder124 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder125 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder126 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder127 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder128 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder129 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder130 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder131 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder132 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, false, true, true, true); + FarPoint.Win.LineBorder lineBorder133 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder134 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder135 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder136 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType20 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(rJobReportUser)); + FarPoint.Win.LineBorder lineBorder137 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder138 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder139 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder140 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder141 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.ComplexBorder complexBorder6 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), false, false); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType21 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.ComplexBorder complexBorder7 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), false, false); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType22 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder142 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, false, true, false, true); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType23 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder143 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, false, true, false, true); + FarPoint.Win.LineBorder lineBorder144 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, false, true, false, true); + FarPoint.Win.LineBorder lineBorder145 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, false, true, true, true); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType24 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.ComplexBorder complexBorder8 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), false, false); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType25 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType26 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.ComplexBorder complexBorder9 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), false, false); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType27 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder146 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, false, true, true, false); + FarPoint.Win.LineBorder lineBorder147 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, true, true, true, false); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType28 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder148 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, true, true, true, false); + FarPoint.Win.LineBorder lineBorder149 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, true, true, true, false); + FarPoint.Win.LineBorder lineBorder150 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, true, true, true, false); + FarPoint.Win.LineBorder lineBorder151 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, true, true, true, false); + FarPoint.Win.LineBorder lineBorder152 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, true, true, true, false); + FarPoint.Win.LineBorder lineBorder153 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, true, false, true, false); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType29 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder154 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, true, false, false, false); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType30 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder155 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, true, false, false, false); + FarPoint.Win.LineBorder lineBorder156 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder157 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder158 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder159 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder160 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder161 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder162 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder163 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType31 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder164 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder165 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder166 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder167 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder168 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder169 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder170 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder171 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder172 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder173 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder174 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder175 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder176 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder177 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder178 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder179 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder180 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder181 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder182 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder183 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder184 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.LineBorder lineBorder185 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(191)))), ((int)(((byte)(191)))))); + FarPoint.Win.Spread.NoPrinterPrintInfo noPrinterPrintInfo4 = new FarPoint.Win.Spread.NoPrinterPrintInfo(); + FarPoint.Win.LineBorder lineBorder186 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder187 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder188 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder189 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText, 1, true, true, false, true); + FarPoint.Win.ComplexBorder complexBorder10 = new FarPoint.Win.ComplexBorder(new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.MediumLine, System.Drawing.SystemColors.WindowText), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.MediumLine, System.Drawing.SystemColors.WindowText), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.ThinLine, System.Drawing.SystemColors.WindowText), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.MediumLine, System.Drawing.SystemColors.WindowText), new FarPoint.Win.ComplexBorderSide(FarPoint.Win.ComplexBorderSideStyle.None), false, false); + FarPoint.Win.LineBorder lineBorder190 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText, 2, false, true, true, true); + FarPoint.Win.LineBorder lineBorder191 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder192 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder193 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder194 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder195 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder196 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder197 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder198 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder199 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder200 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder201 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder202 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder203 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder204 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder205 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder206 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder207 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder208 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder209 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder210 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder211 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder212 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder213 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder214 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder215 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder216 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder217 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder218 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder219 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder220 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder221 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder222 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder223 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder224 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder225 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.LineBorder lineBorder226 = new FarPoint.Win.LineBorder(System.Drawing.SystemColors.WindowText); + FarPoint.Win.Spread.NoPrinterPrintInfo noPrinterPrintInfo5 = new FarPoint.Win.Spread.NoPrinterPrintInfo(); + FarPoint.Win.LineBorder lineBorder227 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, false, true, true, true); + FarPoint.Win.LineBorder lineBorder228 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder229 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder230 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder231 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder232 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder233 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType32 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder234 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder235 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216))))), 1, false, true, true, true); + FarPoint.Win.LineBorder lineBorder236 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder237 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder238 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder239 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder240 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.LineBorder lineBorder241 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType33 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.LineBorder lineBorder242 = new FarPoint.Win.LineBorder(System.Drawing.Color.FromArgb(((int)(((byte)(216)))), ((int)(((byte)(216)))), ((int)(((byte)(216)))))); + FarPoint.Win.Spread.CellType.GeneralCellType generalCellType34 = new FarPoint.Win.Spread.CellType.GeneralCellType(); + FarPoint.Win.Spread.NoPrinterPrintInfo noPrinterPrintInfo6 = new FarPoint.Win.Spread.NoPrinterPrintInfo(); this.bs = new System.Windows.Forms.BindingSource(this.components); this.dsReport = new FPJ0000.dsReport(); this.panel1 = new System.Windows.Forms.Panel(); @@ -44,13 +193,29 @@ this.btRefresh = new System.Windows.Forms.Button(); this.ta = new FPJ0000.dsReportTableAdapters.JobReportDayTableAdapter(); this.fpSpread1 = new FarPoint.Win.Spread.FpSpread(); - this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView(); this.progressBar2 = new System.Windows.Forms.ProgressBar(); + this.fpSpread1_Sheet1 = new FarPoint.Win.Spread.SheetView(); + this.fpSpread1_Sheet2 = new FarPoint.Win.Spread.SheetView(); + this.fpSpread1_Sheet3 = new FarPoint.Win.Spread.SheetView(); + this.linkLabel1 = new System.Windows.Forms.LinkLabel(); + this.linkLabel2 = new System.Windows.Forms.LinkLabel(); + this.linkLabel3 = new System.Windows.Forms.LinkLabel(); + this.linkLabel4 = new System.Windows.Forms.LinkLabel(); + this.linkLabel5 = new System.Windows.Forms.LinkLabel(); + this.linkLabel6 = new System.Windows.Forms.LinkLabel(); + this.linkLabel7 = new System.Windows.Forms.LinkLabel(); + this.linkLabel8 = new System.Windows.Forms.LinkLabel(); + this.linkLabel9 = new System.Windows.Forms.LinkLabel(); + this.linkLabel10 = new System.Windows.Forms.LinkLabel(); + this.linkLabel11 = new System.Windows.Forms.LinkLabel(); + this.linkLabel12 = new System.Windows.Forms.LinkLabel(); ((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dsReport)).BeginInit(); this.panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet3)).BeginInit(); this.SuspendLayout(); // // bs @@ -66,6 +231,18 @@ // panel1 // this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(200)))), ((int)(((byte)(200))))); + this.panel1.Controls.Add(this.linkLabel9); + this.panel1.Controls.Add(this.linkLabel10); + this.panel1.Controls.Add(this.linkLabel11); + this.panel1.Controls.Add(this.linkLabel12); + this.panel1.Controls.Add(this.linkLabel5); + this.panel1.Controls.Add(this.linkLabel6); + this.panel1.Controls.Add(this.linkLabel7); + this.panel1.Controls.Add(this.linkLabel8); + this.panel1.Controls.Add(this.linkLabel3); + this.panel1.Controls.Add(this.linkLabel4); + this.panel1.Controls.Add(this.linkLabel2); + this.panel1.Controls.Add(this.linkLabel1); this.panel1.Controls.Add(this.btSave); this.panel1.Controls.Add(this.cmbUser); this.panel1.Controls.Add(this.label4); @@ -181,19 +358,42 @@ // // fpSpread1 // - this.fpSpread1.AccessibleDescription = ""; + this.fpSpread1.AccessibleDescription = "fpSpread1, RAW, Row 0, Column 0, 사원번호"; + this.fpSpread1.AllowCellOverflow = true; + this.fpSpread1.AllowSheetMove = true; + this.fpSpread1.AllowUserFormulas = true; + this.fpSpread1.BorderCollapse = FarPoint.Win.Spread.BorderCollapse.Collapse; + this.fpSpread1.ButtonDrawMode = FarPoint.Win.Spread.ButtonDrawModes.CurrentCell; this.fpSpread1.Dock = System.Windows.Forms.DockStyle.Fill; + this.fpSpread1.Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1.HorizontalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded; this.fpSpread1.Location = new System.Drawing.Point(0, 58); this.fpSpread1.Name = "fpSpread1"; + namedStyle3.BackColor = System.Drawing.SystemColors.Window; + namedStyle3.CellType = generalCellType18; + namedStyle3.Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + namedStyle3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + namedStyle3.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + namedStyle3.Renderer = generalCellType18; + namedStyle3.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + namedStyle4.BackColor = System.Drawing.SystemColors.Window; + namedStyle4.CellType = generalCellType19; + namedStyle4.Font = new System.Drawing.Font("Arial", 11F); + namedStyle4.ForeColor = System.Drawing.SystemColors.WindowText; + namedStyle4.Renderer = generalCellType19; + this.fpSpread1.NamedStyles.AddRange(new FarPoint.Win.Spread.NamedStyle[] { + namedStyle3, + namedStyle4}); this.fpSpread1.Sheets.AddRange(new FarPoint.Win.Spread.SheetView[] { - this.fpSpread1_Sheet1}); + this.fpSpread1_Sheet1, + this.fpSpread1_Sheet2, + this.fpSpread1_Sheet3}); this.fpSpread1.Size = new System.Drawing.Size(1058, 488); this.fpSpread1.TabIndex = 3; - // - // fpSpread1_Sheet1 - // - this.fpSpread1_Sheet1.Reset(); - this.fpSpread1_Sheet1.SheetName = "Sheet1"; + this.fpSpread1.TabStripPolicy = FarPoint.Win.Spread.TabStripPolicy.Always; + this.fpSpread1.TabStripRatio = 0.6D; + this.fpSpread1.VerticalScrollBarPolicy = FarPoint.Win.Spread.ScrollBarPolicy.AsNeeded; + this.fpSpread1.ActiveSheetIndex = 2; // // progressBar2 // @@ -203,6 +403,1500 @@ this.progressBar2.Size = new System.Drawing.Size(1058, 23); this.progressBar2.TabIndex = 5; // + // fpSpread1_Sheet1 + // + this.fpSpread1_Sheet1.Reset(); + this.fpSpread1_Sheet1.SheetName = "보고서양식"; + // Formulas and custom names must be loaded with R1C1 reference style + this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1; + this.fpSpread1_Sheet1.ColumnCount = 11; + this.fpSpread1_Sheet1.RowCount = 10; + this.fpSpread1_Sheet1.Cells.Get(0, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(0, 1).Font = new System.Drawing.Font("맑은 고딕", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(0, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(0, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(0, 1).Value = "적정인원 분석 보고서 (Draft)"; + this.fpSpread1_Sheet1.Cells.Get(0, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 1).Border = lineBorder122; + this.fpSpread1_Sheet1.Cells.Get(2, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 1).Value = "파트"; + this.fpSpread1_Sheet1.Cells.Get(2, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 2).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 2).Border = lineBorder123; + this.fpSpread1_Sheet1.Cells.Get(2, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 2).Value = "공정"; + this.fpSpread1_Sheet1.Cells.Get(2, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 3).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 3).Border = lineBorder124; + this.fpSpread1_Sheet1.Cells.Get(2, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 3).Value = "담당자"; + this.fpSpread1_Sheet1.Cells.Get(2, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 4).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 4).Border = lineBorder125; + this.fpSpread1_Sheet1.Cells.Get(2, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 4).Value = "요청부서"; + this.fpSpread1_Sheet1.Cells.Get(2, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 5).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 5).Border = lineBorder126; + this.fpSpread1_Sheet1.Cells.Get(2, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 5).Value = "시작일"; + this.fpSpread1_Sheet1.Cells.Get(2, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 6).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 6).Border = lineBorder127; + this.fpSpread1_Sheet1.Cells.Get(2, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 6).Value = "종료일"; + this.fpSpread1_Sheet1.Cells.Get(2, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 7).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 7).Border = lineBorder128; + this.fpSpread1_Sheet1.Cells.Get(2, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 7).Value = "근무일수"; + this.fpSpread1_Sheet1.Cells.Get(2, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 8).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 8).Border = lineBorder129; + this.fpSpread1_Sheet1.Cells.Get(2, 8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(2, 8).Value = "① 표준근무시간"; + this.fpSpread1_Sheet1.Cells.Get(2, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 9).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 9).Border = lineBorder130; + this.fpSpread1_Sheet1.Cells.Get(2, 9).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 9).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 9).Value = "근무인원"; + this.fpSpread1_Sheet1.Cells.Get(2, 9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 10).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(2, 10).Border = lineBorder131; + this.fpSpread1_Sheet1.Cells.Get(2, 10).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(2, 10).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(2, 10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(2, 10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet1.Cells.Get(3, 1).Border = lineBorder132; + this.fpSpread1_Sheet1.Cells.Get(3, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 1).Value = "1파트"; + this.fpSpread1_Sheet1.Cells.Get(3, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 2).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet1.Cells.Get(3, 2).Border = lineBorder133; + this.fpSpread1_Sheet1.Cells.Get(3, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 3).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet1.Cells.Get(3, 3).Border = lineBorder134; + this.fpSpread1_Sheet1.Cells.Get(3, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 4).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet1.Cells.Get(3, 4).Border = lineBorder135; + this.fpSpread1_Sheet1.Cells.Get(3, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 5).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet1.Cells.Get(3, 5).Border = lineBorder136; + generalCellType20.DateTimeFormat = ((System.Globalization.DateTimeFormatInfo)(new System.Globalization.CultureInfo("ko-KR", false).DateTimeFormat.Clone())); + generalCellType20.DateTimeFormat.AbbreviatedDayNames = new string[] { + "일", + "월", + "화", + "수", + "목", + "금", + "토"}; + generalCellType20.DateTimeFormat.AbbreviatedMonthGenitiveNames = new string[] { + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + ""}; + generalCellType20.DateTimeFormat.AbbreviatedMonthNames = new string[] { + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + ""}; + generalCellType20.DateTimeFormat.AMDesignator = "오전"; + generalCellType20.DateTimeFormat.Calendar = ((System.Globalization.Calendar)(resources.GetObject("resource.Calendar"))); + generalCellType20.DateTimeFormat.CalendarWeekRule = System.Globalization.CalendarWeekRule.FirstDay; + generalCellType20.DateTimeFormat.DateSeparator = "-"; + generalCellType20.DateTimeFormat.DayNames = new string[] { + "일요일", + "월요일", + "화요일", + "수요일", + "목요일", + "금요일", + "토요일"}; + generalCellType20.DateTimeFormat.FirstDayOfWeek = System.DayOfWeek.Sunday; + generalCellType20.DateTimeFormat.FullDateTimePattern = "yyyy\'년\' M\'월\' d\'일\' dddd tt h:mm:ss"; + generalCellType20.DateTimeFormat.LongDatePattern = "yyyy\'년\' M\'월\' d\'일\' dddd"; + generalCellType20.DateTimeFormat.LongTimePattern = "tt h:mm:ss"; + generalCellType20.DateTimeFormat.MonthDayPattern = "M월 d일"; + generalCellType20.DateTimeFormat.MonthGenitiveNames = new string[] { + "1월", + "2월", + "3월", + "4월", + "5월", + "6월", + "7월", + "8월", + "9월", + "10월", + "11월", + "12월", + ""}; + generalCellType20.DateTimeFormat.MonthNames = new string[] { + "1월", + "2월", + "3월", + "4월", + "5월", + "6월", + "7월", + "8월", + "9월", + "10월", + "11월", + "12월", + ""}; + generalCellType20.DateTimeFormat.PMDesignator = "오후"; + generalCellType20.DateTimeFormat.ShortDatePattern = "yyyy-MM-dd"; + generalCellType20.DateTimeFormat.ShortestDayNames = new string[] { + "일", + "월", + "화", + "수", + "목", + "금", + "토"}; + generalCellType20.DateTimeFormat.ShortTimePattern = "tt h:mm"; + generalCellType20.DateTimeFormat.TimeSeparator = ":"; + generalCellType20.DateTimeFormat.YearMonthPattern = "yyyy\'년\' M\'월\'"; + generalCellType20.FormatString = "yyyy-MM-dd"; + generalCellType20.IsDateFormat = true; + this.fpSpread1_Sheet1.Cells.Get(3, 5).CellType = generalCellType20; + this.fpSpread1_Sheet1.Cells.Get(3, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 5).Value = 44075D; + this.fpSpread1_Sheet1.Cells.Get(3, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 6).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet1.Cells.Get(3, 6).Border = lineBorder137; + this.fpSpread1_Sheet1.Cells.Get(3, 6).CellType = generalCellType20; + this.fpSpread1_Sheet1.Cells.Get(3, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 6).Value = 44104D; + this.fpSpread1_Sheet1.Cells.Get(3, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 7).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(248)))), ((int)(((byte)(203)))), ((int)(((byte)(173))))); + this.fpSpread1_Sheet1.Cells.Get(3, 7).Border = lineBorder138; + this.fpSpread1_Sheet1.Cells.Get(3, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 7).Value = 0D; + this.fpSpread1_Sheet1.Cells.Get(3, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 8).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet1.Cells.Get(3, 8).Border = lineBorder139; + this.fpSpread1_Sheet1.Cells.Get(3, 8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 8).Formula = "RC[-1]*8"; + this.fpSpread1_Sheet1.Cells.Get(3, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 9).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet1.Cells.Get(3, 9).Border = lineBorder140; + this.fpSpread1_Sheet1.Cells.Get(3, 9).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 9).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 9).Formula = "RC[-1]*8"; + this.fpSpread1_Sheet1.Cells.Get(3, 9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 10).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet1.Cells.Get(3, 10).Border = lineBorder141; + this.fpSpread1_Sheet1.Cells.Get(3, 10).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(3, 10).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(3, 10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(3, 10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(4, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(4, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(4, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(4, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(4, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(4, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(4, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(4, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(4, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(4, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(4, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(4, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(4, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(4, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(4, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(4, 4).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(4, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(4, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(4, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(4, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(4, 5).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(4, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(4, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(4, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(4, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(4, 6).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(4, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(4, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(4, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(4, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(4, 7).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(4, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(4, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(4, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(4, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(4, 8).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(4, 8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(4, 8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(4, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(4, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 1).Border = complexBorder6; + generalCellType21.Multiline = true; + generalCellType21.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(5, 1).CellType = generalCellType21; + this.fpSpread1_Sheet1.Cells.Get(5, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 1).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 1).RowSpan = 2; + this.fpSpread1_Sheet1.Cells.Get(5, 1).Value = "Process\n(업무분류)"; + this.fpSpread1_Sheet1.Cells.Get(5, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 2).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 2).Border = complexBorder7; + generalCellType22.Multiline = true; + generalCellType22.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(5, 2).CellType = generalCellType22; + this.fpSpread1_Sheet1.Cells.Get(5, 2).ColumnSpan = 5; + this.fpSpread1_Sheet1.Cells.Get(5, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 2).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 2).Value = "업무별 투입시간 (초과시간 포함)"; + this.fpSpread1_Sheet1.Cells.Get(5, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 3).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 3).Border = lineBorder142; + generalCellType23.Multiline = true; + generalCellType23.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(5, 3).CellType = generalCellType23; + this.fpSpread1_Sheet1.Cells.Get(5, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 3).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 4).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 4).Border = lineBorder143; + this.fpSpread1_Sheet1.Cells.Get(5, 4).CellType = generalCellType23; + this.fpSpread1_Sheet1.Cells.Get(5, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 4).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 5).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 5).Border = lineBorder144; + this.fpSpread1_Sheet1.Cells.Get(5, 5).CellType = generalCellType23; + this.fpSpread1_Sheet1.Cells.Get(5, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 5).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 6).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 6).Border = lineBorder145; + generalCellType24.Multiline = true; + generalCellType24.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(5, 6).CellType = generalCellType24; + this.fpSpread1_Sheet1.Cells.Get(5, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 6).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 7).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 7).Border = complexBorder8; + generalCellType25.Multiline = true; + generalCellType25.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(5, 7).CellType = generalCellType25; + this.fpSpread1_Sheet1.Cells.Get(5, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 7).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 7).RowSpan = 2; + this.fpSpread1_Sheet1.Cells.Get(5, 7).Value = "② 총투입시간\n(초과시간포함)"; + this.fpSpread1_Sheet1.Cells.Get(5, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 8).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 8).Border = complexBorder8; + generalCellType26.Multiline = true; + generalCellType26.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(5, 8).CellType = generalCellType26; + this.fpSpread1_Sheet1.Cells.Get(5, 8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 8).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 8).RowSpan = 2; + this.fpSpread1_Sheet1.Cells.Get(5, 8).Value = "적정인원 (명)\n② / ①"; + this.fpSpread1_Sheet1.Cells.Get(5, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 9).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 9).Border = complexBorder9; + generalCellType27.Multiline = true; + generalCellType27.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(5, 9).CellType = generalCellType27; + this.fpSpread1_Sheet1.Cells.Get(5, 9).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 9).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 9).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 9).RowSpan = 2; + this.fpSpread1_Sheet1.Cells.Get(5, 9).Value = "초과시간\n(OT)"; + this.fpSpread1_Sheet1.Cells.Get(5, 9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 10).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(5, 10).Border = complexBorder9; + this.fpSpread1_Sheet1.Cells.Get(5, 10).CellType = generalCellType27; + this.fpSpread1_Sheet1.Cells.Get(5, 10).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(5, 10).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(5, 10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(5, 10).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(5, 10).RowSpan = 2; + this.fpSpread1_Sheet1.Cells.Get(5, 10).Value = "휴가\n시간"; + this.fpSpread1_Sheet1.Cells.Get(5, 10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 1).Border = lineBorder146; + this.fpSpread1_Sheet1.Cells.Get(6, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 1).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 2).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 2).Border = lineBorder147; + generalCellType28.Multiline = true; + generalCellType28.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(6, 2).CellType = generalCellType28; + this.fpSpread1_Sheet1.Cells.Get(6, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 2).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 2).Value = "*"; + this.fpSpread1_Sheet1.Cells.Get(6, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 3).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 3).Border = lineBorder148; + this.fpSpread1_Sheet1.Cells.Get(6, 3).CellType = generalCellType28; + this.fpSpread1_Sheet1.Cells.Get(6, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 3).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 3).Value = "*"; + this.fpSpread1_Sheet1.Cells.Get(6, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 4).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 4).Border = lineBorder149; + this.fpSpread1_Sheet1.Cells.Get(6, 4).CellType = generalCellType28; + this.fpSpread1_Sheet1.Cells.Get(6, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 4).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 4).Value = "*"; + this.fpSpread1_Sheet1.Cells.Get(6, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 5).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 5).Border = lineBorder150; + this.fpSpread1_Sheet1.Cells.Get(6, 5).CellType = generalCellType28; + this.fpSpread1_Sheet1.Cells.Get(6, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 5).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 5).Value = "*"; + this.fpSpread1_Sheet1.Cells.Get(6, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 6).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 6).Border = lineBorder151; + this.fpSpread1_Sheet1.Cells.Get(6, 6).CellType = generalCellType28; + this.fpSpread1_Sheet1.Cells.Get(6, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 6).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 6).Value = "*"; + this.fpSpread1_Sheet1.Cells.Get(6, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 7).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 7).Border = lineBorder152; + this.fpSpread1_Sheet1.Cells.Get(6, 7).CellType = generalCellType28; + this.fpSpread1_Sheet1.Cells.Get(6, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 7).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 8).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 8).Border = lineBorder153; + generalCellType29.Multiline = true; + generalCellType29.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(6, 8).CellType = generalCellType29; + this.fpSpread1_Sheet1.Cells.Get(6, 8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 8).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 9).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 9).Border = lineBorder154; + generalCellType30.Multiline = true; + generalCellType30.WordWrap = true; + this.fpSpread1_Sheet1.Cells.Get(6, 9).CellType = generalCellType30; + this.fpSpread1_Sheet1.Cells.Get(6, 9).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 9).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 9).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 10).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet1.Cells.Get(6, 10).Border = lineBorder155; + this.fpSpread1_Sheet1.Cells.Get(6, 10).CellType = generalCellType30; + this.fpSpread1_Sheet1.Cells.Get(6, 10).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(6, 10).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet1.Cells.Get(6, 10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(6, 10).Locked = true; + this.fpSpread1_Sheet1.Cells.Get(6, 10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 1).Border = lineBorder156; + this.fpSpread1_Sheet1.Cells.Get(7, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(7, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 2).Border = lineBorder157; + this.fpSpread1_Sheet1.Cells.Get(7, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 3).Border = lineBorder158; + this.fpSpread1_Sheet1.Cells.Get(7, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 4).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 4).Border = lineBorder159; + this.fpSpread1_Sheet1.Cells.Get(7, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 5).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 5).Border = lineBorder160; + this.fpSpread1_Sheet1.Cells.Get(7, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 6).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 6).Border = lineBorder161; + this.fpSpread1_Sheet1.Cells.Get(7, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 7).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 7).Border = lineBorder162; + this.fpSpread1_Sheet1.Cells.Get(7, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 7).Formula = "SUM(RC[-5]:RC[-1])+RC[2]"; + this.fpSpread1_Sheet1.Cells.Get(7, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 8).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 8).Border = lineBorder163; + generalCellType31.FormatString = "N"; + generalCellType31.NumberFormat = ((System.Globalization.NumberFormatInfo)(new System.Globalization.CultureInfo("ko-KR", false).NumberFormat.Clone())); + generalCellType31.NumberFormat.NumberDecimalDigits = 1; + generalCellType31.NumberFormat.NumberGroupSizes = new int[] { + 0}; + this.fpSpread1_Sheet1.Cells.Get(7, 8).CellType = generalCellType31; + this.fpSpread1_Sheet1.Cells.Get(7, 8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 8).Formula = "RC[-1]/R4C9"; + this.fpSpread1_Sheet1.Cells.Get(7, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 9).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 9).Border = lineBorder164; + this.fpSpread1_Sheet1.Cells.Get(7, 9).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 9).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 9).Value = 5D; + this.fpSpread1_Sheet1.Cells.Get(7, 9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 10).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(7, 10).Border = lineBorder165; + this.fpSpread1_Sheet1.Cells.Get(7, 10).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(7, 10).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(7, 10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(7, 10).Value = 5D; + this.fpSpread1_Sheet1.Cells.Get(7, 10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 1).Border = lineBorder166; + this.fpSpread1_Sheet1.Cells.Get(8, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(8, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 2).Border = lineBorder167; + this.fpSpread1_Sheet1.Cells.Get(8, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 3).Border = lineBorder168; + this.fpSpread1_Sheet1.Cells.Get(8, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 4).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 4).Border = lineBorder169; + this.fpSpread1_Sheet1.Cells.Get(8, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 5).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 5).Border = lineBorder170; + this.fpSpread1_Sheet1.Cells.Get(8, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 6).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 6).Border = lineBorder171; + this.fpSpread1_Sheet1.Cells.Get(8, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 7).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 7).Border = lineBorder172; + this.fpSpread1_Sheet1.Cells.Get(8, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 7).Formula = "SUM(RC[-5]:RC[-1])+RC[2]"; + this.fpSpread1_Sheet1.Cells.Get(8, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 8).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 8).Border = lineBorder173; + this.fpSpread1_Sheet1.Cells.Get(8, 8).CellType = generalCellType31; + this.fpSpread1_Sheet1.Cells.Get(8, 8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 8).Formula = "RC[-1]/R4C9"; + this.fpSpread1_Sheet1.Cells.Get(8, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 9).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 9).Border = lineBorder174; + this.fpSpread1_Sheet1.Cells.Get(8, 9).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 9).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 9).Value = 5D; + this.fpSpread1_Sheet1.Cells.Get(8, 9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 10).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(8, 10).Border = lineBorder175; + this.fpSpread1_Sheet1.Cells.Get(8, 10).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(8, 10).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(8, 10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(8, 10).Value = 5D; + this.fpSpread1_Sheet1.Cells.Get(8, 10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 1).Border = lineBorder176; + this.fpSpread1_Sheet1.Cells.Get(9, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Cells.Get(9, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 2).Border = lineBorder177; + this.fpSpread1_Sheet1.Cells.Get(9, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 3).Border = lineBorder178; + this.fpSpread1_Sheet1.Cells.Get(9, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 4).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 4).Border = lineBorder179; + this.fpSpread1_Sheet1.Cells.Get(9, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 5).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 5).Border = lineBorder180; + this.fpSpread1_Sheet1.Cells.Get(9, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 6).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 6).Border = lineBorder181; + this.fpSpread1_Sheet1.Cells.Get(9, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 7).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 7).Border = lineBorder182; + this.fpSpread1_Sheet1.Cells.Get(9, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 7).Formula = "SUM(RC[-5]:RC[-1])+RC[2]"; + this.fpSpread1_Sheet1.Cells.Get(9, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 8).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 8).Border = lineBorder183; + this.fpSpread1_Sheet1.Cells.Get(9, 8).CellType = generalCellType31; + this.fpSpread1_Sheet1.Cells.Get(9, 8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 8).Formula = "RC[-1]/R4C9"; + this.fpSpread1_Sheet1.Cells.Get(9, 8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 9).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 9).Border = lineBorder184; + this.fpSpread1_Sheet1.Cells.Get(9, 9).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 9).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 9).Value = 5D; + this.fpSpread1_Sheet1.Cells.Get(9, 9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 10).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Cells.Get(9, 10).Border = lineBorder185; + this.fpSpread1_Sheet1.Cells.Get(9, 10).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Cells.Get(9, 10).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Cells.Get(9, 10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet1.Cells.Get(9, 10).Value = 5D; + this.fpSpread1_Sheet1.Cells.Get(9, 10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.ColumnFooter.Columns.Default.Width = 82F; + this.fpSpread1_Sheet1.Columns.Default.Width = 82F; + this.fpSpread1_Sheet1.Columns.Get(0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(0).Width = 14F; + this.fpSpread1_Sheet1.Columns.Get(1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(1).Width = 234F; + this.fpSpread1_Sheet1.Columns.Get(2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(2).Width = 133F; + this.fpSpread1_Sheet1.Columns.Get(3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(3).Width = 133F; + this.fpSpread1_Sheet1.Columns.Get(4).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(4).Width = 133F; + this.fpSpread1_Sheet1.Columns.Get(5).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(5).Width = 133F; + this.fpSpread1_Sheet1.Columns.Get(6).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(6).Width = 133F; + this.fpSpread1_Sheet1.Columns.Get(7).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(7).Width = 124F; + this.fpSpread1_Sheet1.Columns.Get(8).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(8).Width = 159F; + this.fpSpread1_Sheet1.Columns.Get(9).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(9).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(9).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(9).Width = 83F; + this.fpSpread1_Sheet1.Columns.Get(10).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Columns.Get(10).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Columns.Get(10).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Columns.Get(10).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Columns.Get(10).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Columns.Get(10).Width = 83F; + this.fpSpread1_Sheet1.DefaultStyle.BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.DefaultStyle.Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.DefaultStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.DefaultStyle.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.DefaultStyle.Locked = true; + this.fpSpread1_Sheet1.DefaultStyle.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.EnableDiagonalLine = true; + this.fpSpread1_Sheet1.HorizontalGridLine = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Flat, System.Drawing.Color.Empty); + this.fpSpread1_Sheet1.MaximumIterations = 100; + this.fpSpread1_Sheet1.PrintInfo.Margin.Bottom = 72; + this.fpSpread1_Sheet1.PrintInfo.Margin.Footer = 28; + this.fpSpread1_Sheet1.PrintInfo.Margin.Header = 28; + this.fpSpread1_Sheet1.PrintInfo.Margin.Left = 67; + this.fpSpread1_Sheet1.PrintInfo.Margin.Right = 67; + this.fpSpread1_Sheet1.PrintInfo.Margin.Top = 72; + noPrinterPrintInfo4.Bounds = new System.Drawing.Rectangle(0, 0, 816, 1148); + noPrinterPrintInfo4.HardMarginX = 0F; + noPrinterPrintInfo4.HardMarginY = 0F; + noPrinterPrintInfo4.SupportColor = true; + this.fpSpread1_Sheet1.PrintInfo.NoPrinterSetting = noPrinterPrintInfo4; + this.fpSpread1_Sheet1.PrintInfo.Orientation = FarPoint.Win.Spread.PrintOrientation.Portrait; + this.fpSpread1_Sheet1.PrintInfo.PageOrder = FarPoint.Win.Spread.PrintPageOrder.DownThenOver; + this.fpSpread1_Sheet1.PrintInfo.PaperSize = ((System.Drawing.Printing.PaperSize)(resources.GetObject("resource.PaperSize"))); + this.fpSpread1_Sheet1.PrintInfo.PdfSecurity = null; + this.fpSpread1_Sheet1.PrintInfo.ShowBorder = false; + this.fpSpread1_Sheet1.PrintInfo.ShowColor = true; + this.fpSpread1_Sheet1.PrintInfo.ShowColumnHeader = FarPoint.Win.Spread.PrintHeader.Hide; + this.fpSpread1_Sheet1.PrintInfo.ShowGrid = false; + this.fpSpread1_Sheet1.PrintInfo.ShowRowHeader = FarPoint.Win.Spread.PrintHeader.Hide; + this.fpSpread1_Sheet1.PrintInfo.ZoomFactor = 1F; + this.fpSpread1_Sheet1.Protect = false; + this.fpSpread1_Sheet1.RowHeader.Columns.Default.Resizable = false; + this.fpSpread1_Sheet1.Rows.Default.Height = 22F; + this.fpSpread1_Sheet1.Rows.Get(0).Height = 35F; + this.fpSpread1_Sheet1.Rows.Get(5).Height = 23F; + this.fpSpread1_Sheet1.Rows.Get(6).Height = 27F; + this.fpSpread1_Sheet1.Rows.Get(7).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Rows.Get(7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Rows.Get(7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Rows.Get(7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Rows.Get(7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Rows.Get(8).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Rows.Get(8).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Rows.Get(8).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Rows.Get(8).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Rows.Get(8).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.Rows.Get(9).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet1.Rows.Get(9).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet1.Rows.Get(9).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet1.Rows.Get(9).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet1.Rows.Get(9).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet1.VerticalGridLine = new FarPoint.Win.Spread.GridLine(FarPoint.Win.Spread.GridLineType.Flat, System.Drawing.Color.Empty); + this.fpSpread1_Sheet1.ZoomFactor = 0.85F; + this.fpSpread1_Sheet1.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1; + // + // fpSpread1_Sheet2 + // + this.fpSpread1_Sheet2.Reset(); + this.fpSpread1_Sheet2.SheetName = "담당자"; + // Formulas and custom names must be loaded with R1C1 reference style + this.fpSpread1_Sheet2.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1; + this.fpSpread1_Sheet2.ColumnCount = 6; + this.fpSpread1_Sheet2.RowCount = 10; + this.fpSpread1_Sheet2.Cells.Get(0, 0).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet2.Cells.Get(0, 0).Border = lineBorder186; + this.fpSpread1_Sheet2.Cells.Get(0, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(0, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 0).Value = "성명"; + this.fpSpread1_Sheet2.Cells.Get(0, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet2.Cells.Get(0, 1).Border = lineBorder187; + this.fpSpread1_Sheet2.Cells.Get(0, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(0, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(0, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 1).Value = "사원번호"; + this.fpSpread1_Sheet2.Cells.Get(0, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 2).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet2.Cells.Get(0, 2).Border = lineBorder188; + this.fpSpread1_Sheet2.Cells.Get(0, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(0, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(0, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 2).Value = "근무시간"; + this.fpSpread1_Sheet2.Cells.Get(0, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 3).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet2.Cells.Get(0, 3).Border = lineBorder189; + this.fpSpread1_Sheet2.Cells.Get(0, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(0, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(0, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 3).Value = "초과시간"; + this.fpSpread1_Sheet2.Cells.Get(0, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 4).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet2.Cells.Get(0, 4).Border = complexBorder10; + this.fpSpread1_Sheet2.Cells.Get(0, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(0, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(0, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 4).Value = "표준근무시간"; + this.fpSpread1_Sheet2.Cells.Get(0, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 5).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(226)))), ((int)(((byte)(243))))); + this.fpSpread1_Sheet2.Cells.Get(0, 5).Border = lineBorder190; + this.fpSpread1_Sheet2.Cells.Get(0, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(0, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(0, 5).Formula = "#REF!"; + this.fpSpread1_Sheet2.Cells.Get(0, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(0, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(1, 0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(1, 0).Border = lineBorder191; + this.fpSpread1_Sheet2.Cells.Get(1, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(1, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(1, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(1, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(1, 1).Border = lineBorder192; + this.fpSpread1_Sheet2.Cells.Get(1, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(1, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(1, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(1, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(1, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(1, 2).Border = lineBorder193; + this.fpSpread1_Sheet2.Cells.Get(1, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(1, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(1, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(1, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(1, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(1, 3).Border = lineBorder194; + this.fpSpread1_Sheet2.Cells.Get(1, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(1, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(1, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(1, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(2, 0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(2, 0).Border = lineBorder195; + this.fpSpread1_Sheet2.Cells.Get(2, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(2, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(2, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(2, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(2, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(2, 1).Border = lineBorder196; + this.fpSpread1_Sheet2.Cells.Get(2, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(2, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(2, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(2, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(2, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(2, 2).Border = lineBorder197; + this.fpSpread1_Sheet2.Cells.Get(2, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(2, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(2, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(2, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(2, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(2, 3).Border = lineBorder198; + this.fpSpread1_Sheet2.Cells.Get(2, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(2, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(2, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(2, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(3, 0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(3, 0).Border = lineBorder199; + this.fpSpread1_Sheet2.Cells.Get(3, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(3, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(3, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(3, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(3, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(3, 1).Border = lineBorder200; + this.fpSpread1_Sheet2.Cells.Get(3, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(3, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(3, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(3, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(3, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(3, 2).Border = lineBorder201; + this.fpSpread1_Sheet2.Cells.Get(3, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(3, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(3, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(3, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(3, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(3, 3).Border = lineBorder202; + this.fpSpread1_Sheet2.Cells.Get(3, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(3, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(3, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(3, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(4, 0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(4, 0).Border = lineBorder203; + this.fpSpread1_Sheet2.Cells.Get(4, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(4, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(4, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(4, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(4, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(4, 1).Border = lineBorder204; + this.fpSpread1_Sheet2.Cells.Get(4, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(4, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(4, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(4, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(4, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(4, 2).Border = lineBorder205; + this.fpSpread1_Sheet2.Cells.Get(4, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(4, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(4, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(4, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(4, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(4, 3).Border = lineBorder206; + this.fpSpread1_Sheet2.Cells.Get(4, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(4, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(4, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(4, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(5, 0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(5, 0).Border = lineBorder207; + this.fpSpread1_Sheet2.Cells.Get(5, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(5, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(5, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(5, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(5, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(5, 1).Border = lineBorder208; + this.fpSpread1_Sheet2.Cells.Get(5, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(5, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(5, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(5, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(5, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(5, 2).Border = lineBorder209; + this.fpSpread1_Sheet2.Cells.Get(5, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(5, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(5, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(5, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(5, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(5, 3).Border = lineBorder210; + this.fpSpread1_Sheet2.Cells.Get(5, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(5, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(5, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(5, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(6, 0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(6, 0).Border = lineBorder211; + this.fpSpread1_Sheet2.Cells.Get(6, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(6, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(6, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(6, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(6, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(6, 1).Border = lineBorder212; + this.fpSpread1_Sheet2.Cells.Get(6, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(6, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(6, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(6, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(6, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(6, 2).Border = lineBorder213; + this.fpSpread1_Sheet2.Cells.Get(6, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(6, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(6, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(6, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(6, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(6, 3).Border = lineBorder214; + this.fpSpread1_Sheet2.Cells.Get(6, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(6, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(6, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(6, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(7, 0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(7, 0).Border = lineBorder215; + this.fpSpread1_Sheet2.Cells.Get(7, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(7, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(7, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(7, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(7, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(7, 1).Border = lineBorder216; + this.fpSpread1_Sheet2.Cells.Get(7, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(7, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(7, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(7, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(7, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(7, 2).Border = lineBorder217; + this.fpSpread1_Sheet2.Cells.Get(7, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(7, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(7, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(7, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(7, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(7, 3).Border = lineBorder218; + this.fpSpread1_Sheet2.Cells.Get(7, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(7, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(7, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(7, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(8, 0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(8, 0).Border = lineBorder219; + this.fpSpread1_Sheet2.Cells.Get(8, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(8, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(8, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(8, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(8, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(8, 1).Border = lineBorder220; + this.fpSpread1_Sheet2.Cells.Get(8, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(8, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(8, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(8, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(8, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(8, 2).Border = lineBorder221; + this.fpSpread1_Sheet2.Cells.Get(8, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(8, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(8, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(8, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(8, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(8, 3).Border = lineBorder222; + this.fpSpread1_Sheet2.Cells.Get(8, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(8, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(8, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(8, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(9, 0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(9, 0).Border = lineBorder223; + this.fpSpread1_Sheet2.Cells.Get(9, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(9, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(9, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(9, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(9, 1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(9, 1).Border = lineBorder224; + this.fpSpread1_Sheet2.Cells.Get(9, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(9, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(9, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(9, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(9, 2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(9, 2).Border = lineBorder225; + this.fpSpread1_Sheet2.Cells.Get(9, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(9, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(9, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(9, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(9, 3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Cells.Get(9, 3).Border = lineBorder226; + this.fpSpread1_Sheet2.Cells.Get(9, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Cells.Get(9, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Cells.Get(9, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Cells.Get(9, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.ColumnFooter.Columns.Default.Width = 82F; + this.fpSpread1_Sheet2.Columns.Default.Width = 82F; + this.fpSpread1_Sheet2.Columns.Get(0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Columns.Get(0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Columns.Get(0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Columns.Get(0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Columns.Get(0).Width = 122F; + this.fpSpread1_Sheet2.Columns.Get(1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Columns.Get(1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Columns.Get(1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Columns.Get(1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Columns.Get(1).Width = 162F; + this.fpSpread1_Sheet2.Columns.Get(2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Columns.Get(2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Columns.Get(2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Columns.Get(2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Columns.Get(2).Width = 127F; + this.fpSpread1_Sheet2.Columns.Get(3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.Columns.Get(3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.Columns.Get(3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet2.Columns.Get(3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.Columns.Get(3).Width = 138F; + this.fpSpread1_Sheet2.Columns.Get(4).Width = 117F; + this.fpSpread1_Sheet2.Columns.Get(5).Width = 91F; + this.fpSpread1_Sheet2.DefaultStyle.BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet2.DefaultStyle.Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet2.DefaultStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet2.DefaultStyle.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet2.DefaultStyle.Locked = true; + this.fpSpread1_Sheet2.DefaultStyle.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet2.EnableDiagonalLine = true; + this.fpSpread1_Sheet2.MaximumIterations = 100; + this.fpSpread1_Sheet2.PrintInfo.Margin.Bottom = 72; + this.fpSpread1_Sheet2.PrintInfo.Margin.Footer = 28; + this.fpSpread1_Sheet2.PrintInfo.Margin.Header = 28; + this.fpSpread1_Sheet2.PrintInfo.Margin.Left = 67; + this.fpSpread1_Sheet2.PrintInfo.Margin.Right = 67; + this.fpSpread1_Sheet2.PrintInfo.Margin.Top = 72; + noPrinterPrintInfo5.Bounds = new System.Drawing.Rectangle(0, 0, 816, 1148); + noPrinterPrintInfo5.HardMarginX = 0F; + noPrinterPrintInfo5.HardMarginY = 0F; + noPrinterPrintInfo5.SupportColor = true; + this.fpSpread1_Sheet2.PrintInfo.NoPrinterSetting = noPrinterPrintInfo5; + this.fpSpread1_Sheet2.PrintInfo.Orientation = FarPoint.Win.Spread.PrintOrientation.Portrait; + this.fpSpread1_Sheet2.PrintInfo.PageOrder = FarPoint.Win.Spread.PrintPageOrder.DownThenOver; + this.fpSpread1_Sheet2.PrintInfo.PaperSize = ((System.Drawing.Printing.PaperSize)(resources.GetObject("resource.PaperSize1"))); + this.fpSpread1_Sheet2.PrintInfo.PdfSecurity = null; + this.fpSpread1_Sheet2.PrintInfo.ShowBorder = false; + this.fpSpread1_Sheet2.PrintInfo.ShowColor = true; + this.fpSpread1_Sheet2.PrintInfo.ShowColumnHeader = FarPoint.Win.Spread.PrintHeader.Hide; + this.fpSpread1_Sheet2.PrintInfo.ShowGrid = false; + this.fpSpread1_Sheet2.PrintInfo.ShowRowHeader = FarPoint.Win.Spread.PrintHeader.Hide; + this.fpSpread1_Sheet2.PrintInfo.ZoomFactor = 1F; + this.fpSpread1_Sheet2.Protect = false; + this.fpSpread1_Sheet2.RowHeader.Columns.Default.Resizable = false; + this.fpSpread1_Sheet2.Rows.Default.Height = 22F; + this.fpSpread1_Sheet2.Rows.Get(0).Height = 40F; + this.fpSpread1_Sheet2.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1; + // + // fpSpread1_Sheet3 + // + this.fpSpread1_Sheet3.Reset(); + this.fpSpread1_Sheet3.SheetName = "RAW"; + // Formulas and custom names must be loaded with R1C1 reference style + this.fpSpread1_Sheet3.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1; + this.fpSpread1_Sheet3.ColumnCount = 8; + this.fpSpread1_Sheet3.RowCount = 10; + this.fpSpread1_Sheet3.Cells.Get(0, 0).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet3.Cells.Get(0, 0).Border = lineBorder227; + this.fpSpread1_Sheet3.Cells.Get(0, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(0, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet3.Cells.Get(0, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 0).Value = "사원번호"; + this.fpSpread1_Sheet3.Cells.Get(0, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet3.Cells.Get(0, 1).Border = lineBorder228; + this.fpSpread1_Sheet3.Cells.Get(0, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(0, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet3.Cells.Get(0, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 1).Value = "성명"; + this.fpSpread1_Sheet3.Cells.Get(0, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 2).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet3.Cells.Get(0, 2).Border = lineBorder229; + this.fpSpread1_Sheet3.Cells.Get(0, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(0, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet3.Cells.Get(0, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 2).Value = "일자"; + this.fpSpread1_Sheet3.Cells.Get(0, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 3).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet3.Cells.Get(0, 3).Border = lineBorder230; + this.fpSpread1_Sheet3.Cells.Get(0, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(0, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet3.Cells.Get(0, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 3).Value = "소속공정"; + this.fpSpread1_Sheet3.Cells.Get(0, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 4).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet3.Cells.Get(0, 4).Border = lineBorder231; + this.fpSpread1_Sheet3.Cells.Get(0, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(0, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet3.Cells.Get(0, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 4).Value = "업무공정"; + this.fpSpread1_Sheet3.Cells.Get(0, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 5).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet3.Cells.Get(0, 5).Border = lineBorder232; + this.fpSpread1_Sheet3.Cells.Get(0, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(0, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet3.Cells.Get(0, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 5).Value = "업무분류"; + this.fpSpread1_Sheet3.Cells.Get(0, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 6).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet3.Cells.Get(0, 6).Border = lineBorder233; + generalCellType32.FormatString = "#,##0 ;\\-#,##0\\ "; + generalCellType32.NegativeRed = true; + generalCellType32.NumberFormat = ((System.Globalization.NumberFormatInfo)(new System.Globalization.CultureInfo("ko-KR", false).NumberFormat.Clone())); + generalCellType32.NumberFormat.NumberDecimalDigits = 0; + this.fpSpread1_Sheet3.Cells.Get(0, 6).CellType = generalCellType32; + this.fpSpread1_Sheet3.Cells.Get(0, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(0, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet3.Cells.Get(0, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 6).Value = "시간"; + this.fpSpread1_Sheet3.Cells.Get(0, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 7).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(123)))), ((int)(((byte)(123)))), ((int)(((byte)(123))))); + this.fpSpread1_Sheet3.Cells.Get(0, 7).Border = lineBorder234; + this.fpSpread1_Sheet3.Cells.Get(0, 7).CellType = generalCellType32; + this.fpSpread1_Sheet3.Cells.Get(0, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(0, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))); + this.fpSpread1_Sheet3.Cells.Get(0, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(0, 7).Value = "초과"; + this.fpSpread1_Sheet3.Cells.Get(0, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 0).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet3.Cells.Get(1, 0).Border = lineBorder235; + this.fpSpread1_Sheet3.Cells.Get(1, 0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(1, 0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Cells.Get(1, 0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 1).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet3.Cells.Get(1, 1).Border = lineBorder236; + this.fpSpread1_Sheet3.Cells.Get(1, 1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(1, 1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Cells.Get(1, 1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 2).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet3.Cells.Get(1, 2).Border = lineBorder237; + this.fpSpread1_Sheet3.Cells.Get(1, 2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(1, 2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Cells.Get(1, 2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 3).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet3.Cells.Get(1, 3).Border = lineBorder238; + this.fpSpread1_Sheet3.Cells.Get(1, 3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(1, 3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Cells.Get(1, 3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 4).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet3.Cells.Get(1, 4).Border = lineBorder239; + this.fpSpread1_Sheet3.Cells.Get(1, 4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(1, 4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Cells.Get(1, 4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 5).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet3.Cells.Get(1, 5).Border = lineBorder240; + this.fpSpread1_Sheet3.Cells.Get(1, 5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(1, 5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Cells.Get(1, 5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 6).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet3.Cells.Get(1, 6).Border = lineBorder241; + generalCellType33.FormatString = "#,##0 ;\\-#,##0\\ "; + generalCellType33.NegativeRed = true; + generalCellType33.NumberFormat = ((System.Globalization.NumberFormatInfo)(new System.Globalization.CultureInfo("ko-KR", false).NumberFormat.Clone())); + generalCellType33.NumberFormat.NumberDecimalDigits = 0; + this.fpSpread1_Sheet3.Cells.Get(1, 6).CellType = generalCellType33; + this.fpSpread1_Sheet3.Cells.Get(1, 6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(1, 6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Cells.Get(1, 6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 7).BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242))))); + this.fpSpread1_Sheet3.Cells.Get(1, 7).Border = lineBorder242; + this.fpSpread1_Sheet3.Cells.Get(1, 7).CellType = generalCellType33; + this.fpSpread1_Sheet3.Cells.Get(1, 7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Cells.Get(1, 7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Cells.Get(1, 7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Cells.Get(1, 7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.ColumnFooter.Columns.Default.Width = 82F; + this.fpSpread1_Sheet3.Columns.Default.Width = 82F; + this.fpSpread1_Sheet3.Columns.Get(0).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet3.Columns.Get(0).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Columns.Get(0).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Columns.Get(0).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(0).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(0).Width = 123F; + this.fpSpread1_Sheet3.Columns.Get(1).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet3.Columns.Get(1).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Columns.Get(1).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Columns.Get(1).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(1).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(1).Width = 132F; + this.fpSpread1_Sheet3.Columns.Get(2).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet3.Columns.Get(2).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Columns.Get(2).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Columns.Get(2).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(2).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(2).Width = 132F; + this.fpSpread1_Sheet3.Columns.Get(3).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet3.Columns.Get(3).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Columns.Get(3).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Columns.Get(3).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(3).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(3).Width = 224F; + this.fpSpread1_Sheet3.Columns.Get(4).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet3.Columns.Get(4).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Columns.Get(4).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Columns.Get(4).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(4).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(4).Width = 203F; + this.fpSpread1_Sheet3.Columns.Get(5).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet3.Columns.Get(5).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Columns.Get(5).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Columns.Get(5).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(5).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(5).Width = 182F; + this.fpSpread1_Sheet3.Columns.Get(6).BackColor = System.Drawing.SystemColors.Window; + generalCellType34.FormatString = "#,##0 ;\\-#,##0\\ "; + generalCellType34.NegativeRed = true; + generalCellType34.NumberFormat = ((System.Globalization.NumberFormatInfo)(new System.Globalization.CultureInfo("ko-KR", false).NumberFormat.Clone())); + generalCellType34.NumberFormat.NumberDecimalDigits = 0; + this.fpSpread1_Sheet3.Columns.Get(6).CellType = generalCellType34; + this.fpSpread1_Sheet3.Columns.Get(6).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Columns.Get(6).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Columns.Get(6).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(6).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(6).Width = 109F; + this.fpSpread1_Sheet3.Columns.Get(7).BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet3.Columns.Get(7).CellType = generalCellType34; + this.fpSpread1_Sheet3.Columns.Get(7).Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.Columns.Get(7).ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.Columns.Get(7).HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(7).VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.Columns.Get(7).Width = 111F; + this.fpSpread1_Sheet3.DefaultStyle.BackColor = System.Drawing.SystemColors.Window; + this.fpSpread1_Sheet3.DefaultStyle.Font = new System.Drawing.Font("맑은 고딕", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.fpSpread1_Sheet3.DefaultStyle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.fpSpread1_Sheet3.DefaultStyle.HorizontalAlignment = FarPoint.Win.Spread.CellHorizontalAlignment.General; + this.fpSpread1_Sheet3.DefaultStyle.Locked = true; + this.fpSpread1_Sheet3.DefaultStyle.VerticalAlignment = FarPoint.Win.Spread.CellVerticalAlignment.Center; + this.fpSpread1_Sheet3.EnableDiagonalLine = true; + this.fpSpread1_Sheet3.MaximumIterations = 100; + this.fpSpread1_Sheet3.PrintInfo.Margin.Bottom = 72; + this.fpSpread1_Sheet3.PrintInfo.Margin.Footer = 28; + this.fpSpread1_Sheet3.PrintInfo.Margin.Header = 28; + this.fpSpread1_Sheet3.PrintInfo.Margin.Left = 67; + this.fpSpread1_Sheet3.PrintInfo.Margin.Right = 67; + this.fpSpread1_Sheet3.PrintInfo.Margin.Top = 72; + noPrinterPrintInfo6.Bounds = new System.Drawing.Rectangle(0, 0, 816, 1148); + noPrinterPrintInfo6.HardMarginX = 0F; + noPrinterPrintInfo6.HardMarginY = 0F; + noPrinterPrintInfo6.SupportColor = true; + this.fpSpread1_Sheet3.PrintInfo.NoPrinterSetting = noPrinterPrintInfo6; + this.fpSpread1_Sheet3.PrintInfo.Orientation = FarPoint.Win.Spread.PrintOrientation.Portrait; + this.fpSpread1_Sheet3.PrintInfo.PageOrder = FarPoint.Win.Spread.PrintPageOrder.DownThenOver; + this.fpSpread1_Sheet3.PrintInfo.PaperSize = ((System.Drawing.Printing.PaperSize)(resources.GetObject("resource.PaperSize2"))); + this.fpSpread1_Sheet3.PrintInfo.PdfSecurity = null; + this.fpSpread1_Sheet3.PrintInfo.ShowBorder = false; + this.fpSpread1_Sheet3.PrintInfo.ShowColor = true; + this.fpSpread1_Sheet3.PrintInfo.ShowColumnHeader = FarPoint.Win.Spread.PrintHeader.Hide; + this.fpSpread1_Sheet3.PrintInfo.ShowGrid = false; + this.fpSpread1_Sheet3.PrintInfo.ShowRowHeader = FarPoint.Win.Spread.PrintHeader.Hide; + this.fpSpread1_Sheet3.PrintInfo.ZoomFactor = 1F; + this.fpSpread1_Sheet3.Protect = false; + this.fpSpread1_Sheet3.RowHeader.Columns.Default.Resizable = false; + this.fpSpread1_Sheet3.Rows.Default.Height = 22F; + this.fpSpread1_Sheet3.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.A1; + // + // linkLabel1 + // + this.linkLabel1.AutoSize = true; + this.linkLabel1.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel1.Location = new System.Drawing.Point(477, 7); + this.linkLabel1.Name = "linkLabel1"; + this.linkLabel1.Size = new System.Drawing.Size(39, 19); + this.linkLabel1.TabIndex = 13; + this.linkLabel1.TabStop = true; + this.linkLabel1.Text = "01월"; + this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel2 + // + this.linkLabel2.AutoSize = true; + this.linkLabel2.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel2.Location = new System.Drawing.Point(516, 7); + this.linkLabel2.Name = "linkLabel2"; + this.linkLabel2.Size = new System.Drawing.Size(39, 19); + this.linkLabel2.TabIndex = 14; + this.linkLabel2.TabStop = true; + this.linkLabel2.Text = "02월"; + this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel3 + // + this.linkLabel3.AutoSize = true; + this.linkLabel3.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel3.Location = new System.Drawing.Point(594, 7); + this.linkLabel3.Name = "linkLabel3"; + this.linkLabel3.Size = new System.Drawing.Size(39, 19); + this.linkLabel3.TabIndex = 16; + this.linkLabel3.TabStop = true; + this.linkLabel3.Text = "04월"; + this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel4 + // + this.linkLabel4.AutoSize = true; + this.linkLabel4.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel4.Location = new System.Drawing.Point(555, 7); + this.linkLabel4.Name = "linkLabel4"; + this.linkLabel4.Size = new System.Drawing.Size(39, 19); + this.linkLabel4.TabIndex = 15; + this.linkLabel4.TabStop = true; + this.linkLabel4.Text = "03월"; + this.linkLabel4.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel5 + // + this.linkLabel5.AutoSize = true; + this.linkLabel5.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel5.Location = new System.Drawing.Point(516, 31); + this.linkLabel5.Name = "linkLabel5"; + this.linkLabel5.Size = new System.Drawing.Size(39, 19); + this.linkLabel5.TabIndex = 20; + this.linkLabel5.TabStop = true; + this.linkLabel5.Text = "08월"; + this.linkLabel5.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel6 + // + this.linkLabel6.AutoSize = true; + this.linkLabel6.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel6.Location = new System.Drawing.Point(477, 31); + this.linkLabel6.Name = "linkLabel6"; + this.linkLabel6.Size = new System.Drawing.Size(39, 19); + this.linkLabel6.TabIndex = 19; + this.linkLabel6.TabStop = true; + this.linkLabel6.Text = "07월"; + this.linkLabel6.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel7 + // + this.linkLabel7.AutoSize = true; + this.linkLabel7.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel7.Location = new System.Drawing.Point(672, 7); + this.linkLabel7.Name = "linkLabel7"; + this.linkLabel7.Size = new System.Drawing.Size(39, 19); + this.linkLabel7.TabIndex = 18; + this.linkLabel7.TabStop = true; + this.linkLabel7.Text = "06월"; + this.linkLabel7.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel8 + // + this.linkLabel8.AutoSize = true; + this.linkLabel8.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel8.Location = new System.Drawing.Point(633, 7); + this.linkLabel8.Name = "linkLabel8"; + this.linkLabel8.Size = new System.Drawing.Size(39, 19); + this.linkLabel8.TabIndex = 17; + this.linkLabel8.TabStop = true; + this.linkLabel8.Text = "05월"; + this.linkLabel8.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel9 + // + this.linkLabel9.AutoSize = true; + this.linkLabel9.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel9.Location = new System.Drawing.Point(672, 31); + this.linkLabel9.Name = "linkLabel9"; + this.linkLabel9.Size = new System.Drawing.Size(39, 19); + this.linkLabel9.TabIndex = 24; + this.linkLabel9.TabStop = true; + this.linkLabel9.Text = "12월"; + this.linkLabel9.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel10 + // + this.linkLabel10.AutoSize = true; + this.linkLabel10.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel10.Location = new System.Drawing.Point(633, 31); + this.linkLabel10.Name = "linkLabel10"; + this.linkLabel10.Size = new System.Drawing.Size(39, 19); + this.linkLabel10.TabIndex = 23; + this.linkLabel10.TabStop = true; + this.linkLabel10.Text = "11월"; + this.linkLabel10.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel11 + // + this.linkLabel11.AutoSize = true; + this.linkLabel11.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel11.Location = new System.Drawing.Point(594, 31); + this.linkLabel11.Name = "linkLabel11"; + this.linkLabel11.Size = new System.Drawing.Size(39, 19); + this.linkLabel11.TabIndex = 22; + this.linkLabel11.TabStop = true; + this.linkLabel11.Text = "10월"; + this.linkLabel11.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // + // linkLabel12 + // + this.linkLabel12.AutoSize = true; + this.linkLabel12.Font = new System.Drawing.Font("맑은 고딕", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.linkLabel12.Location = new System.Drawing.Point(555, 31); + this.linkLabel12.Name = "linkLabel12"; + this.linkLabel12.Size = new System.Drawing.Size(39, 19); + this.linkLabel12.TabIndex = 21; + this.linkLabel12.TabStop = true; + this.linkLabel12.Text = "09월"; + this.linkLabel12.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked); + // // rJobReportUser // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); @@ -220,6 +1914,8 @@ this.panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.fpSpread1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.fpSpread1_Sheet3)).EndInit(); this.ResumeLayout(false); } @@ -239,8 +1935,22 @@ private System.Windows.Forms.ComboBox cmbUser; private System.Windows.Forms.Label label4; private FarPoint.Win.Spread.FpSpread fpSpread1; - private FarPoint.Win.Spread.SheetView fpSpread1_Sheet1; private System.Windows.Forms.Button btSave; private System.Windows.Forms.ProgressBar progressBar2; + private FarPoint.Win.Spread.SheetView fpSpread1_Sheet1; + private FarPoint.Win.Spread.SheetView fpSpread1_Sheet2; + private FarPoint.Win.Spread.SheetView fpSpread1_Sheet3; + private System.Windows.Forms.LinkLabel linkLabel1; + private System.Windows.Forms.LinkLabel linkLabel2; + private System.Windows.Forms.LinkLabel linkLabel9; + private System.Windows.Forms.LinkLabel linkLabel10; + private System.Windows.Forms.LinkLabel linkLabel11; + private System.Windows.Forms.LinkLabel linkLabel12; + private System.Windows.Forms.LinkLabel linkLabel5; + private System.Windows.Forms.LinkLabel linkLabel6; + private System.Windows.Forms.LinkLabel linkLabel7; + private System.Windows.Forms.LinkLabel linkLabel8; + private System.Windows.Forms.LinkLabel linkLabel3; + private System.Windows.Forms.LinkLabel linkLabel4; } } \ No newline at end of file diff --git a/SubProject/FPJ0000/JobReport_/rJobReportUser.cs b/SubProject/FPJ0000/JobReport_/rJobReportUser.cs index 05c2fcf..baed7bb 100644 --- a/SubProject/FPJ0000/JobReport_/rJobReportUser.cs +++ b/SubProject/FPJ0000/JobReport_/rJobReportUser.cs @@ -41,8 +41,8 @@ namespace FPJ0000.JobReport_ UpdateUserList(); //엑셀파일불러오기 - var file = FCOMMON.Util.CurrentPath + "ReportForUser.xlsx"; - this.fpSpread1.OpenExcel(file); + //var file = FCOMMON.Util.CurrentPath + "ReportForUser.xlsx"; + //this.fpSpread1.OpenExcel(file); if (this.fpSpread1.Sheets.Count > 1) this.fpSpread1.ActiveSheetIndex = 0; //refrehData(); @@ -309,7 +309,7 @@ namespace FPJ0000.JobReport_ - fpSpread1.Sheets[0].Cells[row, 7].Formula = string.Format("SUM(C{0}:G{0})+K{0}", row + 1); + fpSpread1.Sheets[0].Cells[row, 7].Formula = string.Format("SUM(C{0}:G{0})+K{0}+J{0}", row + 1); fpSpread1.Sheets[0].Cells[row, 8].Formula = string.Format("H{0}/$I$4", row + 1); //H8 /$I$4 if (sumOt == 0.0) fpSpread1.Sheets[0].Cells[row, 9].Value = null; //OT합계 @@ -500,5 +500,15 @@ namespace FPJ0000.JobReport_ FCOMMON.Util.MsgE("파일저장완료\n" + sd.FileName); } } + + private void linkLabel9_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + var lnk = sender as LinkLabel; + var txt = int.Parse(lnk.Text.Substring(0, 2)); + var sd = DateTime.Parse(dts.Value.ToString("yyyy") + "-" + txt.ToString("00") + "-01"); + var ed = sd.AddMonths(1).AddDays(-1); + this.dts.Value = sd; + this.dte.Value = ed; + } } } diff --git a/SubProject/FPJ0000/JobReport_/rJobReportUser.resx b/SubProject/FPJ0000/JobReport_/rJobReportUser.resx index 4cda6c5..82f4d7b 100644 --- a/SubProject/FPJ0000/JobReport_/rJobReportUser.resx +++ b/SubProject/FPJ0000/JobReport_/rJobReportUser.resx @@ -123,10 +123,59 @@ 17, 17 + + 17, 17 + 183, 17 245, 17 + + + AAEAAAD/////AQAAAAAAAAAEAQAAACZTeXN0ZW0uR2xvYmFsaXphdGlvbi5HcmVnb3JpYW5DYWxlbmRh + cgYAAAAGbV90eXBlEW1fY3VycmVudEVyYVZhbHVlD3R3b0RpZ2l0WWVhck1heBpDYWxlbmRhcittX2N1 + cnJlbnRFcmFWYWx1ZRVDYWxlbmRhcittX2lzUmVhZE9ubHkYQ2FsZW5kYXIrdHdvRGlnaXRZZWFyTWF4 + AwAAAAAAK1N5c3RlbS5HbG9iYWxpemF0aW9uLkdyZWdvcmlhbkNhbGVuZGFyVHlwZXMICAgBCAT+//// + K1N5c3RlbS5HbG9iYWxpemF0aW9uLkdyZWdvcmlhbkNhbGVuZGFyVHlwZXMBAAAAB3ZhbHVlX18ACAEA + AAD///////////////8A/////ws= + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0 + dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uRHJh + d2luZy5QcmludGluZy5QYXBlclNpemUFAAAABGtpbmQEbmFtZQV3aWR0aAZoZWlnaHQbY3JlYXRlZEJ5 + RGVmYXVsdENvbnN0cnVjdG9yBAEAAAAhU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUGFwZXJLaW5kAgAA + AAgIAQIAAAAF/f///yFTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QYXBlcktpbmQBAAAAB3ZhbHVlX18A + CAIAAAAJAAAABgQAAAACQTQ7AwAAkQQAAAAL + + + + 397, 17 + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0 + dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uRHJh + d2luZy5QcmludGluZy5QYXBlclNpemUFAAAABGtpbmQEbmFtZQV3aWR0aAZoZWlnaHQbY3JlYXRlZEJ5 + RGVmYXVsdENvbnN0cnVjdG9yBAEAAAAhU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUGFwZXJLaW5kAgAA + AAgIAQIAAAAF/f///yFTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QYXBlcktpbmQBAAAAB3ZhbHVlX18A + CAIAAAAJAAAABgQAAAACQTQ7AwAAkQQAAAAL + + + + 549, 17 + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj00LjAuMC4wLCBDdWx0 + dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACFTeXN0ZW0uRHJh + d2luZy5QcmludGluZy5QYXBlclNpemUFAAAABGtpbmQEbmFtZQV3aWR0aAZoZWlnaHQbY3JlYXRlZEJ5 + RGVmYXVsdENvbnN0cnVjdG9yBAEAAAAhU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUGFwZXJLaW5kAgAA + AAgIAQIAAAAF/f///yFTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QYXBlcktpbmQBAAAAB3ZhbHVlX18A + CAIAAAAJAAAABgQAAAACQTQ7AwAAkQQAAAAL + + \ No newline at end of file diff --git a/SubProject/FPJ0000/JobReport_/rK5Dailyform.Designer.cs b/SubProject/FPJ0000/JobReport_/rK5Dailyform.Designer.cs new file mode 100644 index 0000000..126c072 --- /dev/null +++ b/SubProject/FPJ0000/JobReport_/rK5Dailyform.Designer.cs @@ -0,0 +1,278 @@ +namespace FPJ0000.JobReport_ +{ + partial class rK5Dailyform + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(rK5Dailyform)); + Microsoft.Reporting.WinForms.ReportDataSource reportDataSource1 = new Microsoft.Reporting.WinForms.ReportDataSource(); + System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea(); + System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend(); + System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series(); + System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series(); + System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series(); + System.Windows.Forms.DataVisualization.Charting.Series series4 = new System.Windows.Forms.DataVisualization.Charting.Series(); + System.Windows.Forms.DataVisualization.Charting.Series series5 = new System.Windows.Forms.DataVisualization.Charting.Series(); + this.bs = new System.Windows.Forms.BindingSource(this.components); + this.dsReport = new FPJ0000.dsReport(); + this.toolStrip1 = new System.Windows.Forms.ToolStrip(); + this.lbStt = new System.Windows.Forms.ToolStripLabel(); + this.dtSD = new System.Windows.Forms.ToolStripTextBox(); + this.lbEnd = new System.Windows.Forms.ToolStripLabel(); + this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel(); + this.dtED = new System.Windows.Forms.ToolStripTextBox(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.btSearch = new System.Windows.Forms.ToolStripButton(); + this.toolStripButton2 = new System.Windows.Forms.ToolStripButton(); + this.toolStripButton1 = new System.Windows.Forms.ToolStripButton(); + this.toolStripButton3 = new System.Windows.Forms.ToolStripButton(); + this.ta = new FPJ0000.dsReportTableAdapters.vJobReportForUserTableAdapter(); + this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer(); + this.progressBar1 = new System.Windows.Forms.ProgressBar(); + this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart(); + ((System.ComponentModel.ISupportInitialize)(this.bs)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.dsReport)).BeginInit(); + this.toolStrip1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit(); + this.SuspendLayout(); + // + // bs + // + this.bs.DataMember = "K5DailyForm"; + this.bs.DataSource = this.dsReport; + // + // dsReport + // + this.dsReport.DataSetName = "dsReport"; + this.dsReport.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; + // + // toolStrip1 + // + this.toolStrip1.ImageScalingSize = new System.Drawing.Size(30, 30); + this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.lbStt, + this.dtSD, + this.lbEnd, + this.toolStripLabel4, + this.dtED, + this.toolStripSeparator2, + this.btSearch, + this.toolStripButton2, + this.toolStripButton1, + this.toolStripButton3}); + this.toolStrip1.Location = new System.Drawing.Point(0, 0); + this.toolStrip1.Name = "toolStrip1"; + this.toolStrip1.Size = new System.Drawing.Size(1093, 37); + this.toolStrip1.TabIndex = 5; + this.toolStrip1.Text = "toolStrip1"; + // + // lbStt + // + this.lbStt.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbStt.ForeColor = System.Drawing.Color.Blue; + this.lbStt.Name = "lbStt"; + this.lbStt.Size = new System.Drawing.Size(43, 34); + this.lbStt.Text = "시작일"; + // + // dtSD + // + this.dtSD.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.dtSD.Font = new System.Drawing.Font("맑은 고딕", 9F); + this.dtSD.Name = "dtSD"; + this.dtSD.Size = new System.Drawing.Size(90, 37); + this.dtSD.Text = "1982-11-23"; + this.dtSD.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // lbEnd + // + this.lbEnd.Name = "lbEnd"; + this.lbEnd.Size = new System.Drawing.Size(15, 34); + this.lbEnd.Text = "~"; + // + // toolStripLabel4 + // + this.toolStripLabel4.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.toolStripLabel4.ForeColor = System.Drawing.Color.Blue; + this.toolStripLabel4.Name = "toolStripLabel4"; + this.toolStripLabel4.Size = new System.Drawing.Size(43, 34); + this.toolStripLabel4.Text = "종료일"; + // + // dtED + // + this.dtED.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.dtED.Font = new System.Drawing.Font("맑은 고딕", 9F); + this.dtED.Name = "dtED"; + this.dtED.Size = new System.Drawing.Size(90, 37); + this.dtED.Text = "1982-11-23"; + this.dtED.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(6, 37); + // + // btSearch + // + this.btSearch.Image = ((System.Drawing.Image)(resources.GetObject("btSearch.Image"))); + this.btSearch.ImageTransparentColor = System.Drawing.Color.Magenta; + this.btSearch.Name = "btSearch"; + this.btSearch.Size = new System.Drawing.Size(80, 34); + this.btSearch.Text = "조회(&R)"; + this.btSearch.Click += new System.EventHandler(this.btSearch_Click); + // + // toolStripButton2 + // + this.toolStripButton2.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; + this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image"))); + this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton2.Name = "toolStripButton2"; + this.toolStripButton2.Size = new System.Drawing.Size(65, 34); + this.toolStripButton2.Text = "닫기"; + // + // toolStripButton1 + // + 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(64, 34); + this.toolStripButton1.Text = "save"; + this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click); + // + // toolStripButton3 + // + this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image"))); + this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta; + this.toolStripButton3.Name = "toolStripButton3"; + this.toolStripButton3.Size = new System.Drawing.Size(64, 34); + this.toolStripButton3.Text = "load"; + this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click); + // + // ta + // + this.ta.ClearBeforeFill = true; + // + // reportViewer1 + // + this.reportViewer1.Dock = System.Windows.Forms.DockStyle.Fill; + reportDataSource1.Name = "DataSet1"; + reportDataSource1.Value = this.bs; + this.reportViewer1.LocalReport.DataSources.Add(reportDataSource1); + this.reportViewer1.LocalReport.EnableExternalImages = true; + this.reportViewer1.LocalReport.EnableHyperlinks = true; + this.reportViewer1.LocalReport.ReportEmbeddedResource = "FPJ0000.JobReport.rK5Dailyform.rdlc"; + this.reportViewer1.Location = new System.Drawing.Point(0, 37); + this.reportViewer1.Name = "reportViewer1"; + this.reportViewer1.ServerReport.BearerToken = null; + this.reportViewer1.Size = new System.Drawing.Size(1093, 642); + this.reportViewer1.TabIndex = 0; + // + // progressBar1 + // + this.progressBar1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.progressBar1.Location = new System.Drawing.Point(0, 679); + this.progressBar1.Name = "progressBar1"; + this.progressBar1.Size = new System.Drawing.Size(1093, 10); + this.progressBar1.TabIndex = 6; + // + // chart1 + // + chartArea1.Name = "ChartArea1"; + this.chart1.ChartAreas.Add(chartArea1); + legend1.Name = "Legend1"; + this.chart1.Legends.Add(legend1); + this.chart1.Location = new System.Drawing.Point(225, 166); + this.chart1.Name = "chart1"; + series1.ChartArea = "ChartArea1"; + series1.Legend = "Legend1"; + series1.Name = "Series1"; + series2.ChartArea = "ChartArea1"; + series2.Legend = "Legend1"; + series2.Name = "Series2"; + series3.ChartArea = "ChartArea1"; + series3.Legend = "Legend1"; + series3.Name = "Series3"; + series4.ChartArea = "ChartArea1"; + series4.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline; + series4.Legend = "Legend1"; + series4.Name = "Series4"; + series5.ChartArea = "ChartArea1"; + series5.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Spline; + series5.Legend = "Legend1"; + series5.Name = "Series5"; + this.chart1.Series.Add(series1); + this.chart1.Series.Add(series2); + this.chart1.Series.Add(series3); + this.chart1.Series.Add(series4); + this.chart1.Series.Add(series5); + this.chart1.Size = new System.Drawing.Size(611, 306); + this.chart1.TabIndex = 7; + this.chart1.Text = "chart1"; + // + // rK5Dailyform + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1093, 689); + this.Controls.Add(this.chart1); + this.Controls.Add(this.reportViewer1); + this.Controls.Add(this.progressBar1); + this.Controls.Add(this.toolStrip1); + this.Name = "rK5Dailyform"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "Daily Form"; + this.Load += new System.EventHandler(this.rJobReport_Load); + ((System.ComponentModel.ISupportInitialize)(this.bs)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.dsReport)).EndInit(); + this.toolStrip1.ResumeLayout(false); + this.toolStrip1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.ToolStrip toolStrip1; + private System.Windows.Forms.ToolStripLabel lbStt; + private System.Windows.Forms.ToolStripTextBox dtSD; + private System.Windows.Forms.ToolStripLabel lbEnd; + private System.Windows.Forms.ToolStripLabel toolStripLabel4; + private System.Windows.Forms.ToolStripTextBox dtED; + private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; + private System.Windows.Forms.ToolStripButton btSearch; + private System.Windows.Forms.ToolStripButton toolStripButton2; + private dsReport dsReport; + private dsReportTableAdapters.vJobReportForUserTableAdapter ta; + private System.Windows.Forms.BindingSource bs; + private Microsoft.Reporting.WinForms.ReportViewer reportViewer1; + private System.Windows.Forms.ProgressBar progressBar1; + private System.Windows.Forms.ToolStripButton toolStripButton1; + private System.Windows.Forms.ToolStripButton toolStripButton3; + private System.Windows.Forms.DataVisualization.Charting.Chart chart1; + } +} \ No newline at end of file diff --git a/SubProject/FPJ0000/JobReport_/rK5Dailyform.cs b/SubProject/FPJ0000/JobReport_/rK5Dailyform.cs new file mode 100644 index 0000000..597f4cb --- /dev/null +++ b/SubProject/FPJ0000/JobReport_/rK5Dailyform.cs @@ -0,0 +1,334 @@ +using Microsoft.Reporting.WinForms; +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; + +namespace FPJ0000.JobReport_ +{ + public partial class rK5Dailyform : Form + { + public rK5Dailyform() + { + InitializeComponent(); + this.WindowState = FormWindowState.Maximized; + } + + private void rJobReport_Load(object sender, EventArgs e) + { + this.dtSD.Text = DateTime.Now.AddDays(-7).ToString("yyyy-MM-01"); + this.dtED.Text = DateTime.Parse(dtSD.Text).AddMonths(1).AddDays(-1).ToString("yyyy-MM-dd"); + this.Show(); + Application.DoEvents(); + + + + //var dsinfo = new Microsoft.Reporting.WinForms.ReportDataSource(); + //dsinfo.Name = "DataSet1"; + //dsinfo.Value = this.dsReport.K5DailyForm; + + + this.reportViewer1.LocalReport.ReportPath = "JobReport_\\rK5Dailyform.rdlc"; + this.reportViewer1.SetDisplayMode(Microsoft.Reporting.WinForms.DisplayMode.Normal); + this.reportViewer1.ZoomMode = Microsoft.Reporting.WinForms.ZoomMode.PageWidth; + + + //makedata(); + + } + void makedata() + { + this.dsReport.K5DailyForm.Clear(); + this.progressBar1.Value = 0; + + + //자료를 불러온다 + var sd = DateTime.Parse(dtSD.Text).ToShortDateString(); + var ed = DateTime.Parse(dtED.Text).ToShortDateString(); + var db = new EEEntities(); + + var gcode = "EET1P"; + if (FCOMMON.info.Login.gcode.isEmpty() == false) + gcode = FCOMMON.info.Login.gcode; + + var rawdata = db.vJobReportForUser.AsNoTracking() + .Where(t => t.gcode == gcode && t.pdate.CompareTo(sd) >= 0 && t.pdate.CompareTo(ed) <= 1) + .OrderBy(t => t.pdate).GroupBy(t => t.pdate); + //ta.Fill(this.dsReport.vJobReportForUser, FCOMMON.info.Login.gcode, sd.ToShortDateString(), ed.ToShortTimeString()); + + this.progressBar1.Maximum = rawdata.Count(); + //날짜별로 묶음처리한다. + //var grplist = rawdata.GroupBy(t => t.pdate); + foreach (var item in rawdata) + { + this.progressBar1.Value += 1; + var drDate = item.FirstOrDefault(); + + //근무일원 + var 근무인원 = item.GroupBy(t => t.id).Count(); + + //완료 + var newdr = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr.Grp = "1.Tech. Support Summary"; + newdr.Item = "1.Completed"; + newdr.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr.Format = "N0"; + newdr.Sign = string.Empty; + newdr.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr.value = item.Where(t => t.svalue == "Technical Support" && t.status == "진행 완료").Count(); + newdr.graph = true; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr); + + //진행중 + var newdr2 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr2.Grp = "1.Tech. Support Summary"; + newdr2.Item = "2.On-going"; + newdr2.Format = "N0"; + newdr2.Sign = string.Empty; + newdr2.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr2.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr2.value = item.Where(t => t.svalue == "Technical Support" && t.status == "진행 중").Count(); + newdr2.graph = true; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr2); + + //건수 + var newdr3 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr3.Grp = "1.Tech. Support Summary"; + newdr3.Item = "3.건수"; + newdr3.Format = "N0"; + newdr3.Sign = string.Empty; + newdr3.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr3.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr3.value = item.Where(t => t.svalue == "Technical Support").Count(); + newdr3.graph = true; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr3); + + //hrs + var newdr4 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr4.Grp = "1.Tech. Support Summary"; + newdr4.Item = "4.Hrs"; + newdr4.Format = "N0"; + newdr4.Sign = string.Empty; + newdr4.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr4.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr4.value = (double)(item.Where(t => t.svalue == "Technical Support").Sum(t => t.hrs)); + newdr4.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr4); + + //요약 + var newdr4a = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr4a.Grp = "1.Tech. Support Summary"; + newdr4a.Item = "5.Technical Support"; + newdr4a.Format = "N1"; + newdr4a.Sign = "%"; + newdr4a.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr4a.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr4a.value = (newdr4.value / (근무인원 * 8.0)) * 100.0; + newdr4a.graph = true; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr4a); + + //Other Job Portion + var newdr5 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr5.Grp = "2.Other Job Portion"; + newdr5.Item = "1.Project"; + newdr5.Format = "N0"; + newdr5.Sign = string.Empty; + newdr5.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr5.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr5.value = (double)(item.Where(t => t.svalue == "Project").Sum(t => t.hrs)); + newdr5.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr5); + + //Other Job Portion + var newdr6 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr6.Grp = "2.Other Job Portion"; + newdr6.Item = "2.Training"; + newdr6.Format = "N0"; + newdr6.Sign = string.Empty; + newdr6.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr6.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr6.value = (double)(item.Where(t => t.svalue == "Training").Sum(t => t.hrs)); + newdr6.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr6); + + //Overhaul + var newdr7 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr7.Grp = "2.Other Job Portion"; + newdr7.Item = "3.Overhaul"; + newdr7.Format = "N0"; + newdr7.Sign = string.Empty; + newdr7.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr7.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr7.value = (double)(item.Where(t => t.svalue == "Overhaul").Sum(t => t.hrs)); + newdr7.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr7); + + //Others + var newdr8 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr8.Grp = "2.Other Job Portion"; + newdr8.Item = "4.Others"; + newdr8.Format = "N0"; + newdr8.Sign = string.Empty; + newdr8.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr8.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr8.value = (double)(item.Where(t => t.svalue == "Others").Sum(t => t.hrs)); + newdr8.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr8); + + + //Other Job Portion + var newdr10 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr10.Grp = "2.Other Job Portion"; + newdr10.Item = "5.Project"; + newdr10.Format = "N1"; + newdr10.Sign = "%"; + newdr10.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr10.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr10.value = (newdr5.value / (근무인원 * 8)) * 100.0; + newdr10.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr10); + + //Other Job Portion + newdr10 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr10.Grp = "2.Other Job Portion"; + newdr10.Item = "6.Training"; + newdr10.Format = "N1"; + newdr10.Sign = "%"; + newdr10.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr10.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr10.value = (newdr6.value / (근무인원 * 8)) * 100.0; + newdr10.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr10); + + //Overhaul + newdr10 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr10.Grp = "2.Other Job Portion"; + newdr10.Item = "7.Overhaul"; + newdr10.Format = "N1"; + newdr10.Sign = "%"; + newdr10.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr10.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr10.value = (newdr7.value / (근무인원 * 8)) * 100.0; + newdr10.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr10); + + //Others + newdr10 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr10.Grp = "2.Other Job Portion"; + newdr10.Item = "8.Others"; + newdr10.Format = "N1"; + newdr10.Sign = "%"; + newdr10.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr10.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr10.value = (newdr8.value / (근무인원 * 8)) * 100.0; + newdr10.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr10); + + //Others TTL + newdr10 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr10.Grp = "2.Other Job Portion"; + newdr10.Item = "9.Others TTL"; + newdr10.Format = "N0"; + newdr10.Sign = ""; + newdr10.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr10.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr10.value = newdr5.value + newdr6.value + newdr7.value + newdr8.value; + newdr10.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr10); + + //Others TTL (%) + newdr10 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr10.Grp = "2.Other Job Portion"; + newdr10.Item = "9.Others TTL(%)"; + newdr10.Format = "N1"; + newdr10.Sign = "%"; + newdr10.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr10.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr10.value = (newdr5.value / (근무인원 * 8) + newdr6.value / (근무인원 * 8) + newdr7.value / (근무인원 * 8) + newdr8.value / (근무인원 * 8)) * 100.0; + newdr10.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr10); + + //3.근무인원 + newdr10 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr10.Grp = "3.근무인원"; + newdr10.Item = "1.(8hrs/p.s)"; + newdr10.Format = "N0"; + newdr10.Sign = ""; + newdr10.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr10.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr10.value = 근무인원; + newdr10.graph = false; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr10); + + //3.근무인원 + var v1 = (newdr4.value / (근무인원 * 8.0)) * 100.0; + var v2 = (newdr5.value / (근무인원 * 8) + newdr6.value / (근무인원 * 8) + newdr7.value / (근무인원 * 8) + newdr8.value / (근무인원 * 8)) * 100.0; + + newdr10 = this.dsReport.K5DailyForm.NewK5DailyFormRow(); + newdr10.Grp = "4.TTL"; + newdr10.Item = "1.Working Utilization(%)"; + newdr10.Format = "N1"; + newdr10.Sign = "%"; + newdr10.ww = item.Key.Substring(2, 2) + "-" + int.Parse(drDate.ww).ToString("00"); + newdr10.pdate = int.Parse(item.Key.Substring(8, 2)).ToString("00"); + newdr10.value = v1 + v2; + newdr10.graph = true; + dsReport.K5DailyForm.AddK5DailyFormRow(newdr10); + + } + this.reportViewer1.SetDisplayMode(Microsoft.Reporting.WinForms.DisplayMode.Normal); + this.reportViewer1.ZoomMode = Microsoft.Reporting.WinForms.ZoomMode.PageWidth; + this.reportViewer1.RefreshReport(); + + } + private void btSearch_Click(object sender, EventArgs e) + { + + makedata(); + + + + } + + private void toolStripButton1_Click(object sender, EventArgs e) + { + var fn = FCOMMON.Util.CurrentPath + "a.xml"; + this.dsReport.K5DailyForm.WriteXml(fn); + } + + private void toolStripButton3_Click(object sender, EventArgs e) + { + var fn = FCOMMON.Util.CurrentPath + "a.xml"; + this.dsReport.K5DailyForm.Clear(); + this.dsReport.K5DailyForm.ReadXml(fn); + this.dsReport.K5DailyForm.AcceptChanges(); + + + + var ser1 = this.chart1.Series[0];// new System.Windows.Forms.DataVisualization.Charting.Series("Completed"); + var ser2 = this.chart1.Series[1];// new System.Windows.Forms.DataVisualization.Charting.Series("On-Going"); + var ser3 = this.chart1.Series[2];// new System.Windows.Forms.DataVisualization.Charting.Series("건수"); + var ser4 = this.chart1.Series[3];// new System.Windows.Forms.DataVisualization.Charting.Series("technical Support"); + var ser5 = this.chart1.Series[4];// new System.Windows.Forms.DataVisualization.Charting.Series("TTL Working"); + + ser1.Points.Add(new System.Windows.Forms.DataVisualization.Charting.DataPoint(10, 100)); + this.chart1.Invalidate(); + var fni = FCOMMON.Util.CurrentPath + "a.jpg"; + this.chart1.SaveImage(fni, System.Windows.Forms.DataVisualization.Charting.ChartImageFormat.Jpeg); + + ReportParameter parameter = new ReportParameter("ImagePath", fni); + reportViewer1.LocalReport.SetParameters(parameter); + + + //this.reportViewer1.LocalReport.SetParameters(new Microsoft.Reporting.WinForms.ReportParameter("chartfile", fni)); + this.reportViewer1.RefreshReport(); + + + + } + } +} diff --git a/SubProject/FPJ0000/JobReport_/rK5Dailyform.rdlc b/SubProject/FPJ0000/JobReport_/rK5Dailyform.rdlc new file mode 100644 index 0000000..d28180e --- /dev/null +++ b/SubProject/FPJ0000/JobReport_/rK5Dailyform.rdlc @@ -0,0 +1,990 @@ + + + 0 + + + + System.Data.DataSet + /* Local Connection */ + + a264f572-a896-438f-932a-a6cda8279961 + + + + + + dsReport + /* Local Query */ + + + + Grp + System.String + + + Item + System.String + + + ww + System.String + + + pdate + System.String + + + value + System.Double + + + Sign + System.String + + + Format + System.String + + + graph + System.Boolean + + + + dsReport + D:\Source\##### 완료아이템\(014) GroupWare\Source\SubProject\FPJ0000\dsReport.xsd + K5DailyForm + + + + + + + + + + + + + + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + + + + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + true + true + + + + + Grp + + + + + + + Textbox3 + + + Silver + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + true + true + + + + + Item + + + + + + + Textbox11 + + + Silver + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + 1.12417cm + + + + + 0.6cm + + + + + true + true + + + + + =Format(Sum(Fields!value.Value),last(Fields!Format.Value)) & last(Fields!Sign.Value) + + + + + + + value + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + =Fields!ww.Value + + + + + =Fields!ww.Value + + + + 0.75875cm + + + true + true + + + + + = "ww" & right(Fields!ww.Value,2) + + + + + + + ww + + + Silver + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!pdate.Value + + + + + =Fields!pdate.Value + + + + 0.81167cm + + + true + true + + + + + =Fields!pdate.Value + + + + + + + pdate + + + Silver + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + + + + + + =Fields!Grp.Value + + + + + =Fields!Grp.Value + + + + 2.57938cm + + + true + true + + + + + =right( Fields!Grp.Value,len(Fields!Grp.Value)-2) + + + + + + + Grp + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + =Fields!Item.Value + + + + + =Fields!Item.Value + + + + 3.55833cm + + + true + true + + + + + =right( Fields!Item.Value, len(Fields!Item.Value)-2) + + + + + + + Item + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + + DataSet1 + 2.17042cm + 7.26188cm + + + + + + + + + + + =Fields!pdate.Value + + + + + =Fields!pdate.Value + + + + + + + + + + + + =Fields!Item.Value + + + + =Fields!graph.Value + Equal + + true + + + + + + + =Fields!Item.Value + + + + + + + =Fields!Item.Value + + + + + =Fields!Item.Value + + + + + + + + + + + + + + + + =Sum(Fields!value.Value) + + + + + 8pt + #5c5c5c + + + + + + + False + + + + + + + + + + + + + + + 0.5 + + NaN + NaN + NaN + + + + 8pt + #5c5c5c + + + + + + + False + + + + + + + + + + + + + + + 0.5 + + NaN + Opposite + NaN + NaN + + + + 8pt + #5c5c5c + + + + + + + + + + + + + + + + + + + + + 0.5 + + NaN + NaN + NaN + + + + 8pt + #5c5c5c + + + + + + + + + + + + + + + + + + + + + 0.5 + + NaN + Opposite + NaN + NaN + + + + + + + + TopLeft + + + + + Black + Black + + + + + + + + Black + Black + + + + + 차트 제목 + + TopLeft + + + Pacific + + + + + 사용 가능한 데이터 없음 + + + DataSet1 + 2.56328cm + 0.49953cm + 5.21229cm + 10.13354cm + 1 + + + White + None + + + + External + ="D:\Amkor\GroupWare\a.jpg" + 2.56328cm + 11.61203cm + 9.01417cm + 12.37437cm + 2 + + + + + + 5.34375in + + + + Textbox1 + 0.84349cm + 0.89641cm + 0.70583cm + 14.18167cm + + + Middle + 2pt + 2pt + 2pt + 2pt + + + + + + + + + 1.19062cm + true + true + + + + + 29.7cm + 21cm + 2cm + 2cm + 2cm + 2cm + 0.13cm + + + +
+

Action required to load native assemblies

+

+ To deploy an application that uses spatial data types to a machine that does not have 'System CLR Types for SQL Server' installed you also need to deploy the native assembly SqlServerSpatial140.dll. Both x86 (32 bit) and x64 (64 bit) versions of this assembly have been added to your project under the SqlServerTypes\x86 and SqlServerTypes\x64 subdirectories. The native assembly msvcr120.dll is also included in case the C++ runtime is not installed. +

+

+ You need to add code to load the correct one of these assemblies at runtime (depending on the current architecture). +

+

ASP.NET Web Sites

+

+ For ASP.NET Web Sites, add the following block of code to the code behind file of the Web Form where you have added Report Viewer Control: +

+    Default.aspx.cs:
+        
+    public partial class _Default : System.Web.UI.Page
+    {
+        static bool _isSqlTypesLoaded = false;
+
+        public _Default()
+        {
+            if (!_isSqlTypesLoaded)
+            {
+                SqlServerTypes.Utilities.LoadNativeAssemblies(Server.MapPath("~"));
+                _isSqlTypesLoaded = true;
+            }
+            
+        }
+    }
+
+

+

ASP.NET Web Applications

+

+ For ASP.NET Web Applications, add the following line of code to the Application_Start method in Global.asax.cs: +

    SqlServerTypes.Utilities.LoadNativeAssemblies(Server.MapPath("~/bin"));
+

+

Desktop Applications

+

+ For desktop applications, add the following line of code to run before any spatial operations are performed: +

    SqlServerTypes.Utilities.LoadNativeAssemblies(AppDomain.CurrentDomain.BaseDirectory);
+

+
+ + \ No newline at end of file diff --git a/SubProject/FPM0000/SqlServerTypes/x64/SqlServerSpatial140.dll b/SubProject/FPM0000/SqlServerTypes/x64/SqlServerSpatial140.dll new file mode 100644 index 0000000..6e443bf Binary files /dev/null and b/SubProject/FPM0000/SqlServerTypes/x64/SqlServerSpatial140.dll differ diff --git a/SubProject/FPM0000/SqlServerTypes/x64/msvcr120.dll b/SubProject/FPM0000/SqlServerTypes/x64/msvcr120.dll new file mode 100644 index 0000000..67937ce Binary files /dev/null and b/SubProject/FPM0000/SqlServerTypes/x64/msvcr120.dll differ diff --git a/SubProject/FPM0000/SqlServerTypes/x86/SqlServerSpatial140.dll b/SubProject/FPM0000/SqlServerTypes/x86/SqlServerSpatial140.dll new file mode 100644 index 0000000..590a22a Binary files /dev/null and b/SubProject/FPM0000/SqlServerTypes/x86/SqlServerSpatial140.dll differ diff --git a/SubProject/FPM0000/SqlServerTypes/x86/msvcr120.dll b/SubProject/FPM0000/SqlServerTypes/x86/msvcr120.dll new file mode 100644 index 0000000..23447f5 Binary files /dev/null and b/SubProject/FPM0000/SqlServerTypes/x86/msvcr120.dll differ diff --git a/SubProject/FPM0000/app.config b/SubProject/FPM0000/app.config index f84c018..ee56531 100644 --- a/SubProject/FPM0000/app.config +++ b/SubProject/FPM0000/app.config @@ -6,4 +6,4 @@ - + diff --git a/SubProject/FPM0000/packages.config b/SubProject/FPM0000/packages.config index 333bb0e..383fa6c 100644 --- a/SubProject/FPM0000/packages.config +++ b/SubProject/FPM0000/packages.config @@ -1,5 +1,7 @@  + + \ No newline at end of file