Server.Designer.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. namespace ProcedureComparer
  2. {
  3. partial class Server
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region 구성 요소 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. tlp_Server = new TableLayoutPanel();
  29. gb_ServerName = new GroupBox();
  30. tlp_ServerInfo = new TableLayoutPanel();
  31. panel1 = new Panel();
  32. btn_Connect = new Button();
  33. tb_PW = new TextBox();
  34. tb_ID = new TextBox();
  35. tb_Name = new TextBox();
  36. label1 = new Label();
  37. label3 = new Label();
  38. label4 = new Label();
  39. label2 = new Label();
  40. tb_Address = new TextBox();
  41. groupBox2 = new GroupBox();
  42. tb_ProcedureContent = new TextBox();
  43. tableLayoutPanel1 = new TableLayoutPanel();
  44. btn_OpenBackupFolder = new Button();
  45. btn_ExecOtherServer = new Button();
  46. label5 = new Label();
  47. btn_ExecThisServer = new Button();
  48. tlp_Server.SuspendLayout();
  49. gb_ServerName.SuspendLayout();
  50. tlp_ServerInfo.SuspendLayout();
  51. panel1.SuspendLayout();
  52. groupBox2.SuspendLayout();
  53. tableLayoutPanel1.SuspendLayout();
  54. SuspendLayout();
  55. //
  56. // tlp_Server
  57. //
  58. tlp_Server.ColumnCount = 1;
  59. tlp_Server.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
  60. tlp_Server.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 20F));
  61. tlp_Server.Controls.Add(gb_ServerName, 0, 0);
  62. tlp_Server.Controls.Add(groupBox2, 0, 1);
  63. tlp_Server.Dock = DockStyle.Fill;
  64. tlp_Server.Location = new Point(0, 0);
  65. tlp_Server.Name = "tlp_Server";
  66. tlp_Server.RowCount = 2;
  67. tlp_Server.RowStyles.Add(new RowStyle(SizeType.Absolute, 136F));
  68. tlp_Server.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
  69. tlp_Server.Size = new Size(509, 677);
  70. tlp_Server.TabIndex = 0;
  71. //
  72. // gb_ServerName
  73. //
  74. gb_ServerName.Controls.Add(tlp_ServerInfo);
  75. gb_ServerName.Dock = DockStyle.Fill;
  76. gb_ServerName.Location = new Point(3, 3);
  77. gb_ServerName.Name = "gb_ServerName";
  78. gb_ServerName.Size = new Size(503, 130);
  79. gb_ServerName.TabIndex = 0;
  80. gb_ServerName.TabStop = false;
  81. gb_ServerName.Text = "Server Info";
  82. //
  83. // tlp_ServerInfo
  84. //
  85. tlp_ServerInfo.CellBorderStyle = TableLayoutPanelCellBorderStyle.Single;
  86. tlp_ServerInfo.ColumnCount = 3;
  87. tlp_ServerInfo.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 100F));
  88. tlp_ServerInfo.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F));
  89. tlp_ServerInfo.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 80F));
  90. tlp_ServerInfo.Controls.Add(panel1, 2, 0);
  91. tlp_ServerInfo.Controls.Add(tb_PW, 1, 3);
  92. tlp_ServerInfo.Controls.Add(tb_ID, 1, 2);
  93. tlp_ServerInfo.Controls.Add(tb_Name, 1, 1);
  94. tlp_ServerInfo.Controls.Add(label1, 0, 0);
  95. tlp_ServerInfo.Controls.Add(label3, 0, 2);
  96. tlp_ServerInfo.Controls.Add(label4, 0, 3);
  97. tlp_ServerInfo.Controls.Add(label2, 0, 1);
  98. tlp_ServerInfo.Controls.Add(tb_Address, 1, 0);
  99. tlp_ServerInfo.Dock = DockStyle.Fill;
  100. tlp_ServerInfo.Location = new Point(3, 19);
  101. tlp_ServerInfo.Name = "tlp_ServerInfo";
  102. tlp_ServerInfo.RowCount = 4;
  103. tlp_ServerInfo.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
  104. tlp_ServerInfo.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
  105. tlp_ServerInfo.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
  106. tlp_ServerInfo.RowStyles.Add(new RowStyle(SizeType.Percent, 25F));
  107. tlp_ServerInfo.Size = new Size(497, 108);
  108. tlp_ServerInfo.TabIndex = 0;
  109. //
  110. // panel1
  111. //
  112. panel1.Controls.Add(btn_Connect);
  113. panel1.Dock = DockStyle.Fill;
  114. panel1.Location = new Point(416, 1);
  115. panel1.Margin = new Padding(0);
  116. panel1.Name = "panel1";
  117. tlp_ServerInfo.SetRowSpan(panel1, 4);
  118. panel1.Size = new Size(80, 106);
  119. panel1.TabIndex = 0;
  120. //
  121. // btn_Connect
  122. //
  123. btn_Connect.Dock = DockStyle.Fill;
  124. btn_Connect.Location = new Point(0, 0);
  125. btn_Connect.Name = "btn_Connect";
  126. btn_Connect.Size = new Size(80, 106);
  127. btn_Connect.TabIndex = 0;
  128. btn_Connect.Text = "Connect";
  129. btn_Connect.UseVisualStyleBackColor = true;
  130. btn_Connect.Click += btn_Connect_Click;
  131. //
  132. // tb_PW
  133. //
  134. tb_PW.Dock = DockStyle.Fill;
  135. tb_PW.Location = new Point(105, 82);
  136. tb_PW.Name = "tb_PW";
  137. tb_PW.Size = new Size(307, 23);
  138. tb_PW.TabIndex = 8;
  139. //
  140. // tb_ID
  141. //
  142. tb_ID.Dock = DockStyle.Fill;
  143. tb_ID.Location = new Point(105, 56);
  144. tb_ID.Name = "tb_ID";
  145. tb_ID.Size = new Size(307, 23);
  146. tb_ID.TabIndex = 7;
  147. //
  148. // tb_Name
  149. //
  150. tb_Name.Dock = DockStyle.Fill;
  151. tb_Name.Location = new Point(105, 30);
  152. tb_Name.Name = "tb_Name";
  153. tb_Name.Size = new Size(307, 23);
  154. tb_Name.TabIndex = 6;
  155. //
  156. // label1
  157. //
  158. label1.Dock = DockStyle.Fill;
  159. label1.Location = new Point(4, 1);
  160. label1.Name = "label1";
  161. label1.Size = new Size(94, 25);
  162. label1.TabIndex = 1;
  163. label1.Text = "DB Address";
  164. label1.TextAlign = ContentAlignment.MiddleCenter;
  165. //
  166. // label3
  167. //
  168. label3.Dock = DockStyle.Fill;
  169. label3.Location = new Point(4, 53);
  170. label3.Name = "label3";
  171. label3.Size = new Size(94, 25);
  172. label3.TabIndex = 3;
  173. label3.Text = "ID";
  174. label3.TextAlign = ContentAlignment.MiddleCenter;
  175. //
  176. // label4
  177. //
  178. label4.Dock = DockStyle.Fill;
  179. label4.Location = new Point(4, 79);
  180. label4.Name = "label4";
  181. label4.Size = new Size(94, 28);
  182. label4.TabIndex = 4;
  183. label4.Text = "PW";
  184. label4.TextAlign = ContentAlignment.MiddleCenter;
  185. //
  186. // label2
  187. //
  188. label2.Dock = DockStyle.Fill;
  189. label2.Location = new Point(4, 27);
  190. label2.Name = "label2";
  191. label2.Size = new Size(94, 25);
  192. label2.TabIndex = 2;
  193. label2.Text = "DB Name";
  194. label2.TextAlign = ContentAlignment.MiddleCenter;
  195. //
  196. // tb_Address
  197. //
  198. tb_Address.Dock = DockStyle.Fill;
  199. tb_Address.Location = new Point(105, 4);
  200. tb_Address.Name = "tb_Address";
  201. tb_Address.Size = new Size(307, 23);
  202. tb_Address.TabIndex = 5;
  203. //
  204. // groupBox2
  205. //
  206. groupBox2.Controls.Add(tb_ProcedureContent);
  207. groupBox2.Controls.Add(tableLayoutPanel1);
  208. groupBox2.Dock = DockStyle.Fill;
  209. groupBox2.Location = new Point(3, 139);
  210. groupBox2.Name = "groupBox2";
  211. groupBox2.Size = new Size(503, 535);
  212. groupBox2.TabIndex = 1;
  213. groupBox2.TabStop = false;
  214. groupBox2.Text = "Procedure Content";
  215. //
  216. // tb_ProcedureContent
  217. //
  218. tb_ProcedureContent.Dock = DockStyle.Fill;
  219. tb_ProcedureContent.Font = new Font("맑은 고딕", 9.75F, FontStyle.Regular, GraphicsUnit.Point);
  220. tb_ProcedureContent.Location = new Point(3, 52);
  221. tb_ProcedureContent.Multiline = true;
  222. tb_ProcedureContent.Name = "tb_ProcedureContent";
  223. tb_ProcedureContent.ScrollBars = ScrollBars.Vertical;
  224. tb_ProcedureContent.Size = new Size(497, 480);
  225. tb_ProcedureContent.TabIndex = 0;
  226. //
  227. // tableLayoutPanel1
  228. //
  229. tableLayoutPanel1.ColumnCount = 4;
  230. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 80F));
  231. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.3333321F));
  232. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.3333321F));
  233. tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 33.3333321F));
  234. tableLayoutPanel1.Controls.Add(btn_OpenBackupFolder, 3, 0);
  235. tableLayoutPanel1.Controls.Add(btn_ExecOtherServer, 2, 0);
  236. tableLayoutPanel1.Controls.Add(label5, 0, 0);
  237. tableLayoutPanel1.Controls.Add(btn_ExecThisServer, 1, 0);
  238. tableLayoutPanel1.Dock = DockStyle.Top;
  239. tableLayoutPanel1.Enabled = false;
  240. tableLayoutPanel1.Location = new Point(3, 19);
  241. tableLayoutPanel1.Name = "tableLayoutPanel1";
  242. tableLayoutPanel1.RowCount = 1;
  243. tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100F));
  244. tableLayoutPanel1.Size = new Size(497, 33);
  245. tableLayoutPanel1.TabIndex = 3;
  246. //
  247. // btn_OpenBackupFolder
  248. //
  249. btn_OpenBackupFolder.Dock = DockStyle.Fill;
  250. btn_OpenBackupFolder.Location = new Point(358, 2);
  251. btn_OpenBackupFolder.Margin = new Padding(2);
  252. btn_OpenBackupFolder.Name = "btn_OpenBackupFolder";
  253. btn_OpenBackupFolder.Size = new Size(137, 29);
  254. btn_OpenBackupFolder.TabIndex = 5;
  255. btn_OpenBackupFolder.Text = "Open Backup Folder";
  256. btn_OpenBackupFolder.UseVisualStyleBackColor = true;
  257. btn_OpenBackupFolder.Click += btn_OpenBackupFolder_Click;
  258. //
  259. // btn_ExecOtherServer
  260. //
  261. btn_ExecOtherServer.Dock = DockStyle.Fill;
  262. btn_ExecOtherServer.Location = new Point(220, 2);
  263. btn_ExecOtherServer.Margin = new Padding(2);
  264. btn_ExecOtherServer.Name = "btn_ExecOtherServer";
  265. btn_ExecOtherServer.Size = new Size(134, 29);
  266. btn_ExecOtherServer.TabIndex = 4;
  267. btn_ExecOtherServer.Text = "Other Server";
  268. btn_ExecOtherServer.UseVisualStyleBackColor = true;
  269. btn_ExecOtherServer.Click += btn_ExecOtherServer_Click;
  270. //
  271. // label5
  272. //
  273. label5.Dock = DockStyle.Fill;
  274. label5.Location = new Point(3, 0);
  275. label5.Name = "label5";
  276. label5.Size = new Size(74, 33);
  277. label5.TabIndex = 0;
  278. label5.Text = "EXEC ▶";
  279. label5.TextAlign = ContentAlignment.MiddleCenter;
  280. //
  281. // btn_ExecThisServer
  282. //
  283. btn_ExecThisServer.Dock = DockStyle.Fill;
  284. btn_ExecThisServer.Location = new Point(82, 2);
  285. btn_ExecThisServer.Margin = new Padding(2);
  286. btn_ExecThisServer.Name = "btn_ExecThisServer";
  287. btn_ExecThisServer.Size = new Size(134, 29);
  288. btn_ExecThisServer.TabIndex = 1;
  289. btn_ExecThisServer.Text = "This Server";
  290. btn_ExecThisServer.UseVisualStyleBackColor = true;
  291. btn_ExecThisServer.Click += btn_Exec_Click;
  292. //
  293. // Server
  294. //
  295. AutoScaleDimensions = new SizeF(7F, 15F);
  296. AutoScaleMode = AutoScaleMode.Font;
  297. Controls.Add(tlp_Server);
  298. Name = "Server";
  299. Size = new Size(509, 677);
  300. tlp_Server.ResumeLayout(false);
  301. gb_ServerName.ResumeLayout(false);
  302. tlp_ServerInfo.ResumeLayout(false);
  303. tlp_ServerInfo.PerformLayout();
  304. panel1.ResumeLayout(false);
  305. groupBox2.ResumeLayout(false);
  306. groupBox2.PerformLayout();
  307. tableLayoutPanel1.ResumeLayout(false);
  308. ResumeLayout(false);
  309. }
  310. #endregion
  311. private TableLayoutPanel tlp_Server;
  312. private GroupBox gb_ServerName;
  313. private TableLayoutPanel tlp_ServerInfo;
  314. private GroupBox groupBox2;
  315. private TextBox tb_PW;
  316. private TextBox tb_ID;
  317. private TextBox tb_Name;
  318. private Button btn_Connect;
  319. private Label label1;
  320. private Label label3;
  321. private Label label4;
  322. private Label label2;
  323. private TextBox tb_Address;
  324. private Panel panel1;
  325. private TextBox tb_ProcedureContent;
  326. private Button btn_ExecThisServer;
  327. private TableLayoutPanel tableLayoutPanel1;
  328. private Button btn_ExecOtherServer;
  329. private Label label5;
  330. private Button btn_OpenBackupFolder;
  331. }
  332. }