├── readme ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png └── 6.png ├── assets ├── ico.ico ├── main.png └── title.png ├── obj ├── Debug │ ├── kw_enrolment_practice.csproj.CoreCompileInputs.cache │ ├── kw_enrolment_practice.exe │ ├── kw_enrolment_practice.pdb │ ├── kw_enrolment_practice.Form1.resources │ ├── kw_enrolment_practice.Form2.resources │ ├── kw_enrolment_practice.Form3.resources │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── kw_enrolment_practice.Properties.Resources.resources │ ├── kw_enrolment_practice.csproj.GenerateResource.cache │ ├── kw_enrolment_practice.csprojAssemblyReference.cache │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ └── kw_enrolment_practice.csproj.FileListAbsolute.txt └── Release │ ├── kw_enrolment_practice.csproj.CoreCompileInputs.cache │ ├── kw_enrolment_practice.exe │ ├── kw_enrolment_practice.pdb │ ├── kw_enrolment_practice.Form1.resources │ ├── kw_enrolment_practice.Form2.resources │ ├── kw_enrolment_practice.Form3.resources │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── kw_enrolment_practice.Properties.Resources.resources │ ├── kw_enrolment_practice.csproj.GenerateResource.cache │ ├── kw_enrolment_practice.csprojAssemblyReference.cache │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ └── kw_enrolment_practice.csproj.FileListAbsolute.txt ├── bin ├── Debug │ ├── kw_enrolment_practice.exe │ ├── kw_enrolment_practice.pdb │ └── kw_enrolment_practice.exe.config └── Release │ ├── kw_enrolment_practice.exe │ ├── kw_enrolment_practice.pdb │ └── kw_enrolment_practice.exe.config ├── App.config ├── Properties ├── Settings.settings ├── Settings.Designer.cs ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── Program.cs ├── Form1.cs ├── Form3.cs ├── Form1.Designer.cs ├── README.md ├── kw_enrolment_practice.csproj ├── Form3.Designer.cs ├── Form2.cs ├── Form3.resx ├── Form2.resx └── Form2.Designer.cs /readme/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/readme/1.png -------------------------------------------------------------------------------- /readme/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/readme/2.png -------------------------------------------------------------------------------- /readme/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/readme/3.png -------------------------------------------------------------------------------- /readme/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/readme/4.png -------------------------------------------------------------------------------- /readme/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/readme/5.png -------------------------------------------------------------------------------- /readme/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/readme/6.png -------------------------------------------------------------------------------- /assets/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/assets/ico.ico -------------------------------------------------------------------------------- /assets/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/assets/main.png -------------------------------------------------------------------------------- /assets/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/assets/title.png -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c199cacb6f2f326ac24dfe8953397275195d40ed 2 | -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d14106daf3dab207a6315e9a16c0fd36904a6fd0 2 | -------------------------------------------------------------------------------- /bin/Debug/kw_enrolment_practice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/bin/Debug/kw_enrolment_practice.exe -------------------------------------------------------------------------------- /bin/Debug/kw_enrolment_practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/bin/Debug/kw_enrolment_practice.pdb -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/kw_enrolment_practice.exe -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/kw_enrolment_practice.pdb -------------------------------------------------------------------------------- /bin/Release/kw_enrolment_practice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/bin/Release/kw_enrolment_practice.exe -------------------------------------------------------------------------------- /bin/Release/kw_enrolment_practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/bin/Release/kw_enrolment_practice.pdb -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/kw_enrolment_practice.exe -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/kw_enrolment_practice.pdb -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/kw_enrolment_practice.Form1.resources -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.Form2.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/kw_enrolment_practice.Form2.resources -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.Form3.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/kw_enrolment_practice.Form3.resources -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/kw_enrolment_practice.Form1.resources -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.Form2.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/kw_enrolment_practice.Form2.resources -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.Form3.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/kw_enrolment_practice.Form3.resources -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/kw_enrolment_practice.Properties.Resources.resources -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/kw_enrolment_practice.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Debug/kw_enrolment_practice.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/kw_enrolment_practice.Properties.Resources.resources -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/kw_enrolment_practice.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kw-service/kw-class-registration/HEAD/obj/Release/kw_enrolment_practice.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bin/Debug/kw_enrolment_practice.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bin/Release/kw_enrolment_practice.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /obj/Release/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace kw_enrolment_practice 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 해당 애플리케이션의 주 진입점입니다. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | using System.Threading; 11 | 12 | namespace kw_enrolment_practice 13 | { 14 | public partial class Form1 : Form 15 | { 16 | public Form1() 17 | { 18 | InitializeComponent(); 19 | } 20 | 21 | private void Form1_Load(object sender, EventArgs e) 22 | { 23 | 24 | } 25 | 26 | private void timer1_Tick(object sender, EventArgs e) 27 | { 28 | timer1.Enabled = false; 29 | this.Hide(); 30 | Form3 form3 = new Form3(); 31 | form3.Show(); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /Form3.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace kw_enrolment_practice 12 | { 13 | public partial class Form3 : Form 14 | { 15 | public Form3() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void label2_Click(object sender, EventArgs e) 21 | { 22 | 23 | } 24 | 25 | private void button1_Click(object sender, EventArgs e) 26 | { 27 | this.Hide(); 28 | Form2 form2 = new Form2(trackBar1.Value); 29 | form2.Show(); 30 | } 31 | 32 | private void trackBar1_Scroll(object sender, EventArgs e) 33 | { 34 | num.Text = trackBar1.Value.ToString() + "개"; 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace kw_enrolment_practice.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 6 | // 제어됩니다. 어셈블리와 관련된 정보를 수정하려면 7 | // 이러한 특성 값을 변경하세요. 8 | [assembly: AssemblyTitle("kw_enrolment_practice")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("kw_enrolment_practice")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 18 | // 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면 19 | // 해당 형식에 대해 ComVisible 특성을 true로 설정하세요. 20 | [assembly: ComVisible(false)] 21 | 22 | // 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다. 23 | [assembly: Guid("80f6a5e5-d8ce-4b38-86b2-b007802e04fc")] 24 | 25 | // 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다. 26 | // 27 | // 주 버전 28 | // 부 버전 29 | // 빌드 번호 30 | // 수정 버전 31 | // 32 | // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를 33 | // 기본값으로 할 수 있습니다. 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /obj/Debug/kw_enrolment_practice.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\bin\Debug\kw_enrolment_practice.exe.config 2 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\bin\Debug\kw_enrolment_practice.exe 3 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\bin\Debug\kw_enrolment_practice.pdb 4 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Debug\kw_enrolment_practice.csprojAssemblyReference.cache 5 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Debug\kw_enrolment_practice.Form1.resources 6 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Debug\kw_enrolment_practice.Properties.Resources.resources 7 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Debug\kw_enrolment_practice.csproj.GenerateResource.cache 8 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Debug\kw_enrolment_practice.csproj.CoreCompileInputs.cache 9 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Debug\kw_enrolment_practice.exe 10 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Debug\kw_enrolment_practice.pdb 11 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Debug\kw_enrolment_practice.Form2.resources 12 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Debug\kw_enrolment_practice.Form3.resources 13 | -------------------------------------------------------------------------------- /obj/Release/kw_enrolment_practice.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\bin\Release\kw_enrolment_practice.exe.config 2 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\bin\Release\kw_enrolment_practice.exe 3 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\bin\Release\kw_enrolment_practice.pdb 4 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Release\kw_enrolment_practice.csprojAssemblyReference.cache 5 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Release\kw_enrolment_practice.Form1.resources 6 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Release\kw_enrolment_practice.Form2.resources 7 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Release\kw_enrolment_practice.Form3.resources 8 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Release\kw_enrolment_practice.Properties.Resources.resources 9 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Release\kw_enrolment_practice.csproj.GenerateResource.cache 10 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Release\kw_enrolment_practice.csproj.CoreCompileInputs.cache 11 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Release\kw_enrolment_practice.exe 12 | D:\YJYOON\dev\kw_enrolment_practice\kw_enrolment_practice\obj\Release\kw_enrolment_practice.pdb 13 | -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace kw_enrolment_practice 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// 필수 디자이너 변수입니다. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 사용 중인 모든 리소스를 정리합니다. 12 | /// 13 | /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form 디자이너에서 생성한 코드 24 | 25 | /// 26 | /// 디자이너 지원에 필요한 메서드입니다. 27 | /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 33 | this.timer1 = new System.Windows.Forms.Timer(this.components); 34 | this.SuspendLayout(); 35 | // 36 | // timer1 37 | // 38 | this.timer1.Enabled = true; 39 | this.timer1.Interval = 2000; 40 | this.timer1.Tick += new System.EventHandler(this.timer1_Tick); 41 | // 42 | // Form1 43 | // 44 | resources.ApplyResources(this, "$this"); 45 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 46 | this.ControlBox = false; 47 | this.DoubleBuffered = true; 48 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; 49 | this.MaximizeBox = false; 50 | this.MinimizeBox = false; 51 | this.Name = "Form1"; 52 | this.Load += new System.EventHandler(this.Form1_Load); 53 | this.ResumeLayout(false); 54 | 55 | } 56 | 57 | #endregion 58 | 59 | private System.Windows.Forms.Timer timer1; 60 | } 61 | } 62 | 63 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 광운대학교 수강신청 연습 프로그램 2 | 3 | ![0](assets/title.png) 4 | 5 | 버전 | 조회수 (오늘 / 누적) 6 | ---|--- 7 | 이전 버전| [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fyjyoon-dev%2Fkw-enrolment-practice&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=&edge_flat=false)](https://hits.seeyoufarm.com) 8 | 현재 버전| [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fkw-services%2Fkw-class-registration&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=&edge_flat=false)](https://hits.seeyoufarm.com) 9 | 10 | 광운대학교 학생들을 위한 수강신청 모의 연습 프로그램입니다. 11 | 12 | 최신버전: v2.1 [다운로드](https://github.com/kw-service/kw-class-registration/releases/tag/v2.1) 13 | 14 |
15 | 16 | ## 설명 17 | 18 | ![1](readme/1.png) 19 | 20 | 실제 수강신청 프로그램과 완전히 동일한 인터페이스를 갖추고 있습니다. 21 | 22 | `수강신청 연습 시작하기` 버튼을 누르면 수강신청 시작 10초 전 상황을 가정합니다. 23 | 24 | 수강신청이 시작되면 실제 프로그램과 동일하게 시작 알림창이 뜨며 25 | 26 | 과목별로 `조회` 버튼을 누르고 `수강신청` 버튼을 눌러 수강신청을 진행합니다. 27 | 28 |
29 | 30 | ## 기능 31 | 32 | - 과목 수 지정 33 | 34 | ![2](readme/3.png) 35 | 36 | 수강신청 할 과목 수를 직접 지정할 수 있습니다. (최대 10개) 37 | 38 |
39 | 40 | - 과목 자동 추가 및 세부 내용 변경 41 | 42 | ![3](readme/4.png) 43 | 44 | 지정한 과목 수 만큼 자동으로 과목이 즐겨찾기에 추가되며 과목명과 같은 세부 정보를 수정할 수 있습니다. 45 | 46 |
47 | 48 | - 과목 조회 딜레이 49 | 50 | ![4](readme/5.png) 51 | 52 | 실제 수강신청 시 서버 간 통신으로 인해 과목 조회 버튼 클릭 시 일정시간 딜레이가 발생하는 현상을 연습 프로그램에도 동일하게 적용시켰습니다. 53 | 54 | 딜레이는 일정하지 않고 `0.3초` ~ `0.5초` 만큼 랜덤하게 발생합니다. 55 | 56 |
57 | 58 | - 만석인 상황 대비 59 | 60 | ![5](readme/2.png) 61 | 62 | 실제 상황에서 원하던 과목이 만석이 되는 상황을 겪을 수 있습니다. 63 | 64 | 이때는 당황하지 않고 빠르게 `알림창`을 닫고 다른 과목의 수강신청을 이어나가야 합니다. 65 | 66 | 이에 대비할 수 있게 **일정 확률**로 신청하려는 과목이 `만석`이 되게끔 구현했습니다. 67 | 68 | 한 번 만석이 된 과목은 수강신청할 수 없습니다. 69 | 70 |
71 | 72 | ## 프로그램 실행을 위해 73 | 74 | ![6](readme/6.png) 75 | 76 | 개인이 개발한 프로그램이라 최초 실행 시 위와 같은 창이 뜹니다. 77 | 78 | `추가정보` 클릭 → `실행` 클릭 순으로 진행하시면 됩니다. 79 | 80 | 일부 까다로운 백신에서는 본 프로그램의 실행을 지속적으로 막을 수 있습니다. 이럴땐 백신을 잠시 종료하거나 검사 예외로 설정 후 실행하셔야 합니다. 오픈 소스로 공개한 만큼 안전한 프로그램이니 걱정은 안하셔도 됩니다. 81 | 82 | 또한 이 프로그램은 실제 수강신청 프로그램과 동일하게 실행을 위해서 `.NET Framework`의 설치가 필요합니다. 따라서 이 프로그램의 실행 여부로 실제 수강신청 프로그램의 설치 가능 여부를 판단할 수 있습니다. 83 | 84 |
85 | 86 | 프로그램 관련 문의: me@yjyoon.dev 87 | 88 | 개발: 18학번 소프트웨어학부 화석 89 | 90 | -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 이 코드는 도구를 사용하여 생성되었습니다. 4 | // 런타임 버전:4.0.30319.42000 5 | // 6 | // 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 7 | // 이러한 변경 내용이 손실됩니다. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace kw_enrolment_practice.Properties 12 | { 13 | 14 | 15 | /// 16 | /// 지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다. 17 | /// 18 | // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder 19 | // 클래스에서 자동으로 생성되었습니다. 20 | // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여 21 | // ResGen을 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// 이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("kw_enrolment_practice.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// 이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을 56 | /// 재정의합니다. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /kw_enrolment_practice.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {80F6A5E5-D8CE-4B38-86B2-B007802E04FC} 8 | WinExe 9 | kw_enrolment_practice 10 | kw_enrolment_practice 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | Form 51 | 52 | 53 | Form1.cs 54 | 55 | 56 | Form 57 | 58 | 59 | Form2.cs 60 | 61 | 62 | Form 63 | 64 | 65 | Form3.cs 66 | 67 | 68 | 69 | 70 | Form1.cs 71 | 72 | 73 | Form2.cs 74 | 75 | 76 | Form3.cs 77 | 78 | 79 | ResXFileCodeGenerator 80 | Resources.Designer.cs 81 | Designer 82 | 83 | 84 | True 85 | Resources.resx 86 | 87 | 88 | SettingsSingleFileGenerator 89 | Settings.Designer.cs 90 | 91 | 92 | True 93 | Settings.settings 94 | True 95 | 96 | 97 | 98 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /Form3.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace kw_enrolment_practice 2 | { 3 | partial class Form3 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form3)); 32 | this.label1 = new System.Windows.Forms.Label(); 33 | this.button1 = new System.Windows.Forms.Button(); 34 | this.trackBar1 = new System.Windows.Forms.TrackBar(); 35 | this.num = new System.Windows.Forms.Label(); 36 | ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit(); 37 | this.SuspendLayout(); 38 | // 39 | // label1 40 | // 41 | this.label1.AutoSize = true; 42 | this.label1.Location = new System.Drawing.Point(61, 9); 43 | this.label1.Name = "label1"; 44 | this.label1.Size = new System.Drawing.Size(189, 12); 45 | this.label1.TabIndex = 0; 46 | this.label1.Text = "수강신청 할 과목 수를 정해주세요\r\n"; 47 | // 48 | // button1 49 | // 50 | this.button1.Location = new System.Drawing.Point(9, 105); 51 | this.button1.Name = "button1"; 52 | this.button1.Size = new System.Drawing.Size(287, 31); 53 | this.button1.TabIndex = 3; 54 | this.button1.Text = "연습 시작"; 55 | this.button1.UseVisualStyleBackColor = true; 56 | this.button1.Click += new System.EventHandler(this.button1_Click); 57 | // 58 | // trackBar1 59 | // 60 | this.trackBar1.LargeChange = 1; 61 | this.trackBar1.Location = new System.Drawing.Point(9, 58); 62 | this.trackBar1.Minimum = 1; 63 | this.trackBar1.Name = "trackBar1"; 64 | this.trackBar1.Size = new System.Drawing.Size(287, 45); 65 | this.trackBar1.TabIndex = 4; 66 | this.trackBar1.Value = 6; 67 | this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll); 68 | // 69 | // num 70 | // 71 | this.num.AutoSize = true; 72 | this.num.Location = new System.Drawing.Point(143, 33); 73 | this.num.Name = "num"; 74 | this.num.Size = new System.Drawing.Size(23, 12); 75 | this.num.TabIndex = 5; 76 | this.num.Text = "6개"; 77 | // 78 | // Form3 79 | // 80 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); 81 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 82 | this.ClientSize = new System.Drawing.Size(305, 146); 83 | this.ControlBox = false; 84 | this.Controls.Add(this.num); 85 | this.Controls.Add(this.trackBar1); 86 | this.Controls.Add(this.button1); 87 | this.Controls.Add(this.label1); 88 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 89 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 90 | this.Name = "Form3"; 91 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 92 | this.Text = "광운대학교 수강신청 연습 프로그램"; 93 | ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit(); 94 | this.ResumeLayout(false); 95 | this.PerformLayout(); 96 | 97 | } 98 | 99 | #endregion 100 | 101 | private System.Windows.Forms.Label label1; 102 | private System.Windows.Forms.Button button1; 103 | private System.Windows.Forms.TrackBar trackBar1; 104 | private System.Windows.Forms.Label num; 105 | } 106 | } -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /Form2.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Threading; 10 | using System.Windows.Forms; 11 | using System.Collections.Generic; 12 | 13 | namespace kw_enrolment_practice 14 | { 15 | public partial class Form2 : Form 16 | { 17 | int sec = 50; 18 | int getNum = 0; 19 | int numOfSub = 6; 20 | bool isStarted = false; 21 | int selected = -1; 22 | List isFull = new List(); 23 | List isDone = new List(); 24 | List subType = new List(); 25 | public Form2(int subNum) 26 | { 27 | InitializeComponent(); 28 | numOfSub = subNum; 29 | } 30 | 31 | void clearRef() 32 | { 33 | codeRef.Text = 34 | subRef.Text = 35 | pointRef.Text = 36 | profRef.Text = 37 | dayRef.Text = 38 | timeRef.Text = 39 | profRef.Text = 40 | roomRef.Text = 41 | cntRef.Text = 42 | typeRef.Text = 43 | ""; 44 | } 45 | private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) 46 | { 47 | if (e.RowIndex < 0 || e.ColumnIndex != 48 | favList.Columns["add"].Index) return; 49 | 50 | if (!isStarted) 51 | { 52 | MessageBox.Show("수강신청이 시작된 이후에만 조회가 가능합니다.", "수강신청 연습", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 53 | return; 54 | } 55 | 56 | Random rand = new Random(); 57 | String[] typeList = new String[6] { "기필", "기선", "교필", "교선", "전필", "전선"}; 58 | 59 | Thread.Sleep(rand.Next(300,500)); 60 | selected = e.RowIndex; 61 | codeRef.Text = favList.Rows[e.RowIndex].Cells["code"].Value as String; 62 | subRef.Text = favList.Rows[e.RowIndex].Cells["sub"].Value as String; 63 | pointRef.Text = favList.Rows[e.RowIndex].Cells["point"].Value as String; 64 | profRef.Text = favList.Rows[e.RowIndex].Cells["prof"].Value as String; 65 | String day = favList.Rows[e.RowIndex].Cells["time"].Value as String; day = day.Substring(0, 1); 66 | String time = favList.Rows[e.RowIndex].Cells["time"].Value as String; time = time.Substring(2, 1); 67 | dayRef.Text = day; 68 | timeRef.Text = time; 69 | typeRef.Text = typeList[subType[e.RowIndex]]; 70 | cntRef.Text = isFull[e.RowIndex] ? "만석" : "여석"; 71 | roomRef.Text = "새404"; 72 | } 73 | 74 | private void Form2_Load(object sender, EventArgs e) 75 | { 76 | String[] dayList = new String[7]{ "월","화","수","목","금","토","일"}; 77 | Random rand = new Random(); 78 | for(int i = 1; i <= numOfSub; i++) 79 | { 80 | String no = i.ToString(); 81 | String code = rand.Next(1000, 10000).ToString() + "-" + rand.Next(0, 10).ToString() + "-" + rand.Next(1000, 10000).ToString() + "-" + rand.Next(10, 100).ToString(); 82 | String sub = "과목" + no; 83 | String point = rand.Next(1, 4).ToString(); 84 | String prof = "교수님" + no; 85 | String time = dayList[rand.Next(0, 7)] + "(" + rand.Next(1, 9).ToString() + ")"; 86 | favList.Rows.Add("조회", no, code, sub, point, prof, time); 87 | 88 | } 89 | 90 | } 91 | 92 | private void button1_Click(object sender, EventArgs e) 93 | { 94 | if (MessageBox.Show("수강신청 연습 프로그램을 종료하시겠습니까?", "수강신청 연습", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) 95 | Application.Exit(); 96 | } 97 | 98 | private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) 99 | { 100 | 101 | } 102 | 103 | private void button7_Click(object sender, EventArgs e) 104 | { 105 | startBtn.Visible = false; 106 | MessageBox.Show("10초 후 수강신청이 시작됩니다.\n서버 시간을 주목해주세요!", "수강신청 시작", MessageBoxButtons.OK, MessageBoxIcon.Information); 107 | timer1.Enabled = true; 108 | } 109 | 110 | void practiceStart() 111 | { 112 | Random rand = new Random(); 113 | isStarted = true; 114 | enrolBtn.Enabled = true; 115 | enrolBtn.BackColor = Color.Yellow; 116 | for (int i = 0; i < numOfSub; i++) 117 | { 118 | isFull.Add(rand.Next(0, 10) < 2); 119 | isDone.Add(false); 120 | subType.Add(rand.Next(0, 6)); 121 | } 122 | 123 | } 124 | private void timer1_Tick(object sender, EventArgs e) 125 | { 126 | sec++; 127 | if (sec == 55) curTime.ForeColor = Color.Red; 128 | else if (sec == 60) 129 | { 130 | timer1.Enabled = false; 131 | curTime.Text = "10:00:00"; 132 | practiceStart(); 133 | MessageBox.Show("수강신청이 시작되었습니다.", "수강신청 시작", MessageBoxButtons.OK, MessageBoxIcon.Information); 134 | return; 135 | } 136 | curTime.Text = "09:59:"+sec.ToString(); 137 | } 138 | 139 | private void enrolBtn_Click(object sender, EventArgs e) 140 | { 141 | if (selected==-1) 142 | { 143 | MessageBox.Show("수강신청하려는 과목을 먼저 조회해주세요!", "오류", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 144 | return; 145 | } 146 | else if (isDone[selected]) 147 | { 148 | MessageBox.Show("이미 수강신청이 완료된 과목입니다!", "수강신청 연습", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 149 | return; 150 | } 151 | else if (isFull[selected]) 152 | { 153 | MessageBox.Show("해당 과목은 만석입니다.", "여석 없음", MessageBoxButtons.OK, MessageBoxIcon.Error); 154 | return; 155 | } 156 | 157 | Thread.Sleep(new Random().Next(1000, 1500)); 158 | 159 | getList.Rows.Add((++getNum).ToString(), codeRef.Text, typeRef.Text, subRef.Text, pointRef.Text, profRef.Text, dayRef.Text, timeRef.Text+"교시", roomRef.Text, "", "", ""); 160 | getList.CurrentCell = null; 161 | 162 | clearRef(); 163 | isDone[selected] = true; 164 | this.Text = "수강신청 성공 과목 수 [" + getNum.ToString() + "/" + numOfSub.ToString() + "]"; 165 | selected = -1; 166 | } 167 | 168 | private void label16_Click(object sender, EventArgs e) 169 | { 170 | 171 | } 172 | 173 | private void textBox8_TextChanged(object sender, EventArgs e) 174 | { 175 | 176 | } 177 | 178 | private void label20_Click(object sender, EventArgs e) 179 | { 180 | 181 | } 182 | 183 | private void label22_Click(object sender, EventArgs e) 184 | { 185 | 186 | } 187 | 188 | private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) 189 | { 190 | System.Diagnostics.Process.Start("https://github.com/yjyoon-dev/kw-enrolment-practice"); 191 | } 192 | } 193 | } 194 | -------------------------------------------------------------------------------- /Form3.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | 123 | AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAMMOAADDDgAAAAAAAAAA 124 | AAD///8A////AP///wD///8A////AP///wD///8A////AAAAAN8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA 125 | AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA3////wD///8A////AP///wD///8A////AP// 126 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wAAAADftbW1KsbGxv/Gzs7/zsbO/8bO 127 | zv/Oxs7/xs7O/87Ozv/Ozs7/1tbe/9bW3v/O1tb/zsbO/8bOzv/GxsYaAAAA3////wD///8A////AP// 128 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8AAAAA38bGxhq9xsb/1tbe/9bW 129 | 3v/W3t7/1t7n/+fn7//n5+f/7+/v/+fv9//v7/f/5+/3/+fn7//W3t7/1t7e/87W1v/GxsYaAAAA3/// 130 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wAAAADf1t7e/87G 131 | zv/W3t7/1tbe/9be3v/n5+//7+/v/+fv9//n7/f/5+/3/+fv9//v7+//5+fv/9be5//W3uf/1t7e/8bG 132 | xv8AAADf////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AAAA 133 | AN////8AxsbG/9bW3v/e3uf/5+fn/+/v7//v7+///////////////////////+/v9//n5+f/5+fn/97e 134 | 5//W1t7/////AAAAAN////8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// 135 | /wD///8A////AAAAAN/Gzs7/zs7O/9be3v/n5+//5+fn/+/v7///////7///////////////7////+fn 136 | 5//n5+//1t7e/9be3v8AAADf////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// 137 | /wD///8A////AP///wD///8AAAAA3////wC9xsb/ztbW/9be3v/e3uf/5+fv/9bn5///////QkpK//// 138 | ///v7+//1t7n/9be3v/W3t7/////AAAAAN////8A////AP///wD///8A////AP///wD///8A////AP// 139 | /wD///8A////AP///wD///8A////AP///wD///8AAAAA3////wDOzs7/ztbW/9bW3v/W3t7/1t7n/3N7 140 | e/8hISH/7+/v/+fn7//W3t7/1t7e/////wAAAADf////AP///wD///8A////AP///wD///8A////AP// 141 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8AAAAA3wAAAN/W1t4K1tbe/9be 142 | 3v/n5+//5+/3/+fn5//n5+f/3t7n/////wAAAADfAAAA3////wD///8A////AP///wD///8A////AP// 143 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AAAA 144 | AN8AAADfAAAA39be3grGzs7/////AAAAAN8AAADfAAAA3////wD///8A////AP///wD///8A////AP// 145 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// 146 | /wD///8A////AP///wD///8AAAAA3zkxMf8AAADf////AP///wD///8A////AP///wD///8A////AP// 147 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AAAAAN8AAADfAAAA3wAA 148 | AN8AAADfAAAA3wAAAN8AAADfAAAA3wAAAN////8A5+fv/9be5woAAADfAAAA3wAAAN8AAADfAAAA3wAA 149 | AN8AAADfAAAA3wAAAN8AAADfAAAA3////wD///8A////AP///wD///8A////AP///wAAAADf////AN7e 150 | 5//e3uf/3t7n/97e5//e3uf/3t7n/97e5//e3uf/7+/v///////e3uf/xsbG/87Gzv//////3t7n/97e 151 | 5//e3uf/3t7n/+f3///O5+//zt7n/629zv+lpa06AAAA3////wD///8A////AP///wD///8AAAAA3/// 152 | /wDe3uf/5+/v///////////////////////////////////////n5+//5+/3/+fn7//Gzs7/xs7O//// 153 | /////////////////////////////////////////////+fv7//Ozs4SAAAA3////wD///8A////AP// 154 | /wAAAADf/////8bOzv+1tbX/aykY/2spGP9rKRj/aykY/2spGP9rKRj/aykY/2spGP9rKRj/aykY/2sp 155 | GP9rKRj/aykY/2spGP9rKRj/aykY/2spGP9rKRj/aykY/2spGP/n7+//tb3O/+fv7/8AAADf////AP// 156 | /wD///8A////AAAAAN//////3t7n/7W1tf9rKRj/jDEA/4wxAP+MKQD/jDEA/5Q5CP+cShD/pUoY/61S 157 | If+tUiH/pUoY/5xKGP+cShD/tWs5/7VzOf+1ezn/tYRK/72ESv+tYyH/aykY/+fv7/+1vc7/5+/v/wAA 158 | AN////8A////AP///wD///8AAAAA3//////e3uf/tbW1/2spGP+USiH/nFIh//////////////////// 159 | /////////////5RCEP+UQhD/pVoh////////////////////////////vYxa/6VjIf9rKRj/5+/v/629 160 | xv/n7+//AAAA3////wD///8A////AP///wAAAADf/////97e5/+1tbX/aykY/6VSMf+lWjH//////6Va 161 | Mf+lYzn/rWM5/6VjOf+lWin/pVop/61jMf/GjGP//////8aMY//GjGP/xpRr//////+1hEr/rWsx/2sp 162 | GP/n7+//tb3O/+fv7/8AAADf////AP///wD///8A////AAAAAN//////3t7n/7W1tf9rKRj/rWM5/7Vr 163 | Qv//////vXtK/8aMUv+1czn/nFIh/61rOf+ta0L/xoxj/8aUa////////////////////////////61z 164 | Qv+9e0r/aykY/+fv7/+1vc7/5+/v/wAAAN////8A////AP///wD///8AAAAA3+/////e3uf/tbW1/2sp 165 | GP+9e1r/vYRa///////WrXP/jDkI/4QpAP+cUhj//////8aMY//GlGv/xpRr///////GjGP/xpRr/8aU 166 | a///////nFIh/5xSIf9rKRj/5+/v/629zv/n7+//AAAA3////wD///8A////AP///wAAAADf7////97e 167 | 5/+1tbX/aykY/8aUc/+1a0L/nEoQ/4QxAP9rGAD/eyEA/7VzQv//////xpRr/8aUa//GlGv/xpRr/8aU 168 | a//GlGv/xpRr/6VaMf+USiH/nFIh/2spGP/n7+//rb3O/+fv7/8AAADf////AP///wD///8A////AAAA 169 | AN/v////3t7n/7W1tf9rKRj/1q2M/8aUa/////////////////+EMQD/xoxj///////GnHP/xpRr//// 170 | //////////////////////////////////+cUiH/aykY/+fv7/+tvc7/5+/v/wAAAN////8A////AP// 171 | /wD///8AAAAA3+/////e3uf/tbW1/2spGP+9e0r//////2MYCP9zKRD/jDkI/////////////////8ac 172 | c//GlGv/xpRr/8aUa//GlGv/xpxz/61rQv+cUiH/nFIp/5xSIf9rKRj/5+/v/629zv/n7+//AAAA3/// 173 | /wD///8A////AP///wAAAADf7////97e5/+1tbX/aykY/61jIf//////eykQ/4w5CP+lWin//////61j 174 | Mf//////vYRa/8aUa//GlGv//////8aUa//GjGP/nFIh//////+lWin/pVIh/2spGP/n7+//rb3G/+fv 175 | 7/8AAADf////AP///wD///8A////AAAAAN/v////3t7n/7W1tf9rKRj/xoRS//////+MOQj/lEII/61j 176 | Mf////////////////+1a0L/tXNK/72EWv/GlGv//////7VzQv//////nFIp/6VaMf+lUiH/aykY/+fv 177 | 7/+tvcb/5+/v/wAAAN////8A////AP///wD///8AAAAA3+/////e3uf/tbW1/2spGP/OlHP/pVoh//// 178 | /////////////7VzSv+9hFr//////8aMY/+9hFL/tXtK/7V7Sv+1e0r//////6VaKf+lWjH/pVox/6Va 179 | Kf9rKRj/5+/v/629xv/n7+//AAAA3////wD///8A////AP///wAAAADf7////97v7/+1tbX/aykY/9al 180 | jP+1a0L/pVop/61jMf+tYzH/rWM5/7VzQv+9e1r/vYRa/72EWv+9e1r/vXta/61jMf//////jDkQ/6VS 181 | If+lWin/pVIh/2spGP/n7+//rbW9/+fv7/8AAADf////AP///wD///8A////AAAAAN/v////1ufn/7W1 182 | tf9rKRj/3q2E/7VrOf+tWiH/tWMx/61aIf+lUhj/pVoh/61jMf+1YzH/tWs5/7VrOf+1azn/lEII/5xC 183 | EP+cShD/lEII/5RCCP+cOQD/aykY/+fv7/+ltbX/5+/v/wAAAN////8A////AP///wD///8AAAAA3+/3 184 | 9//W3uf/tbW1/2spGP+lYzn/pWM5/6VjOf+lYzn/pWM5/6VjOf+lYzn/pWM5/6VjOf+lYzn/pWM5/6Vj 185 | Of+lYzn/pWM5/6VjOf+lYzn/pWM5/6VjOf9rKRj/5+/v/6Wtrf/n7+//AAAA3////wD///8A////AP// 186 | /wAAAADf////AO/39//Ozs7/xtbe/87n7//O5+//1uf3/9bv///O5/f/zuf3/9bv///O5/f/zuf3/87n 187 | 7//G3u//vd7n/7XO3v+txtb/rcbW/6XGzv+ctcb/nLW9/5Sttf+cpa3/5+/v/////wAAAADf////AP// 188 | /wD///8A////AP///wAAAADf////AO/////v////7////+/////v////7////+/////v9///7/f3/+fv 189 | 9//n7+//5+fv/9be5//O1t7/xs7O/+fv7//n7+//5+/v/+fv7//n7+//5+/v/+fv7/////8AAAAA3/// 190 | /wD///8A////AP///wD///8A////AP///wAAAADfAAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA 191 | AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA 192 | AN////8A////AP///wD///8A/wAB//4AAP/8AAB//AAAf/0AAX/+AAD//oAC//9ABf//gBP//+CP///8 193 | f//wAgAP6AAAB9AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AA 194 | AAPAAAADwAAAA8AAAAPQAAAL6AAAF/AAAA8= 195 | 196 | 197 | -------------------------------------------------------------------------------- /Form2.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | True 122 | 123 | 124 | True 125 | 126 | 127 | True 128 | 129 | 130 | True 131 | 132 | 133 | True 134 | 135 | 136 | True 137 | 138 | 139 | True 140 | 141 | 142 | 17, 17 143 | 144 | 145 | True 146 | 147 | 148 | True 149 | 150 | 151 | True 152 | 153 | 154 | True 155 | 156 | 157 | True 158 | 159 | 160 | True 161 | 162 | 163 | True 164 | 165 | 166 | True 167 | 168 | 169 | True 170 | 171 | 172 | True 173 | 174 | 175 | True 176 | 177 | 178 | True 179 | 180 | 181 | True 182 | 183 | 184 | True 185 | 186 | 187 | True 188 | 189 | 190 | True 191 | 192 | 193 | True 194 | 195 | 196 | True 197 | 198 | 199 | True 200 | 201 | 202 | 203 | 204 | AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAMMOAADDDgAAAAAAAAAA 205 | AAD///8A////AP///wD///8A////AP///wD///8A////AAAAAN8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA 206 | AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA3////wD///8A////AP///wD///8A////AP// 207 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wAAAADftbW1KsbGxv/Gzs7/zsbO/8bO 208 | zv/Oxs7/xs7O/87Ozv/Ozs7/1tbe/9bW3v/O1tb/zsbO/8bOzv/GxsYaAAAA3////wD///8A////AP// 209 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8AAAAA38bGxhq9xsb/1tbe/9bW 210 | 3v/W3t7/1t7n/+fn7//n5+f/7+/v/+fv9//v7/f/5+/3/+fn7//W3t7/1t7e/87W1v/GxsYaAAAA3/// 211 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wAAAADf1t7e/87G 212 | zv/W3t7/1tbe/9be3v/n5+//7+/v/+fv9//n7/f/5+/3/+fv9//v7+//5+fv/9be5//W3uf/1t7e/8bG 213 | xv8AAADf////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AAAA 214 | AN////8AxsbG/9bW3v/e3uf/5+fn/+/v7//v7+///////////////////////+/v9//n5+f/5+fn/97e 215 | 5//W1t7/////AAAAAN////8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// 216 | /wD///8A////AAAAAN/Gzs7/zs7O/9be3v/n5+//5+fn/+/v7///////7///////////////7////+fn 217 | 5//n5+//1t7e/9be3v8AAADf////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// 218 | /wD///8A////AP///wD///8AAAAA3////wC9xsb/ztbW/9be3v/e3uf/5+fv/9bn5///////QkpK//// 219 | ///v7+//1t7n/9be3v/W3t7/////AAAAAN////8A////AP///wD///8A////AP///wD///8A////AP// 220 | /wD///8A////AP///wD///8A////AP///wD///8AAAAA3////wDOzs7/ztbW/9bW3v/W3t7/1t7n/3N7 221 | e/8hISH/7+/v/+fn7//W3t7/1t7e/////wAAAADf////AP///wD///8A////AP///wD///8A////AP// 222 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8AAAAA3wAAAN/W1t4K1tbe/9be 223 | 3v/n5+//5+/3/+fn5//n5+f/3t7n/////wAAAADfAAAA3////wD///8A////AP///wD///8A////AP// 224 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AAAA 225 | AN8AAADfAAAA39be3grGzs7/////AAAAAN8AAADfAAAA3////wD///8A////AP///wD///8A////AP// 226 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP// 227 | /wD///8A////AP///wD///8AAAAA3zkxMf8AAADf////AP///wD///8A////AP///wD///8A////AP// 228 | /wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AAAAAN8AAADfAAAA3wAA 229 | AN8AAADfAAAA3wAAAN8AAADfAAAA3wAAAN////8A5+fv/9be5woAAADfAAAA3wAAAN8AAADfAAAA3wAA 230 | AN8AAADfAAAA3wAAAN8AAADfAAAA3////wD///8A////AP///wD///8A////AP///wAAAADf////AN7e 231 | 5//e3uf/3t7n/97e5//e3uf/3t7n/97e5//e3uf/7+/v///////e3uf/xsbG/87Gzv//////3t7n/97e 232 | 5//e3uf/3t7n/+f3///O5+//zt7n/629zv+lpa06AAAA3////wD///8A////AP///wD///8AAAAA3/// 233 | /wDe3uf/5+/v///////////////////////////////////////n5+//5+/3/+fn7//Gzs7/xs7O//// 234 | /////////////////////////////////////////////+fv7//Ozs4SAAAA3////wD///8A////AP// 235 | /wAAAADf/////8bOzv+1tbX/aykY/2spGP9rKRj/aykY/2spGP9rKRj/aykY/2spGP9rKRj/aykY/2sp 236 | GP9rKRj/aykY/2spGP9rKRj/aykY/2spGP9rKRj/aykY/2spGP/n7+//tb3O/+fv7/8AAADf////AP// 237 | /wD///8A////AAAAAN//////3t7n/7W1tf9rKRj/jDEA/4wxAP+MKQD/jDEA/5Q5CP+cShD/pUoY/61S 238 | If+tUiH/pUoY/5xKGP+cShD/tWs5/7VzOf+1ezn/tYRK/72ESv+tYyH/aykY/+fv7/+1vc7/5+/v/wAA 239 | AN////8A////AP///wD///8AAAAA3//////e3uf/tbW1/2spGP+USiH/nFIh//////////////////// 240 | /////////////5RCEP+UQhD/pVoh////////////////////////////vYxa/6VjIf9rKRj/5+/v/629 241 | xv/n7+//AAAA3////wD///8A////AP///wAAAADf/////97e5/+1tbX/aykY/6VSMf+lWjH//////6Va 242 | Mf+lYzn/rWM5/6VjOf+lWin/pVop/61jMf/GjGP//////8aMY//GjGP/xpRr//////+1hEr/rWsx/2sp 243 | GP/n7+//tb3O/+fv7/8AAADf////AP///wD///8A////AAAAAN//////3t7n/7W1tf9rKRj/rWM5/7Vr 244 | Qv//////vXtK/8aMUv+1czn/nFIh/61rOf+ta0L/xoxj/8aUa////////////////////////////61z 245 | Qv+9e0r/aykY/+fv7/+1vc7/5+/v/wAAAN////8A////AP///wD///8AAAAA3+/////e3uf/tbW1/2sp 246 | GP+9e1r/vYRa///////WrXP/jDkI/4QpAP+cUhj//////8aMY//GlGv/xpRr///////GjGP/xpRr/8aU 247 | a///////nFIh/5xSIf9rKRj/5+/v/629zv/n7+//AAAA3////wD///8A////AP///wAAAADf7////97e 248 | 5/+1tbX/aykY/8aUc/+1a0L/nEoQ/4QxAP9rGAD/eyEA/7VzQv//////xpRr/8aUa//GlGv/xpRr/8aU 249 | a//GlGv/xpRr/6VaMf+USiH/nFIh/2spGP/n7+//rb3O/+fv7/8AAADf////AP///wD///8A////AAAA 250 | AN/v////3t7n/7W1tf9rKRj/1q2M/8aUa/////////////////+EMQD/xoxj///////GnHP/xpRr//// 251 | //////////////////////////////////+cUiH/aykY/+fv7/+tvc7/5+/v/wAAAN////8A////AP// 252 | /wD///8AAAAA3+/////e3uf/tbW1/2spGP+9e0r//////2MYCP9zKRD/jDkI/////////////////8ac 253 | c//GlGv/xpRr/8aUa//GlGv/xpxz/61rQv+cUiH/nFIp/5xSIf9rKRj/5+/v/629zv/n7+//AAAA3/// 254 | /wD///8A////AP///wAAAADf7////97e5/+1tbX/aykY/61jIf//////eykQ/4w5CP+lWin//////61j 255 | Mf//////vYRa/8aUa//GlGv//////8aUa//GjGP/nFIh//////+lWin/pVIh/2spGP/n7+//rb3G/+fv 256 | 7/8AAADf////AP///wD///8A////AAAAAN/v////3t7n/7W1tf9rKRj/xoRS//////+MOQj/lEII/61j 257 | Mf////////////////+1a0L/tXNK/72EWv/GlGv//////7VzQv//////nFIp/6VaMf+lUiH/aykY/+fv 258 | 7/+tvcb/5+/v/wAAAN////8A////AP///wD///8AAAAA3+/////e3uf/tbW1/2spGP/OlHP/pVoh//// 259 | /////////////7VzSv+9hFr//////8aMY/+9hFL/tXtK/7V7Sv+1e0r//////6VaKf+lWjH/pVox/6Va 260 | Kf9rKRj/5+/v/629xv/n7+//AAAA3////wD///8A////AP///wAAAADf7////97v7/+1tbX/aykY/9al 261 | jP+1a0L/pVop/61jMf+tYzH/rWM5/7VzQv+9e1r/vYRa/72EWv+9e1r/vXta/61jMf//////jDkQ/6VS 262 | If+lWin/pVIh/2spGP/n7+//rbW9/+fv7/8AAADf////AP///wD///8A////AAAAAN/v////1ufn/7W1 263 | tf9rKRj/3q2E/7VrOf+tWiH/tWMx/61aIf+lUhj/pVoh/61jMf+1YzH/tWs5/7VrOf+1azn/lEII/5xC 264 | EP+cShD/lEII/5RCCP+cOQD/aykY/+fv7/+ltbX/5+/v/wAAAN////8A////AP///wD///8AAAAA3+/3 265 | 9//W3uf/tbW1/2spGP+lYzn/pWM5/6VjOf+lYzn/pWM5/6VjOf+lYzn/pWM5/6VjOf+lYzn/pWM5/6Vj 266 | Of+lYzn/pWM5/6VjOf+lYzn/pWM5/6VjOf9rKRj/5+/v/6Wtrf/n7+//AAAA3////wD///8A////AP// 267 | /wAAAADf////AO/39//Ozs7/xtbe/87n7//O5+//1uf3/9bv///O5/f/zuf3/9bv///O5/f/zuf3/87n 268 | 7//G3u//vd7n/7XO3v+txtb/rcbW/6XGzv+ctcb/nLW9/5Sttf+cpa3/5+/v/////wAAAADf////AP// 269 | /wD///8A////AP///wAAAADf////AO/////v////7////+/////v////7////+/////v9///7/f3/+fv 270 | 9//n7+//5+fv/9be5//O1t7/xs7O/+fv7//n7+//5+/v/+fv7//n7+//5+/v/+fv7/////8AAAAA3/// 271 | /wD///8A////AP///wD///8A////AP///wAAAADfAAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA 272 | AP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAAAP8AAAD/AAAA/wAA 273 | AN////8A////AP///wD///8A/wAB//4AAP/8AAB//AAAf/0AAX/+AAD//oAC//9ABf//gBP//+CP///8 274 | f//wAgAP6AAAB9AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AA 275 | AAPAAAADwAAAA8AAAAPQAAAL6AAAF/AAAA8= 276 | 277 | 278 | -------------------------------------------------------------------------------- /Form2.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace kw_enrolment_practice 2 | { 3 | partial class Form2 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); 33 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); 34 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); 35 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); 36 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); 37 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); 38 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle(); 39 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle(); 40 | System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle(); 41 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2)); 42 | this.favList = new System.Windows.Forms.DataGridView(); 43 | this.add = new System.Windows.Forms.DataGridViewButtonColumn(); 44 | this.no = new System.Windows.Forms.DataGridViewTextBoxColumn(); 45 | this.code = new System.Windows.Forms.DataGridViewTextBoxColumn(); 46 | this.sub = new System.Windows.Forms.DataGridViewTextBoxColumn(); 47 | this.point = new System.Windows.Forms.DataGridViewTextBoxColumn(); 48 | this.prof = new System.Windows.Forms.DataGridViewTextBoxColumn(); 49 | this.time = new System.Windows.Forms.DataGridViewTextBoxColumn(); 50 | this.button1 = new System.Windows.Forms.Button(); 51 | this.button2 = new System.Windows.Forms.Button(); 52 | this.button3 = new System.Windows.Forms.Button(); 53 | this.enrolBtn = new System.Windows.Forms.Button(); 54 | this.comboBox1 = new System.Windows.Forms.ComboBox(); 55 | this.comboBox2 = new System.Windows.Forms.ComboBox(); 56 | this.comboBox3 = new System.Windows.Forms.ComboBox(); 57 | this.checkBox1 = new System.Windows.Forms.CheckBox(); 58 | this.button5 = new System.Windows.Forms.Button(); 59 | this.button6 = new System.Windows.Forms.Button(); 60 | this.textBox1 = new System.Windows.Forms.TextBox(); 61 | this.startBtn = new System.Windows.Forms.Button(); 62 | this.label1 = new System.Windows.Forms.Label(); 63 | this.timer1 = new System.Windows.Forms.Timer(this.components); 64 | this.curTime = new System.Windows.Forms.Label(); 65 | this.getList = new System.Windows.Forms.DataGridView(); 66 | this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 67 | this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 68 | this.type = new System.Windows.Forms.DataGridViewTextBoxColumn(); 69 | this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 70 | this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 71 | this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 72 | this.day = new System.Windows.Forms.DataGridViewTextBoxColumn(); 73 | this.when = new System.Windows.Forms.DataGridViewTextBoxColumn(); 74 | this.room = new System.Windows.Forms.DataGridViewTextBoxColumn(); 75 | this.day2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 76 | this.when2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 77 | this.room2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 78 | this.groupBox1 = new System.Windows.Forms.GroupBox(); 79 | this.groupBox2 = new System.Windows.Forms.GroupBox(); 80 | this.label2 = new System.Windows.Forms.Label(); 81 | this.label3 = new System.Windows.Forms.Label(); 82 | this.label4 = new System.Windows.Forms.Label(); 83 | this.label5 = new System.Windows.Forms.Label(); 84 | this.groupBox3 = new System.Windows.Forms.GroupBox(); 85 | this.dataGridView1 = new System.Windows.Forms.DataGridView(); 86 | this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 87 | this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 88 | this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 89 | this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 90 | this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 91 | this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 92 | this.when3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); 93 | this.groupBox4 = new System.Windows.Forms.GroupBox(); 94 | this.label6 = new System.Windows.Forms.Label(); 95 | this.label7 = new System.Windows.Forms.Label(); 96 | this.label8 = new System.Windows.Forms.Label(); 97 | this.textBox2 = new System.Windows.Forms.TextBox(); 98 | this.textBox3 = new System.Windows.Forms.TextBox(); 99 | this.textBox4 = new System.Windows.Forms.TextBox(); 100 | this.groupBox5 = new System.Windows.Forms.GroupBox(); 101 | this.label9 = new System.Windows.Forms.Label(); 102 | this.label10 = new System.Windows.Forms.Label(); 103 | this.label11 = new System.Windows.Forms.Label(); 104 | this.textBox5 = new System.Windows.Forms.TextBox(); 105 | this.textBox6 = new System.Windows.Forms.TextBox(); 106 | this.textBox7 = new System.Windows.Forms.TextBox(); 107 | this.groupBox6 = new System.Windows.Forms.GroupBox(); 108 | this.label12 = new System.Windows.Forms.Label(); 109 | this.label13 = new System.Windows.Forms.Label(); 110 | this.label14 = new System.Windows.Forms.Label(); 111 | this.label15 = new System.Windows.Forms.Label(); 112 | this.label16 = new System.Windows.Forms.Label(); 113 | this.label17 = new System.Windows.Forms.Label(); 114 | this.label18 = new System.Windows.Forms.Label(); 115 | this.label19 = new System.Windows.Forms.Label(); 116 | this.label20 = new System.Windows.Forms.Label(); 117 | this.textBox8 = new System.Windows.Forms.TextBox(); 118 | this.label21 = new System.Windows.Forms.Label(); 119 | this.codeText = new System.Windows.Forms.TextBox(); 120 | this.textBox10 = new System.Windows.Forms.TextBox(); 121 | this.subRef = new System.Windows.Forms.TextBox(); 122 | this.dayRef = new System.Windows.Forms.TextBox(); 123 | this.timeRef = new System.Windows.Forms.TextBox(); 124 | this.roomRef = new System.Windows.Forms.TextBox(); 125 | this.textBox15 = new System.Windows.Forms.TextBox(); 126 | this.textBox16 = new System.Windows.Forms.TextBox(); 127 | this.textBox17 = new System.Windows.Forms.TextBox(); 128 | this.textBox18 = new System.Windows.Forms.TextBox(); 129 | this.textBox19 = new System.Windows.Forms.TextBox(); 130 | this.textBox20 = new System.Windows.Forms.TextBox(); 131 | this.textBox21 = new System.Windows.Forms.TextBox(); 132 | this.textBox22 = new System.Windows.Forms.TextBox(); 133 | this.textBox23 = new System.Windows.Forms.TextBox(); 134 | this.typeRef = new System.Windows.Forms.TextBox(); 135 | this.pointRef = new System.Windows.Forms.TextBox(); 136 | this.profRef = new System.Windows.Forms.TextBox(); 137 | this.textBox27 = new System.Windows.Forms.TextBox(); 138 | this.cntText = new System.Windows.Forms.TextBox(); 139 | this.cntRef = new System.Windows.Forms.Label(); 140 | this.codeRef = new System.Windows.Forms.Label(); 141 | this.groupBox7 = new System.Windows.Forms.GroupBox(); 142 | this.label22 = new System.Windows.Forms.Label(); 143 | this.textBox9 = new System.Windows.Forms.TextBox(); 144 | this.label23 = new System.Windows.Forms.Label(); 145 | this.textBox11 = new System.Windows.Forms.TextBox(); 146 | this.label24 = new System.Windows.Forms.Label(); 147 | this.textBox12 = new System.Windows.Forms.TextBox(); 148 | this.label25 = new System.Windows.Forms.Label(); 149 | this.textBox13 = new System.Windows.Forms.TextBox(); 150 | this.label26 = new System.Windows.Forms.Label(); 151 | this.textBox14 = new System.Windows.Forms.TextBox(); 152 | this.label27 = new System.Windows.Forms.Label(); 153 | this.textBox24 = new System.Windows.Forms.TextBox(); 154 | this.groupBox8 = new System.Windows.Forms.GroupBox(); 155 | this.label28 = new System.Windows.Forms.Label(); 156 | this.label29 = new System.Windows.Forms.Label(); 157 | this.label30 = new System.Windows.Forms.Label(); 158 | this.label31 = new System.Windows.Forms.Label(); 159 | this.textBox25 = new System.Windows.Forms.TextBox(); 160 | this.textBox26 = new System.Windows.Forms.TextBox(); 161 | this.groupBox9 = new System.Windows.Forms.GroupBox(); 162 | this.label32 = new System.Windows.Forms.Label(); 163 | this.label33 = new System.Windows.Forms.Label(); 164 | this.linkLabel1 = new System.Windows.Forms.LinkLabel(); 165 | this.groupBox10 = new System.Windows.Forms.GroupBox(); 166 | this.label34 = new System.Windows.Forms.Label(); 167 | ((System.ComponentModel.ISupportInitialize)(this.favList)).BeginInit(); 168 | ((System.ComponentModel.ISupportInitialize)(this.getList)).BeginInit(); 169 | this.groupBox1.SuspendLayout(); 170 | this.groupBox2.SuspendLayout(); 171 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); 172 | this.groupBox4.SuspendLayout(); 173 | this.groupBox5.SuspendLayout(); 174 | this.groupBox6.SuspendLayout(); 175 | this.groupBox7.SuspendLayout(); 176 | this.groupBox8.SuspendLayout(); 177 | this.groupBox9.SuspendLayout(); 178 | this.SuspendLayout(); 179 | // 180 | // favList 181 | // 182 | this.favList.AllowUserToAddRows = false; 183 | this.favList.BackgroundColor = System.Drawing.SystemColors.Window; 184 | dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 185 | dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control; 186 | dataGridViewCellStyle1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); 187 | dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText; 188 | dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; 189 | dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 190 | dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 191 | this.favList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1; 192 | this.favList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; 193 | this.favList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { 194 | this.add, 195 | this.no, 196 | this.code, 197 | this.sub, 198 | this.point, 199 | this.prof, 200 | this.time}); 201 | this.favList.Location = new System.Drawing.Point(811, 378); 202 | this.favList.MultiSelect = false; 203 | this.favList.Name = "favList"; 204 | dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 205 | dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control; 206 | dataGridViewCellStyle2.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); 207 | dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText; 208 | dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; 209 | dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 210 | dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 211 | this.favList.RowHeadersDefaultCellStyle = dataGridViewCellStyle2; 212 | this.favList.RowHeadersVisible = false; 213 | dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 214 | this.favList.RowsDefaultCellStyle = dataGridViewCellStyle3; 215 | this.favList.RowTemplate.Height = 35; 216 | this.favList.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; 217 | this.favList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; 218 | this.favList.Size = new System.Drawing.Size(593, 320); 219 | this.favList.TabIndex = 0; 220 | this.favList.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick); 221 | // 222 | // add 223 | // 224 | this.add.HeaderText = ""; 225 | this.add.Name = "add"; 226 | this.add.Width = 50; 227 | // 228 | // no 229 | // 230 | this.no.HeaderText = "순번"; 231 | this.no.Name = "no"; 232 | this.no.Width = 37; 233 | // 234 | // code 235 | // 236 | this.code.HeaderText = "학정번호"; 237 | this.code.Name = "code"; 238 | this.code.Width = 110; 239 | // 240 | // sub 241 | // 242 | this.sub.HeaderText = "과목명"; 243 | this.sub.Name = "sub"; 244 | this.sub.Width = 200; 245 | // 246 | // point 247 | // 248 | this.point.HeaderText = "학점"; 249 | this.point.Name = "point"; 250 | this.point.Width = 37; 251 | // 252 | // prof 253 | // 254 | this.prof.HeaderText = "담당교수"; 255 | this.prof.Name = "prof"; 256 | this.prof.Width = 80; 257 | // 258 | // time 259 | // 260 | this.time.HeaderText = "강의시간"; 261 | this.time.Name = "time"; 262 | this.time.Width = 80; 263 | // 264 | // button1 265 | // 266 | this.button1.Location = new System.Drawing.Point(25, 597); 267 | this.button1.Name = "button1"; 268 | this.button1.Size = new System.Drawing.Size(74, 39); 269 | this.button1.TabIndex = 1; 270 | this.button1.Text = "종료"; 271 | this.button1.UseVisualStyleBackColor = true; 272 | this.button1.Click += new System.EventHandler(this.button1_Click); 273 | // 274 | // button2 275 | // 276 | this.button2.Location = new System.Drawing.Point(1359, 349); 277 | this.button2.Name = "button2"; 278 | this.button2.Size = new System.Drawing.Size(42, 24); 279 | this.button2.TabIndex = 2; 280 | this.button2.Text = "삭제"; 281 | this.button2.UseVisualStyleBackColor = true; 282 | // 283 | // button3 284 | // 285 | this.button3.Enabled = false; 286 | this.button3.Font = new System.Drawing.Font("굴림", 9F); 287 | this.button3.Location = new System.Drawing.Point(599, 599); 288 | this.button3.Name = "button3"; 289 | this.button3.Size = new System.Drawing.Size(77, 36); 290 | this.button3.TabIndex = 3; 291 | this.button3.Text = "수강삭제"; 292 | this.button3.UseVisualStyleBackColor = true; 293 | // 294 | // enrolBtn 295 | // 296 | this.enrolBtn.BackColor = System.Drawing.SystemColors.Control; 297 | this.enrolBtn.Enabled = false; 298 | this.enrolBtn.Font = new System.Drawing.Font("굴림", 9F); 299 | this.enrolBtn.Location = new System.Drawing.Point(674, 599); 300 | this.enrolBtn.Name = "enrolBtn"; 301 | this.enrolBtn.Size = new System.Drawing.Size(125, 36); 302 | this.enrolBtn.TabIndex = 4; 303 | this.enrolBtn.Text = "수강신청"; 304 | this.enrolBtn.UseVisualStyleBackColor = false; 305 | this.enrolBtn.Click += new System.EventHandler(this.enrolBtn_Click); 306 | // 307 | // comboBox1 308 | // 309 | this.comboBox1.FormattingEnabled = true; 310 | this.comboBox1.Location = new System.Drawing.Point(859, 21); 311 | this.comboBox1.Name = "comboBox1"; 312 | this.comboBox1.Size = new System.Drawing.Size(97, 20); 313 | this.comboBox1.TabIndex = 5; 314 | this.comboBox1.Text = "전체검색"; 315 | this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged); 316 | // 317 | // comboBox2 318 | // 319 | this.comboBox2.FormattingEnabled = true; 320 | this.comboBox2.Location = new System.Drawing.Point(959, 21); 321 | this.comboBox2.Name = "comboBox2"; 322 | this.comboBox2.Size = new System.Drawing.Size(123, 20); 323 | this.comboBox2.TabIndex = 6; 324 | this.comboBox2.Text = "전체검색"; 325 | // 326 | // comboBox3 327 | // 328 | this.comboBox3.Font = new System.Drawing.Font("굴림", 8F); 329 | this.comboBox3.FormattingEnabled = true; 330 | this.comboBox3.Location = new System.Drawing.Point(1120, 21); 331 | this.comboBox3.Name = "comboBox3"; 332 | this.comboBox3.Size = new System.Drawing.Size(70, 19); 333 | this.comboBox3.TabIndex = 7; 334 | this.comboBox3.Text = "전체검색"; 335 | // 336 | // checkBox1 337 | // 338 | this.checkBox1.AutoSize = true; 339 | this.checkBox1.BackColor = System.Drawing.SystemColors.Window; 340 | this.checkBox1.Location = new System.Drawing.Point(1123, 47); 341 | this.checkBox1.Name = "checkBox1"; 342 | this.checkBox1.Size = new System.Drawing.Size(15, 14); 343 | this.checkBox1.TabIndex = 8; 344 | this.checkBox1.UseVisualStyleBackColor = false; 345 | // 346 | // button5 347 | // 348 | this.button5.Location = new System.Drawing.Point(1196, 18); 349 | this.button5.Name = "button5"; 350 | this.button5.Size = new System.Drawing.Size(60, 47); 351 | this.button5.TabIndex = 9; 352 | this.button5.Text = "검색"; 353 | this.button5.UseVisualStyleBackColor = true; 354 | // 355 | // button6 356 | // 357 | this.button6.Location = new System.Drawing.Point(1278, 30); 358 | this.button6.Name = "button6"; 359 | this.button6.Size = new System.Drawing.Size(97, 28); 360 | this.button6.TabIndex = 10; 361 | this.button6.Text = "추가"; 362 | this.button6.UseVisualStyleBackColor = true; 363 | // 364 | // textBox1 365 | // 366 | this.textBox1.Location = new System.Drawing.Point(859, 45); 367 | this.textBox1.Name = "textBox1"; 368 | this.textBox1.Size = new System.Drawing.Size(223, 21); 369 | this.textBox1.TabIndex = 11; 370 | // 371 | // startBtn 372 | // 373 | this.startBtn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192))))); 374 | this.startBtn.Font = new System.Drawing.Font("맑은 고딕", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); 375 | this.startBtn.Location = new System.Drawing.Point(860, 160); 376 | this.startBtn.Name = "startBtn"; 377 | this.startBtn.Size = new System.Drawing.Size(494, 104); 378 | this.startBtn.TabIndex = 12; 379 | this.startBtn.Text = "수강신청 연습 시작하기\r\n\r\n(10초 후 서버 오픈과 함께 시작)"; 380 | this.startBtn.UseVisualStyleBackColor = false; 381 | this.startBtn.Click += new System.EventHandler(this.button7_Click); 382 | // 383 | // label1 384 | // 385 | this.label1.AutoSize = true; 386 | this.label1.BackColor = System.Drawing.Color.Transparent; 387 | this.label1.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); 388 | this.label1.Location = new System.Drawing.Point(162, 17); 389 | this.label1.Name = "label1"; 390 | this.label1.Size = new System.Drawing.Size(57, 13); 391 | this.label1.TabIndex = 13; 392 | this.label1.Text = "10:00:00"; 393 | // 394 | // timer1 395 | // 396 | this.timer1.Interval = 1000; 397 | this.timer1.Tick += new System.EventHandler(this.timer1_Tick); 398 | // 399 | // curTime 400 | // 401 | this.curTime.AutoSize = true; 402 | this.curTime.BackColor = System.Drawing.Color.Transparent; 403 | this.curTime.Font = new System.Drawing.Font("굴림", 9.75F); 404 | this.curTime.Location = new System.Drawing.Point(162, 39); 405 | this.curTime.Name = "curTime"; 406 | this.curTime.Size = new System.Drawing.Size(57, 13); 407 | this.curTime.TabIndex = 14; 408 | this.curTime.Text = "09:59:50"; 409 | // 410 | // getList 411 | // 412 | this.getList.AllowUserToAddRows = false; 413 | this.getList.BackgroundColor = System.Drawing.SystemColors.Window; 414 | dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 415 | dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control; 416 | dataGridViewCellStyle4.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); 417 | dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText; 418 | dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight; 419 | dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 420 | dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 421 | this.getList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle4; 422 | this.getList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; 423 | this.getList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { 424 | this.dataGridViewTextBoxColumn1, 425 | this.dataGridViewTextBoxColumn2, 426 | this.type, 427 | this.dataGridViewTextBoxColumn3, 428 | this.dataGridViewTextBoxColumn4, 429 | this.dataGridViewTextBoxColumn5, 430 | this.day, 431 | this.when, 432 | this.room, 433 | this.day2, 434 | this.when2, 435 | this.room2}); 436 | this.getList.Location = new System.Drawing.Point(3, 15); 437 | this.getList.MultiSelect = false; 438 | this.getList.Name = "getList"; 439 | this.getList.ReadOnly = true; 440 | dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 441 | dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Control; 442 | dataGridViewCellStyle5.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); 443 | dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.WindowText; 444 | dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight; 445 | dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 446 | dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 447 | this.getList.RowHeadersDefaultCellStyle = dataGridViewCellStyle5; 448 | this.getList.RowHeadersVisible = false; 449 | dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 450 | this.getList.RowsDefaultCellStyle = dataGridViewCellStyle6; 451 | this.getList.RowTemplate.DefaultCellStyle.BackColor = System.Drawing.Color.Cyan; 452 | this.getList.RowTemplate.Height = 45; 453 | this.getList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; 454 | this.getList.Size = new System.Drawing.Size(794, 315); 455 | this.getList.TabIndex = 24; 456 | // 457 | // dataGridViewTextBoxColumn1 458 | // 459 | this.dataGridViewTextBoxColumn1.HeaderText = "순번"; 460 | this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1"; 461 | this.dataGridViewTextBoxColumn1.ReadOnly = true; 462 | this.dataGridViewTextBoxColumn1.Width = 37; 463 | // 464 | // dataGridViewTextBoxColumn2 465 | // 466 | this.dataGridViewTextBoxColumn2.HeaderText = "학정번호"; 467 | this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2"; 468 | this.dataGridViewTextBoxColumn2.ReadOnly = true; 469 | this.dataGridViewTextBoxColumn2.Width = 110; 470 | // 471 | // type 472 | // 473 | this.type.HeaderText = "구분"; 474 | this.type.Name = "type"; 475 | this.type.ReadOnly = true; 476 | this.type.Width = 37; 477 | // 478 | // dataGridViewTextBoxColumn3 479 | // 480 | this.dataGridViewTextBoxColumn3.HeaderText = "과목명"; 481 | this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3"; 482 | this.dataGridViewTextBoxColumn3.ReadOnly = true; 483 | this.dataGridViewTextBoxColumn3.Width = 200; 484 | // 485 | // dataGridViewTextBoxColumn4 486 | // 487 | this.dataGridViewTextBoxColumn4.HeaderText = "학점"; 488 | this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4"; 489 | this.dataGridViewTextBoxColumn4.ReadOnly = true; 490 | this.dataGridViewTextBoxColumn4.Width = 37; 491 | // 492 | // dataGridViewTextBoxColumn5 493 | // 494 | this.dataGridViewTextBoxColumn5.HeaderText = "담당교수"; 495 | this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5"; 496 | this.dataGridViewTextBoxColumn5.ReadOnly = true; 497 | this.dataGridViewTextBoxColumn5.Width = 80; 498 | // 499 | // day 500 | // 501 | this.day.HeaderText = "요일1"; 502 | this.day.Name = "day"; 503 | this.day.ReadOnly = true; 504 | this.day.Width = 77; 505 | // 506 | // when 507 | // 508 | this.when.HeaderText = "시간1"; 509 | this.when.Name = "when"; 510 | this.when.ReadOnly = true; 511 | this.when.Width = 77; 512 | // 513 | // room 514 | // 515 | this.room.HeaderText = "강의실1"; 516 | this.room.Name = "room"; 517 | this.room.ReadOnly = true; 518 | this.room.Width = 87; 519 | // 520 | // day2 521 | // 522 | this.day2.HeaderText = "요일2"; 523 | this.day2.Name = "day2"; 524 | this.day2.ReadOnly = true; 525 | this.day2.Width = 77; 526 | // 527 | // when2 528 | // 529 | this.when2.HeaderText = "시간2"; 530 | this.when2.Name = "when2"; 531 | this.when2.ReadOnly = true; 532 | this.when2.Width = 77; 533 | // 534 | // room2 535 | // 536 | this.room2.HeaderText = "강의실2"; 537 | this.room2.Name = "room2"; 538 | this.room2.ReadOnly = true; 539 | this.room2.Width = 87; 540 | // 541 | // groupBox1 542 | // 543 | this.groupBox1.Controls.Add(this.getList); 544 | this.groupBox1.ForeColor = System.Drawing.Color.Black; 545 | this.groupBox1.Location = new System.Drawing.Point(10, 4); 546 | this.groupBox1.Name = "groupBox1"; 547 | this.groupBox1.Size = new System.Drawing.Size(797, 332); 548 | this.groupBox1.TabIndex = 25; 549 | this.groupBox1.TabStop = false; 550 | this.groupBox1.Text = "수강신청교과목"; 551 | // 552 | // groupBox2 553 | // 554 | this.groupBox2.BackColor = System.Drawing.Color.White; 555 | this.groupBox2.Controls.Add(this.groupBox3); 556 | this.groupBox2.Controls.Add(this.label5); 557 | this.groupBox2.Controls.Add(this.label4); 558 | this.groupBox2.Controls.Add(this.label3); 559 | this.groupBox2.Controls.Add(this.label2); 560 | this.groupBox2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); 561 | this.groupBox2.Location = new System.Drawing.Point(811, 4); 562 | this.groupBox2.Name = "groupBox2"; 563 | this.groupBox2.Size = new System.Drawing.Size(593, 66); 564 | this.groupBox2.TabIndex = 25; 565 | this.groupBox2.TabStop = false; 566 | this.groupBox2.Text = "과목검색"; 567 | // 568 | // label2 569 | // 570 | this.label2.AutoSize = true; 571 | this.label2.ForeColor = System.Drawing.Color.Black; 572 | this.label2.Location = new System.Drawing.Point(19, 20); 573 | this.label2.Name = "label2"; 574 | this.label2.Size = new System.Drawing.Size(29, 12); 575 | this.label2.TabIndex = 0; 576 | this.label2.Text = "학과"; 577 | // 578 | // label3 579 | // 580 | this.label3.AutoSize = true; 581 | this.label3.ForeColor = System.Drawing.Color.Black; 582 | this.label3.Location = new System.Drawing.Point(19, 45); 583 | this.label3.Name = "label3"; 584 | this.label3.Size = new System.Drawing.Size(29, 12); 585 | this.label3.TabIndex = 1; 586 | this.label3.Text = "과목"; 587 | // 588 | // label4 589 | // 590 | this.label4.AutoSize = true; 591 | this.label4.ForeColor = System.Drawing.Color.Black; 592 | this.label4.Location = new System.Drawing.Point(280, 20); 593 | this.label4.Name = "label4"; 594 | this.label4.Size = new System.Drawing.Size(29, 12); 595 | this.label4.TabIndex = 2; 596 | this.label4.Text = "이수"; 597 | // 598 | // label5 599 | // 600 | this.label5.AutoSize = true; 601 | this.label5.ForeColor = System.Drawing.Color.Black; 602 | this.label5.Location = new System.Drawing.Point(280, 44); 603 | this.label5.Name = "label5"; 604 | this.label5.Size = new System.Drawing.Size(29, 12); 605 | this.label5.TabIndex = 3; 606 | this.label5.Text = "여석"; 607 | // 608 | // groupBox3 609 | // 610 | this.groupBox3.BackColor = System.Drawing.Color.White; 611 | this.groupBox3.Font = new System.Drawing.Font("굴림", 8F); 612 | this.groupBox3.ForeColor = System.Drawing.Color.Black; 613 | this.groupBox3.Location = new System.Drawing.Point(448, 8); 614 | this.groupBox3.Name = "groupBox3"; 615 | this.groupBox3.Size = new System.Drawing.Size(136, 53); 616 | this.groupBox3.TabIndex = 4; 617 | this.groupBox3.TabStop = false; 618 | this.groupBox3.Text = "즐겨찾기"; 619 | // 620 | // dataGridView1 621 | // 622 | this.dataGridView1.AllowUserToAddRows = false; 623 | this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.Window; 624 | dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 625 | dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control; 626 | dataGridViewCellStyle7.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); 627 | dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText; 628 | dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight; 629 | dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 630 | dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 631 | this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7; 632 | this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; 633 | this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { 634 | this.dataGridViewTextBoxColumn6, 635 | this.dataGridViewTextBoxColumn7, 636 | this.dataGridViewTextBoxColumn8, 637 | this.dataGridViewTextBoxColumn9, 638 | this.dataGridViewTextBoxColumn10, 639 | this.dataGridViewTextBoxColumn11, 640 | this.when3}); 641 | this.dataGridView1.Location = new System.Drawing.Point(811, 71); 642 | this.dataGridView1.MultiSelect = false; 643 | this.dataGridView1.Name = "dataGridView1"; 644 | this.dataGridView1.ReadOnly = true; 645 | dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 646 | dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control; 647 | dataGridViewCellStyle8.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); 648 | dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText; 649 | dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight; 650 | dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText; 651 | dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True; 652 | this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle8; 653 | this.dataGridView1.RowHeadersVisible = false; 654 | dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; 655 | this.dataGridView1.RowsDefaultCellStyle = dataGridViewCellStyle9; 656 | this.dataGridView1.RowTemplate.DefaultCellStyle.BackColor = System.Drawing.Color.Cyan; 657 | this.dataGridView1.RowTemplate.Height = 45; 658 | this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; 659 | this.dataGridView1.Size = new System.Drawing.Size(593, 263); 660 | this.dataGridView1.TabIndex = 26; 661 | // 662 | // dataGridViewTextBoxColumn6 663 | // 664 | this.dataGridViewTextBoxColumn6.HeaderText = "순번"; 665 | this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6"; 666 | this.dataGridViewTextBoxColumn6.ReadOnly = true; 667 | this.dataGridViewTextBoxColumn6.Width = 37; 668 | // 669 | // dataGridViewTextBoxColumn7 670 | // 671 | this.dataGridViewTextBoxColumn7.HeaderText = "학정번호"; 672 | this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7"; 673 | this.dataGridViewTextBoxColumn7.ReadOnly = true; 674 | this.dataGridViewTextBoxColumn7.Width = 90; 675 | // 676 | // dataGridViewTextBoxColumn8 677 | // 678 | this.dataGridViewTextBoxColumn8.HeaderText = "구분"; 679 | this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8"; 680 | this.dataGridViewTextBoxColumn8.ReadOnly = true; 681 | this.dataGridViewTextBoxColumn8.Width = 37; 682 | // 683 | // dataGridViewTextBoxColumn9 684 | // 685 | this.dataGridViewTextBoxColumn9.HeaderText = "과목명"; 686 | this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9"; 687 | this.dataGridViewTextBoxColumn9.ReadOnly = true; 688 | this.dataGridViewTextBoxColumn9.Width = 180; 689 | // 690 | // dataGridViewTextBoxColumn10 691 | // 692 | this.dataGridViewTextBoxColumn10.HeaderText = "학점"; 693 | this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10"; 694 | this.dataGridViewTextBoxColumn10.ReadOnly = true; 695 | this.dataGridViewTextBoxColumn10.Width = 37; 696 | // 697 | // dataGridViewTextBoxColumn11 698 | // 699 | this.dataGridViewTextBoxColumn11.HeaderText = "담당교수"; 700 | this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11"; 701 | this.dataGridViewTextBoxColumn11.ReadOnly = true; 702 | this.dataGridViewTextBoxColumn11.Width = 80; 703 | // 704 | // when3 705 | // 706 | this.when3.HeaderText = "강의시간"; 707 | this.when3.Name = "when3"; 708 | this.when3.ReadOnly = true; 709 | // 710 | // groupBox4 711 | // 712 | this.groupBox4.Controls.Add(this.textBox4); 713 | this.groupBox4.Controls.Add(this.textBox3); 714 | this.groupBox4.Controls.Add(this.textBox2); 715 | this.groupBox4.Controls.Add(this.label8); 716 | this.groupBox4.Controls.Add(this.label7); 717 | this.groupBox4.Controls.Add(this.label6); 718 | this.groupBox4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); 719 | this.groupBox4.Location = new System.Drawing.Point(13, 340); 720 | this.groupBox4.Name = "groupBox4"; 721 | this.groupBox4.Size = new System.Drawing.Size(179, 85); 722 | this.groupBox4.TabIndex = 27; 723 | this.groupBox4.TabStop = false; 724 | this.groupBox4.Text = "신청자정보"; 725 | // 726 | // label6 727 | // 728 | this.label6.AutoSize = true; 729 | this.label6.BackColor = System.Drawing.Color.Silver; 730 | this.label6.ForeColor = System.Drawing.Color.Navy; 731 | this.label6.Location = new System.Drawing.Point(10, 19); 732 | this.label6.Name = "label6"; 733 | this.label6.Size = new System.Drawing.Size(53, 12); 734 | this.label6.TabIndex = 0; 735 | this.label6.Text = "학 번"; 736 | // 737 | // label7 738 | // 739 | this.label7.AutoSize = true; 740 | this.label7.BackColor = System.Drawing.Color.Silver; 741 | this.label7.ForeColor = System.Drawing.Color.Navy; 742 | this.label7.Location = new System.Drawing.Point(10, 41); 743 | this.label7.Name = "label7"; 744 | this.label7.Size = new System.Drawing.Size(53, 12); 745 | this.label7.TabIndex = 1; 746 | this.label7.Text = "성 명"; 747 | // 748 | // label8 749 | // 750 | this.label8.AutoSize = true; 751 | this.label8.BackColor = System.Drawing.Color.Silver; 752 | this.label8.ForeColor = System.Drawing.Color.Navy; 753 | this.label8.Location = new System.Drawing.Point(10, 63); 754 | this.label8.Name = "label8"; 755 | this.label8.Size = new System.Drawing.Size(53, 12); 756 | this.label8.TabIndex = 2; 757 | this.label8.Text = "년도학기"; 758 | // 759 | // textBox2 760 | // 761 | this.textBox2.Enabled = false; 762 | this.textBox2.Font = new System.Drawing.Font("굴림", 7F); 763 | this.textBox2.Location = new System.Drawing.Point(72, 16); 764 | this.textBox2.Name = "textBox2"; 765 | this.textBox2.Size = new System.Drawing.Size(100, 18); 766 | this.textBox2.TabIndex = 3; 767 | // 768 | // textBox3 769 | // 770 | this.textBox3.Enabled = false; 771 | this.textBox3.Font = new System.Drawing.Font("굴림", 7F); 772 | this.textBox3.Location = new System.Drawing.Point(72, 38); 773 | this.textBox3.Name = "textBox3"; 774 | this.textBox3.Size = new System.Drawing.Size(100, 18); 775 | this.textBox3.TabIndex = 4; 776 | // 777 | // textBox4 778 | // 779 | this.textBox4.Enabled = false; 780 | this.textBox4.Font = new System.Drawing.Font("굴림", 7F); 781 | this.textBox4.Location = new System.Drawing.Point(72, 60); 782 | this.textBox4.Name = "textBox4"; 783 | this.textBox4.Size = new System.Drawing.Size(100, 18); 784 | this.textBox4.TabIndex = 5; 785 | // 786 | // groupBox5 787 | // 788 | this.groupBox5.Controls.Add(this.textBox7); 789 | this.groupBox5.Controls.Add(this.textBox6); 790 | this.groupBox5.Controls.Add(this.textBox5); 791 | this.groupBox5.Controls.Add(this.label11); 792 | this.groupBox5.Controls.Add(this.label10); 793 | this.groupBox5.Controls.Add(this.label9); 794 | this.groupBox5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); 795 | this.groupBox5.Location = new System.Drawing.Point(13, 434); 796 | this.groupBox5.Name = "groupBox5"; 797 | this.groupBox5.Size = new System.Drawing.Size(178, 83); 798 | this.groupBox5.TabIndex = 28; 799 | this.groupBox5.TabStop = false; 800 | this.groupBox5.Text = "신청정보"; 801 | // 802 | // label9 803 | // 804 | this.label9.AutoSize = true; 805 | this.label9.BackColor = System.Drawing.Color.Silver; 806 | this.label9.ForeColor = System.Drawing.Color.Navy; 807 | this.label9.Location = new System.Drawing.Point(10, 19); 808 | this.label9.Name = "label9"; 809 | this.label9.Size = new System.Drawing.Size(53, 12); 810 | this.label9.TabIndex = 1; 811 | this.label9.Text = "타교신청"; 812 | // 813 | // label10 814 | // 815 | this.label10.AutoSize = true; 816 | this.label10.BackColor = System.Drawing.Color.Silver; 817 | this.label10.ForeColor = System.Drawing.Color.Navy; 818 | this.label10.Location = new System.Drawing.Point(10, 41); 819 | this.label10.Name = "label10"; 820 | this.label10.Size = new System.Drawing.Size(53, 12); 821 | this.label10.TabIndex = 6; 822 | this.label10.Text = "본교신청"; 823 | // 824 | // label11 825 | // 826 | this.label11.AutoSize = true; 827 | this.label11.BackColor = System.Drawing.Color.Silver; 828 | this.label11.ForeColor = System.Drawing.Color.Navy; 829 | this.label11.Location = new System.Drawing.Point(12, 63); 830 | this.label11.Name = "label11"; 831 | this.label11.Size = new System.Drawing.Size(49, 12); 832 | this.label11.TabIndex = 6; 833 | this.label11.Text = "총 신 청"; 834 | // 835 | // textBox5 836 | // 837 | this.textBox5.Enabled = false; 838 | this.textBox5.Font = new System.Drawing.Font("굴림", 7F); 839 | this.textBox5.Location = new System.Drawing.Point(69, 16); 840 | this.textBox5.Name = "textBox5"; 841 | this.textBox5.Size = new System.Drawing.Size(52, 18); 842 | this.textBox5.TabIndex = 7; 843 | // 844 | // textBox6 845 | // 846 | this.textBox6.Enabled = false; 847 | this.textBox6.Font = new System.Drawing.Font("굴림", 7F); 848 | this.textBox6.Location = new System.Drawing.Point(69, 38); 849 | this.textBox6.Name = "textBox6"; 850 | this.textBox6.Size = new System.Drawing.Size(52, 18); 851 | this.textBox6.TabIndex = 8; 852 | // 853 | // textBox7 854 | // 855 | this.textBox7.Enabled = false; 856 | this.textBox7.Font = new System.Drawing.Font("굴림", 7F); 857 | this.textBox7.Location = new System.Drawing.Point(69, 60); 858 | this.textBox7.Name = "textBox7"; 859 | this.textBox7.Size = new System.Drawing.Size(52, 18); 860 | this.textBox7.TabIndex = 9; 861 | // 862 | // groupBox6 863 | // 864 | this.groupBox6.Controls.Add(this.codeRef); 865 | this.groupBox6.Controls.Add(this.cntRef); 866 | this.groupBox6.Controls.Add(this.cntText); 867 | this.groupBox6.Controls.Add(this.textBox27); 868 | this.groupBox6.Controls.Add(this.profRef); 869 | this.groupBox6.Controls.Add(this.pointRef); 870 | this.groupBox6.Controls.Add(this.typeRef); 871 | this.groupBox6.Controls.Add(this.textBox23); 872 | this.groupBox6.Controls.Add(this.textBox22); 873 | this.groupBox6.Controls.Add(this.textBox21); 874 | this.groupBox6.Controls.Add(this.textBox20); 875 | this.groupBox6.Controls.Add(this.textBox19); 876 | this.groupBox6.Controls.Add(this.textBox18); 877 | this.groupBox6.Controls.Add(this.textBox17); 878 | this.groupBox6.Controls.Add(this.textBox16); 879 | this.groupBox6.Controls.Add(this.textBox15); 880 | this.groupBox6.Controls.Add(this.roomRef); 881 | this.groupBox6.Controls.Add(this.timeRef); 882 | this.groupBox6.Controls.Add(this.dayRef); 883 | this.groupBox6.Controls.Add(this.subRef); 884 | this.groupBox6.Controls.Add(this.textBox10); 885 | this.groupBox6.Controls.Add(this.codeText); 886 | this.groupBox6.Controls.Add(this.label21); 887 | this.groupBox6.Controls.Add(this.textBox8); 888 | this.groupBox6.Controls.Add(this.label20); 889 | this.groupBox6.Controls.Add(this.label19); 890 | this.groupBox6.Controls.Add(this.label18); 891 | this.groupBox6.Controls.Add(this.label17); 892 | this.groupBox6.Controls.Add(this.label16); 893 | this.groupBox6.Controls.Add(this.label15); 894 | this.groupBox6.Controls.Add(this.label14); 895 | this.groupBox6.Controls.Add(this.label13); 896 | this.groupBox6.Controls.Add(this.label12); 897 | this.groupBox6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); 898 | this.groupBox6.Location = new System.Drawing.Point(197, 340); 899 | this.groupBox6.Name = "groupBox6"; 900 | this.groupBox6.Size = new System.Drawing.Size(605, 178); 901 | this.groupBox6.TabIndex = 29; 902 | this.groupBox6.TabStop = false; 903 | this.groupBox6.Text = "과목선택"; 904 | // 905 | // label12 906 | // 907 | this.label12.AutoSize = true; 908 | this.label12.ForeColor = System.Drawing.Color.Black; 909 | this.label12.Location = new System.Drawing.Point(16, 24); 910 | this.label12.Name = "label12"; 911 | this.label12.Size = new System.Drawing.Size(53, 12); 912 | this.label12.TabIndex = 5; 913 | this.label12.Text = "학정번호"; 914 | // 915 | // label13 916 | // 917 | this.label13.AutoSize = true; 918 | this.label13.ForeColor = System.Drawing.Color.Black; 919 | this.label13.Location = new System.Drawing.Point(17, 51); 920 | this.label13.Name = "label13"; 921 | this.label13.Size = new System.Drawing.Size(49, 12); 922 | this.label13.TabIndex = 6; 923 | this.label13.Text = "교 양 군"; 924 | // 925 | // label14 926 | // 927 | this.label14.AutoSize = true; 928 | this.label14.ForeColor = System.Drawing.Color.Black; 929 | this.label14.Location = new System.Drawing.Point(16, 76); 930 | this.label14.Name = "label14"; 931 | this.label14.Size = new System.Drawing.Size(53, 12); 932 | this.label14.TabIndex = 7; 933 | this.label14.Text = "강의시간"; 934 | // 935 | // label15 936 | // 937 | this.label15.AutoSize = true; 938 | this.label15.ForeColor = System.Drawing.Color.Black; 939 | this.label15.Location = new System.Drawing.Point(181, 23); 940 | this.label15.Name = "label15"; 941 | this.label15.Size = new System.Drawing.Size(49, 12); 942 | this.label15.TabIndex = 8; 943 | this.label15.Text = "과 목 명"; 944 | // 945 | // label16 946 | // 947 | this.label16.AutoSize = true; 948 | this.label16.ForeColor = System.Drawing.Color.Black; 949 | this.label16.Location = new System.Drawing.Point(291, 48); 950 | this.label16.Name = "label16"; 951 | this.label16.Size = new System.Drawing.Size(53, 12); 952 | this.label16.TabIndex = 9; 953 | this.label16.Text = "이수구분"; 954 | this.label16.Click += new System.EventHandler(this.label16_Click); 955 | // 956 | // label17 957 | // 958 | this.label17.AutoSize = true; 959 | this.label17.ForeColor = System.Drawing.Color.Black; 960 | this.label17.Location = new System.Drawing.Point(400, 47); 961 | this.label17.Name = "label17"; 962 | this.label17.Size = new System.Drawing.Size(29, 12); 963 | this.label17.TabIndex = 10; 964 | this.label17.Text = "학점"; 965 | // 966 | // label18 967 | // 968 | this.label18.AutoSize = true; 969 | this.label18.ForeColor = System.Drawing.Color.Black; 970 | this.label18.Location = new System.Drawing.Point(483, 48); 971 | this.label18.Name = "label18"; 972 | this.label18.Size = new System.Drawing.Size(53, 12); 973 | this.label18.TabIndex = 11; 974 | this.label18.Text = "담당교수"; 975 | // 976 | // label19 977 | // 978 | this.label19.AutoSize = true; 979 | this.label19.ForeColor = System.Drawing.Color.Black; 980 | this.label19.Location = new System.Drawing.Point(483, 74); 981 | this.label19.Name = "label19"; 982 | this.label19.Size = new System.Drawing.Size(53, 12); 983 | this.label19.TabIndex = 12; 984 | this.label19.Text = "공학인증"; 985 | // 986 | // label20 987 | // 988 | this.label20.AutoSize = true; 989 | this.label20.ForeColor = System.Drawing.Color.Black; 990 | this.label20.Location = new System.Drawing.Point(483, 99); 991 | this.label20.Name = "label20"; 992 | this.label20.Size = new System.Drawing.Size(53, 12); 993 | this.label20.TabIndex = 13; 994 | this.label20.Text = "수강현황"; 995 | this.label20.Click += new System.EventHandler(this.label20_Click); 996 | // 997 | // textBox8 998 | // 999 | this.textBox8.BackColor = System.Drawing.Color.White; 1000 | this.textBox8.Font = new System.Drawing.Font("굴림", 9F); 1001 | this.textBox8.Location = new System.Drawing.Point(485, 120); 1002 | this.textBox8.Name = "textBox8"; 1003 | this.textBox8.ReadOnly = true; 1004 | this.textBox8.Size = new System.Drawing.Size(114, 21); 1005 | this.textBox8.TabIndex = 14; 1006 | this.textBox8.TextChanged += new System.EventHandler(this.textBox8_TextChanged); 1007 | // 1008 | // label21 1009 | // 1010 | this.label21.AutoSize = true; 1011 | this.label21.ForeColor = System.Drawing.Color.Black; 1012 | this.label21.Location = new System.Drawing.Point(453, 124); 1013 | this.label21.Name = "label21"; 1014 | this.label21.Size = new System.Drawing.Size(29, 12); 1015 | this.label21.TabIndex = 15; 1016 | this.label21.Text = "분반"; 1017 | // 1018 | // codeText 1019 | // 1020 | this.codeText.BackColor = System.Drawing.Color.White; 1021 | this.codeText.Font = new System.Drawing.Font("굴림", 9F); 1022 | this.codeText.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1023 | this.codeText.Location = new System.Drawing.Point(71, 19); 1024 | this.codeText.Name = "codeText"; 1025 | this.codeText.ReadOnly = true; 1026 | this.codeText.Size = new System.Drawing.Size(104, 21); 1027 | this.codeText.TabIndex = 16; 1028 | this.codeText.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 1029 | // 1030 | // textBox10 1031 | // 1032 | this.textBox10.BackColor = System.Drawing.Color.White; 1033 | this.textBox10.Font = new System.Drawing.Font("굴림", 9F); 1034 | this.textBox10.Location = new System.Drawing.Point(71, 46); 1035 | this.textBox10.Name = "textBox10"; 1036 | this.textBox10.ReadOnly = true; 1037 | this.textBox10.Size = new System.Drawing.Size(104, 21); 1038 | this.textBox10.TabIndex = 17; 1039 | // 1040 | // subRef 1041 | // 1042 | this.subRef.BackColor = System.Drawing.Color.White; 1043 | this.subRef.Font = new System.Drawing.Font("굴림", 9F); 1044 | this.subRef.Location = new System.Drawing.Point(231, 19); 1045 | this.subRef.Name = "subRef"; 1046 | this.subRef.ReadOnly = true; 1047 | this.subRef.Size = new System.Drawing.Size(368, 21); 1048 | this.subRef.TabIndex = 18; 1049 | // 1050 | // dayRef 1051 | // 1052 | this.dayRef.BackColor = System.Drawing.Color.White; 1053 | this.dayRef.Font = new System.Drawing.Font("굴림", 9F); 1054 | this.dayRef.Location = new System.Drawing.Point(71, 73); 1055 | this.dayRef.Name = "dayRef"; 1056 | this.dayRef.ReadOnly = true; 1057 | this.dayRef.Size = new System.Drawing.Size(30, 21); 1058 | this.dayRef.TabIndex = 19; 1059 | // 1060 | // timeRef 1061 | // 1062 | this.timeRef.BackColor = System.Drawing.Color.White; 1063 | this.timeRef.Font = new System.Drawing.Font("굴림", 9F); 1064 | this.timeRef.Location = new System.Drawing.Point(104, 73); 1065 | this.timeRef.Name = "timeRef"; 1066 | this.timeRef.ReadOnly = true; 1067 | this.timeRef.Size = new System.Drawing.Size(82, 21); 1068 | this.timeRef.TabIndex = 22; 1069 | // 1070 | // roomRef 1071 | // 1072 | this.roomRef.BackColor = System.Drawing.Color.White; 1073 | this.roomRef.Font = new System.Drawing.Font("굴림", 9F); 1074 | this.roomRef.Location = new System.Drawing.Point(189, 73); 1075 | this.roomRef.Name = "roomRef"; 1076 | this.roomRef.ReadOnly = true; 1077 | this.roomRef.Size = new System.Drawing.Size(92, 21); 1078 | this.roomRef.TabIndex = 24; 1079 | // 1080 | // textBox15 1081 | // 1082 | this.textBox15.BackColor = System.Drawing.Color.White; 1083 | this.textBox15.Font = new System.Drawing.Font("굴림", 9F); 1084 | this.textBox15.Location = new System.Drawing.Point(71, 96); 1085 | this.textBox15.Name = "textBox15"; 1086 | this.textBox15.ReadOnly = true; 1087 | this.textBox15.Size = new System.Drawing.Size(30, 21); 1088 | this.textBox15.TabIndex = 25; 1089 | // 1090 | // textBox16 1091 | // 1092 | this.textBox16.BackColor = System.Drawing.Color.White; 1093 | this.textBox16.Font = new System.Drawing.Font("굴림", 9F); 1094 | this.textBox16.Location = new System.Drawing.Point(104, 96); 1095 | this.textBox16.Name = "textBox16"; 1096 | this.textBox16.ReadOnly = true; 1097 | this.textBox16.Size = new System.Drawing.Size(82, 21); 1098 | this.textBox16.TabIndex = 26; 1099 | // 1100 | // textBox17 1101 | // 1102 | this.textBox17.BackColor = System.Drawing.Color.White; 1103 | this.textBox17.Font = new System.Drawing.Font("굴림", 9F); 1104 | this.textBox17.Location = new System.Drawing.Point(189, 96); 1105 | this.textBox17.Name = "textBox17"; 1106 | this.textBox17.ReadOnly = true; 1107 | this.textBox17.Size = new System.Drawing.Size(92, 21); 1108 | this.textBox17.TabIndex = 27; 1109 | // 1110 | // textBox18 1111 | // 1112 | this.textBox18.BackColor = System.Drawing.Color.White; 1113 | this.textBox18.Font = new System.Drawing.Font("굴림", 9F); 1114 | this.textBox18.Location = new System.Drawing.Point(71, 119); 1115 | this.textBox18.Name = "textBox18"; 1116 | this.textBox18.ReadOnly = true; 1117 | this.textBox18.Size = new System.Drawing.Size(30, 21); 1118 | this.textBox18.TabIndex = 28; 1119 | // 1120 | // textBox19 1121 | // 1122 | this.textBox19.BackColor = System.Drawing.Color.White; 1123 | this.textBox19.Font = new System.Drawing.Font("굴림", 9F); 1124 | this.textBox19.Location = new System.Drawing.Point(71, 142); 1125 | this.textBox19.Name = "textBox19"; 1126 | this.textBox19.ReadOnly = true; 1127 | this.textBox19.Size = new System.Drawing.Size(30, 21); 1128 | this.textBox19.TabIndex = 29; 1129 | // 1130 | // textBox20 1131 | // 1132 | this.textBox20.BackColor = System.Drawing.Color.White; 1133 | this.textBox20.Font = new System.Drawing.Font("굴림", 9F); 1134 | this.textBox20.Location = new System.Drawing.Point(104, 119); 1135 | this.textBox20.Name = "textBox20"; 1136 | this.textBox20.ReadOnly = true; 1137 | this.textBox20.Size = new System.Drawing.Size(82, 21); 1138 | this.textBox20.TabIndex = 30; 1139 | // 1140 | // textBox21 1141 | // 1142 | this.textBox21.BackColor = System.Drawing.Color.White; 1143 | this.textBox21.Font = new System.Drawing.Font("굴림", 9F); 1144 | this.textBox21.Location = new System.Drawing.Point(189, 119); 1145 | this.textBox21.Name = "textBox21"; 1146 | this.textBox21.ReadOnly = true; 1147 | this.textBox21.Size = new System.Drawing.Size(92, 21); 1148 | this.textBox21.TabIndex = 31; 1149 | // 1150 | // textBox22 1151 | // 1152 | this.textBox22.BackColor = System.Drawing.Color.White; 1153 | this.textBox22.Font = new System.Drawing.Font("굴림", 9F); 1154 | this.textBox22.Location = new System.Drawing.Point(104, 142); 1155 | this.textBox22.Name = "textBox22"; 1156 | this.textBox22.ReadOnly = true; 1157 | this.textBox22.Size = new System.Drawing.Size(82, 21); 1158 | this.textBox22.TabIndex = 32; 1159 | // 1160 | // textBox23 1161 | // 1162 | this.textBox23.BackColor = System.Drawing.Color.White; 1163 | this.textBox23.Font = new System.Drawing.Font("굴림", 9F); 1164 | this.textBox23.Location = new System.Drawing.Point(189, 142); 1165 | this.textBox23.Name = "textBox23"; 1166 | this.textBox23.ReadOnly = true; 1167 | this.textBox23.Size = new System.Drawing.Size(92, 21); 1168 | this.textBox23.TabIndex = 33; 1169 | // 1170 | // typeRef 1171 | // 1172 | this.typeRef.BackColor = System.Drawing.Color.White; 1173 | this.typeRef.Font = new System.Drawing.Font("굴림", 9F); 1174 | this.typeRef.Location = new System.Drawing.Point(347, 44); 1175 | this.typeRef.Name = "typeRef"; 1176 | this.typeRef.ReadOnly = true; 1177 | this.typeRef.Size = new System.Drawing.Size(47, 21); 1178 | this.typeRef.TabIndex = 34; 1179 | this.typeRef.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 1180 | // 1181 | // pointRef 1182 | // 1183 | this.pointRef.BackColor = System.Drawing.Color.White; 1184 | this.pointRef.Font = new System.Drawing.Font("굴림", 9F); 1185 | this.pointRef.Location = new System.Drawing.Point(432, 44); 1186 | this.pointRef.Name = "pointRef"; 1187 | this.pointRef.ReadOnly = true; 1188 | this.pointRef.Size = new System.Drawing.Size(28, 21); 1189 | this.pointRef.TabIndex = 35; 1190 | this.pointRef.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 1191 | // 1192 | // profRef 1193 | // 1194 | this.profRef.BackColor = System.Drawing.Color.White; 1195 | this.profRef.Font = new System.Drawing.Font("굴림", 9F); 1196 | this.profRef.Location = new System.Drawing.Point(537, 44); 1197 | this.profRef.Name = "profRef"; 1198 | this.profRef.ReadOnly = true; 1199 | this.profRef.Size = new System.Drawing.Size(62, 21); 1200 | this.profRef.TabIndex = 36; 1201 | this.profRef.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 1202 | // 1203 | // textBox27 1204 | // 1205 | this.textBox27.BackColor = System.Drawing.Color.White; 1206 | this.textBox27.Font = new System.Drawing.Font("굴림", 9F); 1207 | this.textBox27.Location = new System.Drawing.Point(537, 69); 1208 | this.textBox27.Name = "textBox27"; 1209 | this.textBox27.ReadOnly = true; 1210 | this.textBox27.Size = new System.Drawing.Size(62, 21); 1211 | this.textBox27.TabIndex = 37; 1212 | // 1213 | // cntText 1214 | // 1215 | this.cntText.BackColor = System.Drawing.Color.White; 1216 | this.cntText.Font = new System.Drawing.Font("굴림", 9F); 1217 | this.cntText.ForeColor = System.Drawing.Color.Red; 1218 | this.cntText.Location = new System.Drawing.Point(537, 94); 1219 | this.cntText.Name = "cntText"; 1220 | this.cntText.ReadOnly = true; 1221 | this.cntText.Size = new System.Drawing.Size(62, 21); 1222 | this.cntText.TabIndex = 38; 1223 | this.cntText.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 1224 | // 1225 | // cntRef 1226 | // 1227 | this.cntRef.AutoSize = true; 1228 | this.cntRef.Location = new System.Drawing.Point(554, 97); 1229 | this.cntRef.Name = "cntRef"; 1230 | this.cntRef.Size = new System.Drawing.Size(0, 12); 1231 | this.cntRef.TabIndex = 39; 1232 | // 1233 | // codeRef 1234 | // 1235 | this.codeRef.AutoSize = true; 1236 | this.codeRef.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1237 | this.codeRef.Location = new System.Drawing.Point(78, 23); 1238 | this.codeRef.Name = "codeRef"; 1239 | this.codeRef.Size = new System.Drawing.Size(0, 12); 1240 | this.codeRef.TabIndex = 40; 1241 | this.codeRef.Click += new System.EventHandler(this.label22_Click); 1242 | // 1243 | // groupBox7 1244 | // 1245 | this.groupBox7.Controls.Add(this.textBox24); 1246 | this.groupBox7.Controls.Add(this.label27); 1247 | this.groupBox7.Controls.Add(this.textBox14); 1248 | this.groupBox7.Controls.Add(this.label26); 1249 | this.groupBox7.Controls.Add(this.textBox13); 1250 | this.groupBox7.Controls.Add(this.label25); 1251 | this.groupBox7.Controls.Add(this.textBox12); 1252 | this.groupBox7.Controls.Add(this.label24); 1253 | this.groupBox7.Controls.Add(this.textBox11); 1254 | this.groupBox7.Controls.Add(this.label23); 1255 | this.groupBox7.Controls.Add(this.textBox9); 1256 | this.groupBox7.Controls.Add(this.label22); 1257 | this.groupBox7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); 1258 | this.groupBox7.Location = new System.Drawing.Point(13, 526); 1259 | this.groupBox7.Name = "groupBox7"; 1260 | this.groupBox7.Size = new System.Drawing.Size(789, 49); 1261 | this.groupBox7.TabIndex = 30; 1262 | this.groupBox7.TabStop = false; 1263 | this.groupBox7.Text = "재수강 성적완료 삭제대상 과목정보(재수강 여부는 KLAS 에서 반드시 확인하시기 바랍니다!)"; 1264 | // 1265 | // label22 1266 | // 1267 | this.label22.AutoSize = true; 1268 | this.label22.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1269 | this.label22.Location = new System.Drawing.Point(6, 24); 1270 | this.label22.Name = "label22"; 1271 | this.label22.Size = new System.Drawing.Size(65, 12); 1272 | this.label22.TabIndex = 0; 1273 | this.label22.Text = "재수강대상"; 1274 | // 1275 | // textBox9 1276 | // 1277 | this.textBox9.Enabled = false; 1278 | this.textBox9.Font = new System.Drawing.Font("굴림", 7F); 1279 | this.textBox9.Location = new System.Drawing.Point(72, 21); 1280 | this.textBox9.Name = "textBox9"; 1281 | this.textBox9.Size = new System.Drawing.Size(24, 18); 1282 | this.textBox9.TabIndex = 8; 1283 | // 1284 | // label23 1285 | // 1286 | this.label23.AutoSize = true; 1287 | this.label23.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1288 | this.label23.Location = new System.Drawing.Point(108, 24); 1289 | this.label23.Name = "label23"; 1290 | this.label23.Size = new System.Drawing.Size(53, 12); 1291 | this.label23.TabIndex = 9; 1292 | this.label23.Text = "년도학기"; 1293 | // 1294 | // textBox11 1295 | // 1296 | this.textBox11.Enabled = false; 1297 | this.textBox11.Font = new System.Drawing.Font("굴림", 7F); 1298 | this.textBox11.Location = new System.Drawing.Point(160, 21); 1299 | this.textBox11.Name = "textBox11"; 1300 | this.textBox11.Size = new System.Drawing.Size(50, 18); 1301 | this.textBox11.TabIndex = 10; 1302 | // 1303 | // label24 1304 | // 1305 | this.label24.AutoSize = true; 1306 | this.label24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1307 | this.label24.Location = new System.Drawing.Point(215, 24); 1308 | this.label24.Name = "label24"; 1309 | this.label24.Size = new System.Drawing.Size(53, 12); 1310 | this.label24.TabIndex = 11; 1311 | this.label24.Text = "이수구분"; 1312 | // 1313 | // textBox12 1314 | // 1315 | this.textBox12.Enabled = false; 1316 | this.textBox12.Font = new System.Drawing.Font("굴림", 7F); 1317 | this.textBox12.Location = new System.Drawing.Point(267, 21); 1318 | this.textBox12.Name = "textBox12"; 1319 | this.textBox12.Size = new System.Drawing.Size(38, 18); 1320 | this.textBox12.TabIndex = 12; 1321 | // 1322 | // label25 1323 | // 1324 | this.label25.AutoSize = true; 1325 | this.label25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1326 | this.label25.Location = new System.Drawing.Point(317, 24); 1327 | this.label25.Name = "label25"; 1328 | this.label25.Size = new System.Drawing.Size(29, 12); 1329 | this.label25.TabIndex = 13; 1330 | this.label25.Text = "학점"; 1331 | // 1332 | // textBox13 1333 | // 1334 | this.textBox13.Enabled = false; 1335 | this.textBox13.Font = new System.Drawing.Font("굴림", 7F); 1336 | this.textBox13.Location = new System.Drawing.Point(346, 20); 1337 | this.textBox13.Name = "textBox13"; 1338 | this.textBox13.Size = new System.Drawing.Size(24, 18); 1339 | this.textBox13.TabIndex = 14; 1340 | // 1341 | // label26 1342 | // 1343 | this.label26.AutoSize = true; 1344 | this.label26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1345 | this.label26.Location = new System.Drawing.Point(379, 23); 1346 | this.label26.Name = "label26"; 1347 | this.label26.Size = new System.Drawing.Size(29, 12); 1348 | this.label26.TabIndex = 15; 1349 | this.label26.Text = "등급"; 1350 | // 1351 | // textBox14 1352 | // 1353 | this.textBox14.Enabled = false; 1354 | this.textBox14.Font = new System.Drawing.Font("굴림", 7F); 1355 | this.textBox14.Location = new System.Drawing.Point(408, 20); 1356 | this.textBox14.Name = "textBox14"; 1357 | this.textBox14.Size = new System.Drawing.Size(35, 18); 1358 | this.textBox14.TabIndex = 16; 1359 | // 1360 | // label27 1361 | // 1362 | this.label27.AutoSize = true; 1363 | this.label27.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1364 | this.label27.Location = new System.Drawing.Point(452, 22); 1365 | this.label27.Name = "label27"; 1366 | this.label27.Size = new System.Drawing.Size(41, 12); 1367 | this.label27.TabIndex = 17; 1368 | this.label27.Text = "과목명"; 1369 | // 1370 | // textBox24 1371 | // 1372 | this.textBox24.Enabled = false; 1373 | this.textBox24.Font = new System.Drawing.Font("굴림", 7F); 1374 | this.textBox24.Location = new System.Drawing.Point(493, 19); 1375 | this.textBox24.Name = "textBox24"; 1376 | this.textBox24.Size = new System.Drawing.Size(290, 18); 1377 | this.textBox24.TabIndex = 18; 1378 | // 1379 | // groupBox8 1380 | // 1381 | this.groupBox8.Controls.Add(this.curTime); 1382 | this.groupBox8.Controls.Add(this.textBox26); 1383 | this.groupBox8.Controls.Add(this.label1); 1384 | this.groupBox8.Controls.Add(this.textBox25); 1385 | this.groupBox8.Controls.Add(this.label31); 1386 | this.groupBox8.Controls.Add(this.label30); 1387 | this.groupBox8.Controls.Add(this.label29); 1388 | this.groupBox8.Controls.Add(this.label28); 1389 | this.groupBox8.Location = new System.Drawing.Point(12, 581); 1390 | this.groupBox8.Name = "groupBox8"; 1391 | this.groupBox8.Size = new System.Drawing.Size(790, 63); 1392 | this.groupBox8.TabIndex = 31; 1393 | this.groupBox8.TabStop = false; 1394 | // 1395 | // label28 1396 | // 1397 | this.label28.AutoSize = true; 1398 | this.label28.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1399 | this.label28.Location = new System.Drawing.Point(102, 19); 1400 | this.label28.Name = "label28"; 1401 | this.label28.Size = new System.Drawing.Size(53, 12); 1402 | this.label28.TabIndex = 19; 1403 | this.label28.Text = "시작시간"; 1404 | // 1405 | // label29 1406 | // 1407 | this.label29.AutoSize = true; 1408 | this.label29.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1409 | this.label29.Location = new System.Drawing.Point(102, 40); 1410 | this.label29.Name = "label29"; 1411 | this.label29.Size = new System.Drawing.Size(53, 12); 1412 | this.label29.TabIndex = 20; 1413 | this.label29.Text = "서버시간"; 1414 | // 1415 | // label30 1416 | // 1417 | this.label30.AutoSize = true; 1418 | this.label30.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1419 | this.label30.Location = new System.Drawing.Point(233, 18); 1420 | this.label30.Name = "label30"; 1421 | this.label30.Size = new System.Drawing.Size(233, 12); 1422 | this.label30.TabIndex = 21; 1423 | this.label30.Text = "시작시간과 서버시간이 같아지면 자동으로\r\n"; 1424 | // 1425 | // label31 1426 | // 1427 | this.label31.AutoSize = true; 1428 | this.label31.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1429 | this.label31.Location = new System.Drawing.Point(233, 39); 1430 | this.label31.Name = "label31"; 1431 | this.label31.Size = new System.Drawing.Size(185, 12); 1432 | this.label31.TabIndex = 22; 1433 | this.label31.Text = "수강신청 가능상태로 전환됩니다.\r\n"; 1434 | // 1435 | // textBox25 1436 | // 1437 | this.textBox25.BackColor = System.Drawing.Color.White; 1438 | this.textBox25.Font = new System.Drawing.Font("굴림", 8F); 1439 | this.textBox25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1440 | this.textBox25.Location = new System.Drawing.Point(157, 14); 1441 | this.textBox25.Name = "textBox25"; 1442 | this.textBox25.ReadOnly = true; 1443 | this.textBox25.Size = new System.Drawing.Size(70, 20); 1444 | this.textBox25.TabIndex = 41; 1445 | this.textBox25.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 1446 | // 1447 | // textBox26 1448 | // 1449 | this.textBox26.BackColor = System.Drawing.Color.White; 1450 | this.textBox26.Font = new System.Drawing.Font("굴림", 8F); 1451 | this.textBox26.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1452 | this.textBox26.Location = new System.Drawing.Point(157, 36); 1453 | this.textBox26.Name = "textBox26"; 1454 | this.textBox26.ReadOnly = true; 1455 | this.textBox26.Size = new System.Drawing.Size(70, 20); 1456 | this.textBox26.TabIndex = 42; 1457 | this.textBox26.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; 1458 | // 1459 | // groupBox9 1460 | // 1461 | this.groupBox9.Controls.Add(this.linkLabel1); 1462 | this.groupBox9.Controls.Add(this.label33); 1463 | this.groupBox9.Controls.Add(this.label32); 1464 | this.groupBox9.Location = new System.Drawing.Point(12, 649); 1465 | this.groupBox9.Name = "groupBox9"; 1466 | this.groupBox9.Size = new System.Drawing.Size(790, 64); 1467 | this.groupBox9.TabIndex = 32; 1468 | this.groupBox9.TabStop = false; 1469 | // 1470 | // label32 1471 | // 1472 | this.label32.AutoSize = true; 1473 | this.label32.ForeColor = System.Drawing.Color.Teal; 1474 | this.label32.Location = new System.Drawing.Point(11, 21); 1475 | this.label32.Name = "label32"; 1476 | this.label32.Size = new System.Drawing.Size(481, 12); 1477 | this.label32.TabIndex = 0; 1478 | this.label32.Text = "* 즐겨찾기 수강신청 : 신청하고자 하는 과목의 조회 버튼(클릭) => 수강신청 버튼(클릭)"; 1479 | // 1480 | // label33 1481 | // 1482 | this.label33.AutoSize = true; 1483 | this.label33.ForeColor = System.Drawing.Color.Teal; 1484 | this.label33.Location = new System.Drawing.Point(11, 42); 1485 | this.label33.Name = "label33"; 1486 | this.label33.Size = new System.Drawing.Size(127, 12); 1487 | this.label33.TabIndex = 1; 1488 | this.label33.Text = "* 프로그램 사용방법 :"; 1489 | // 1490 | // linkLabel1 1491 | // 1492 | this.linkLabel1.AutoSize = true; 1493 | this.linkLabel1.Location = new System.Drawing.Point(138, 42); 1494 | this.linkLabel1.Name = "linkLabel1"; 1495 | this.linkLabel1.Size = new System.Drawing.Size(316, 12); 1496 | this.linkLabel1.TabIndex = 2; 1497 | this.linkLabel1.TabStop = true; 1498 | this.linkLabel1.Text = "https://github.com/yjyoon-dev/kw-enrolment-practice"; 1499 | this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); 1500 | // 1501 | // groupBox10 1502 | // 1503 | this.groupBox10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); 1504 | this.groupBox10.Location = new System.Drawing.Point(811, 337); 1505 | this.groupBox10.Name = "groupBox10"; 1506 | this.groupBox10.Size = new System.Drawing.Size(593, 41); 1507 | this.groupBox10.TabIndex = 33; 1508 | this.groupBox10.TabStop = false; 1509 | this.groupBox10.Text = "즐겨찾기"; 1510 | // 1511 | // label34 1512 | // 1513 | this.label34.AutoSize = true; 1514 | this.label34.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192))))); 1515 | this.label34.Location = new System.Drawing.Point(832, 705); 1516 | this.label34.Name = "label34"; 1517 | this.label34.Size = new System.Drawing.Size(539, 12); 1518 | this.label34.TabIndex = 34; 1519 | this.label34.Text = "※ 시스템 과부하 방지를 위하여 동일 과목조회 버튼 5회 이상 클릭 시 인증번호를 입력해야 합니다."; 1520 | // 1521 | // Form2 1522 | // 1523 | this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); 1524 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 1525 | this.BackColor = System.Drawing.Color.White; 1526 | this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; 1527 | this.ClientSize = new System.Drawing.Size(1415, 724); 1528 | this.ControlBox = false; 1529 | this.Controls.Add(this.label34); 1530 | this.Controls.Add(this.button2); 1531 | this.Controls.Add(this.groupBox10); 1532 | this.Controls.Add(this.groupBox9); 1533 | this.Controls.Add(this.groupBox7); 1534 | this.Controls.Add(this.groupBox5); 1535 | this.Controls.Add(this.groupBox4); 1536 | this.Controls.Add(this.startBtn); 1537 | this.Controls.Add(this.dataGridView1); 1538 | this.Controls.Add(this.comboBox1); 1539 | this.Controls.Add(this.button6); 1540 | this.Controls.Add(this.button5); 1541 | this.Controls.Add(this.checkBox1); 1542 | this.Controls.Add(this.comboBox3); 1543 | this.Controls.Add(this.textBox1); 1544 | this.Controls.Add(this.comboBox2); 1545 | this.Controls.Add(this.groupBox1); 1546 | this.Controls.Add(this.enrolBtn); 1547 | this.Controls.Add(this.button3); 1548 | this.Controls.Add(this.button1); 1549 | this.Controls.Add(this.favList); 1550 | this.Controls.Add(this.groupBox2); 1551 | this.Controls.Add(this.groupBox6); 1552 | this.Controls.Add(this.groupBox8); 1553 | this.DoubleBuffered = true; 1554 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 1555 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 1556 | this.Name = "Form2"; 1557 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 1558 | this.Text = "광운대학교 수강신청 연습 프로그램"; 1559 | this.Load += new System.EventHandler(this.Form2_Load); 1560 | ((System.ComponentModel.ISupportInitialize)(this.favList)).EndInit(); 1561 | ((System.ComponentModel.ISupportInitialize)(this.getList)).EndInit(); 1562 | this.groupBox1.ResumeLayout(false); 1563 | this.groupBox2.ResumeLayout(false); 1564 | this.groupBox2.PerformLayout(); 1565 | ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); 1566 | this.groupBox4.ResumeLayout(false); 1567 | this.groupBox4.PerformLayout(); 1568 | this.groupBox5.ResumeLayout(false); 1569 | this.groupBox5.PerformLayout(); 1570 | this.groupBox6.ResumeLayout(false); 1571 | this.groupBox6.PerformLayout(); 1572 | this.groupBox7.ResumeLayout(false); 1573 | this.groupBox7.PerformLayout(); 1574 | this.groupBox8.ResumeLayout(false); 1575 | this.groupBox8.PerformLayout(); 1576 | this.groupBox9.ResumeLayout(false); 1577 | this.groupBox9.PerformLayout(); 1578 | this.ResumeLayout(false); 1579 | this.PerformLayout(); 1580 | 1581 | } 1582 | 1583 | #endregion 1584 | 1585 | private System.Windows.Forms.DataGridView favList; 1586 | private System.Windows.Forms.Button button1; 1587 | private System.Windows.Forms.DataGridViewButtonColumn add; 1588 | private System.Windows.Forms.DataGridViewTextBoxColumn no; 1589 | private System.Windows.Forms.DataGridViewTextBoxColumn code; 1590 | private System.Windows.Forms.DataGridViewTextBoxColumn sub; 1591 | private System.Windows.Forms.DataGridViewTextBoxColumn point; 1592 | private System.Windows.Forms.DataGridViewTextBoxColumn prof; 1593 | private System.Windows.Forms.DataGridViewTextBoxColumn time; 1594 | private System.Windows.Forms.Button button2; 1595 | private System.Windows.Forms.Button button3; 1596 | private System.Windows.Forms.Button enrolBtn; 1597 | private System.Windows.Forms.ComboBox comboBox1; 1598 | private System.Windows.Forms.ComboBox comboBox2; 1599 | private System.Windows.Forms.ComboBox comboBox3; 1600 | private System.Windows.Forms.CheckBox checkBox1; 1601 | private System.Windows.Forms.Button button5; 1602 | private System.Windows.Forms.Button button6; 1603 | private System.Windows.Forms.TextBox textBox1; 1604 | private System.Windows.Forms.Button startBtn; 1605 | private System.Windows.Forms.Label label1; 1606 | private System.Windows.Forms.Timer timer1; 1607 | private System.Windows.Forms.Label curTime; 1608 | private System.Windows.Forms.DataGridView getList; 1609 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1; 1610 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2; 1611 | private System.Windows.Forms.DataGridViewTextBoxColumn type; 1612 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3; 1613 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4; 1614 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5; 1615 | private System.Windows.Forms.DataGridViewTextBoxColumn day; 1616 | private System.Windows.Forms.DataGridViewTextBoxColumn when; 1617 | private System.Windows.Forms.DataGridViewTextBoxColumn room; 1618 | private System.Windows.Forms.DataGridViewTextBoxColumn day2; 1619 | private System.Windows.Forms.DataGridViewTextBoxColumn when2; 1620 | private System.Windows.Forms.DataGridViewTextBoxColumn room2; 1621 | private System.Windows.Forms.GroupBox groupBox1; 1622 | private System.Windows.Forms.GroupBox groupBox2; 1623 | private System.Windows.Forms.GroupBox groupBox3; 1624 | private System.Windows.Forms.Label label5; 1625 | private System.Windows.Forms.Label label4; 1626 | private System.Windows.Forms.Label label3; 1627 | private System.Windows.Forms.Label label2; 1628 | private System.Windows.Forms.DataGridView dataGridView1; 1629 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6; 1630 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7; 1631 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8; 1632 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9; 1633 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10; 1634 | private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11; 1635 | private System.Windows.Forms.DataGridViewTextBoxColumn when3; 1636 | private System.Windows.Forms.GroupBox groupBox4; 1637 | private System.Windows.Forms.TextBox textBox4; 1638 | private System.Windows.Forms.TextBox textBox3; 1639 | private System.Windows.Forms.TextBox textBox2; 1640 | private System.Windows.Forms.Label label8; 1641 | private System.Windows.Forms.Label label7; 1642 | private System.Windows.Forms.Label label6; 1643 | private System.Windows.Forms.GroupBox groupBox5; 1644 | private System.Windows.Forms.TextBox textBox7; 1645 | private System.Windows.Forms.TextBox textBox6; 1646 | private System.Windows.Forms.TextBox textBox5; 1647 | private System.Windows.Forms.Label label11; 1648 | private System.Windows.Forms.Label label10; 1649 | private System.Windows.Forms.Label label9; 1650 | private System.Windows.Forms.GroupBox groupBox6; 1651 | private System.Windows.Forms.Label label17; 1652 | private System.Windows.Forms.Label label16; 1653 | private System.Windows.Forms.Label label15; 1654 | private System.Windows.Forms.Label label14; 1655 | private System.Windows.Forms.Label label13; 1656 | private System.Windows.Forms.Label label12; 1657 | private System.Windows.Forms.TextBox textBox8; 1658 | private System.Windows.Forms.Label label20; 1659 | private System.Windows.Forms.Label label19; 1660 | private System.Windows.Forms.Label label18; 1661 | private System.Windows.Forms.Label label21; 1662 | private System.Windows.Forms.TextBox cntText; 1663 | private System.Windows.Forms.TextBox textBox27; 1664 | private System.Windows.Forms.TextBox profRef; 1665 | private System.Windows.Forms.TextBox pointRef; 1666 | private System.Windows.Forms.TextBox typeRef; 1667 | private System.Windows.Forms.TextBox textBox23; 1668 | private System.Windows.Forms.TextBox textBox22; 1669 | private System.Windows.Forms.TextBox textBox21; 1670 | private System.Windows.Forms.TextBox textBox20; 1671 | private System.Windows.Forms.TextBox textBox19; 1672 | private System.Windows.Forms.TextBox textBox18; 1673 | private System.Windows.Forms.TextBox textBox17; 1674 | private System.Windows.Forms.TextBox textBox16; 1675 | private System.Windows.Forms.TextBox textBox15; 1676 | private System.Windows.Forms.TextBox roomRef; 1677 | private System.Windows.Forms.TextBox timeRef; 1678 | private System.Windows.Forms.TextBox dayRef; 1679 | private System.Windows.Forms.TextBox subRef; 1680 | private System.Windows.Forms.TextBox textBox10; 1681 | private System.Windows.Forms.TextBox codeText; 1682 | private System.Windows.Forms.Label cntRef; 1683 | private System.Windows.Forms.Label codeRef; 1684 | private System.Windows.Forms.GroupBox groupBox7; 1685 | private System.Windows.Forms.TextBox textBox24; 1686 | private System.Windows.Forms.Label label27; 1687 | private System.Windows.Forms.TextBox textBox14; 1688 | private System.Windows.Forms.Label label26; 1689 | private System.Windows.Forms.TextBox textBox13; 1690 | private System.Windows.Forms.Label label25; 1691 | private System.Windows.Forms.TextBox textBox12; 1692 | private System.Windows.Forms.Label label24; 1693 | private System.Windows.Forms.TextBox textBox11; 1694 | private System.Windows.Forms.Label label23; 1695 | private System.Windows.Forms.TextBox textBox9; 1696 | private System.Windows.Forms.Label label22; 1697 | private System.Windows.Forms.GroupBox groupBox8; 1698 | private System.Windows.Forms.TextBox textBox26; 1699 | private System.Windows.Forms.TextBox textBox25; 1700 | private System.Windows.Forms.Label label31; 1701 | private System.Windows.Forms.Label label30; 1702 | private System.Windows.Forms.Label label29; 1703 | private System.Windows.Forms.Label label28; 1704 | private System.Windows.Forms.GroupBox groupBox9; 1705 | private System.Windows.Forms.LinkLabel linkLabel1; 1706 | private System.Windows.Forms.Label label33; 1707 | private System.Windows.Forms.Label label32; 1708 | private System.Windows.Forms.GroupBox groupBox10; 1709 | private System.Windows.Forms.Label label34; 1710 | } 1711 | } --------------------------------------------------------------------------------