/// <summary> /// Creates the professional combo. /// </summary> /// <param name="combo">The combo.</param> /// <param name="selectedType">Type of the selected.</param> public void CreateDocumentCategoryCombo(TextComboBox combo, string selectedType) { combo.Items.Clear(); IEDocumentTypeService typeSrv = ServiceFactory.GetEDocumentTypeService(); EDocumentType doctype = typeSrv.EDocumentTypeSelect(EDocumentTypeEnum.DOC.ToString()); EDocumentType linktype = typeSrv.EDocumentTypeSelect(EDocumentTypeEnum.LNK.ToString()); EDocumentType othertype = typeSrv.EDocumentTypeSelect(EDocumentTypeEnum.KDB.ToString()); StringListItem item1 = new StringListItem(doctype.ID, doctype.Name); StringListItem item2 = new StringListItem(linktype.ID, linktype.Name); StringListItem item3 = new StringListItem(othertype.ID, othertype.Name); combo.Items.Add(item1); combo.Items.Add(item2); combo.Items.Add(item3); if (selectedType == EDocumentTypeEnum.DOC) { combo.SelectedItem = item1; } if (selectedType == EDocumentTypeEnum.LNK) { combo.SelectedItem = item2; } if (selectedType == EDocumentTypeEnum.KDB) { combo.SelectedItem = item3; } }
public void CreateActualCombo(TextComboBox combo) { #region Load Actual combo DataTable dt = new DataTable("Actual"); DataColumn colID = new DataColumn("ID", typeof (int)); DataColumn colName = new DataColumn("Name", typeof (string)); dt.Columns.Add(colID); dt.Columns.Add(colName); DataRow dr = dt.NewRow(); dr["ID"] = "1"; dr["Name"] = "Aktuális"; dt.Rows.Add(dr); dr = dt.NewRow(); dr["ID"] = "0"; dr["Name"] = "Arhív"; dt.Rows.Add(dr); CreateSimpleCombo(dt, combo); #endregion }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.groupBox7 = new System.Windows.Forms.GroupBox(); this.txtPosInKef = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label17 = new System.Windows.Forms.Label(); this.cmbContactType = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label16 = new System.Windows.Forms.Label(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.txtContactInstitution = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label15 = new System.Windows.Forms.Label(); this.label12 = new System.Windows.Forms.Label(); this.txtContactAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label13 = new System.Windows.Forms.Label(); this.txtContactZipCode = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label14 = new System.Windows.Forms.Label(); this.txtContactTownShip = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtKefContactEmail3 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label7 = new System.Windows.Forms.Label(); this.txtKefContactEmail2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label6 = new System.Windows.Forms.Label(); this.txtKefContactPhone3 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label5 = new System.Windows.Forms.Label(); this.txtKefContactPhone2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label4 = new System.Windows.Forms.Label(); this.txtKefContactEmail1 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtKefContactQual = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtKefContactPosition = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtKefContactFax = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtKefContactPhone1 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtKefContactName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label85 = new System.Windows.Forms.Label(); this.label84 = new System.Windows.Forms.Label(); this.label83 = new System.Windows.Forms.Label(); this.label80 = new System.Windows.Forms.Label(); this.label79 = new System.Windows.Forms.Label(); this.label78 = new System.Windows.Forms.Label(); this.txtKefContactPositionInKef = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.label8 = new System.Windows.Forms.Label(); this.greptonTextBox4 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label9 = new System.Windows.Forms.Label(); this.greptonTextBox5 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label10 = new System.Windows.Forms.Label(); this.greptonTextBox6 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label86 = new System.Windows.Forms.Label(); this.cmbKefMembers = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.txtOrgZipCode = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtOrgCity = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtOrgAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.greptonTextBox7 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label11 = new System.Windows.Forms.Label(); this.greptonTextBox8 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.pnlBottom = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.groupBox7.SuspendLayout(); this.groupBox3.SuspendLayout(); this.groupBox1.SuspendLayout(); this.pnlBottom.SuspendLayout(); this.SuspendLayout(); // // groupBox7 // this.groupBox7.Controls.Add(this.txtPosInKef); this.groupBox7.Controls.Add(this.label17); this.groupBox7.Controls.Add(this.cmbContactType); this.groupBox7.Controls.Add(this.label16); this.groupBox7.Controls.Add(this.groupBox3); this.groupBox7.Controls.Add(this.txtKefContactEmail3); this.groupBox7.Controls.Add(this.label7); this.groupBox7.Controls.Add(this.txtKefContactEmail2); this.groupBox7.Controls.Add(this.label6); this.groupBox7.Controls.Add(this.txtKefContactPhone3); this.groupBox7.Controls.Add(this.label5); this.groupBox7.Controls.Add(this.txtKefContactPhone2); this.groupBox7.Controls.Add(this.label4); this.groupBox7.Controls.Add(this.txtKefContactEmail1); this.groupBox7.Controls.Add(this.txtKefContactQual); this.groupBox7.Controls.Add(this.txtKefContactPosition); this.groupBox7.Controls.Add(this.txtKefContactFax); this.groupBox7.Controls.Add(this.txtKefContactPhone1); this.groupBox7.Controls.Add(this.txtKefContactName); this.groupBox7.Controls.Add(this.label85); this.groupBox7.Controls.Add(this.label84); this.groupBox7.Controls.Add(this.label83); this.groupBox7.Controls.Add(this.label80); this.groupBox7.Controls.Add(this.label79); this.groupBox7.Controls.Add(this.label78); this.groupBox7.Location = new System.Drawing.Point(19, 157); this.groupBox7.Name = "groupBox7"; this.groupBox7.Size = new System.Drawing.Size(787, 545); this.groupBox7.TabIndex = 1; this.groupBox7.TabStop = false; this.groupBox7.Text = "Képviselõ"; // // txtPosInKef // this.txtPosInKef.AllowNull = true; this.txtPosInKef.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPosInKef.InvalidCharSet = ""; this.txtPosInKef.Location = new System.Drawing.Point(192, 277); this.txtPosInKef.MaxLength = 250; this.txtPosInKef.Name = "txtPosInKef"; this.txtPosInKef.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPosInKef.Size = new System.Drawing.Size(384, 22); this.txtPosInKef.TabIndex = 3; this.txtPosInKef.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPosInKef.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPosInKef.ValidationMask = ""; this.txtPosInKef.ValidCharSet = ""; // // label17 // this.label17.Location = new System.Drawing.Point(19, 277); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(144, 18); this.label17.TabIndex = 49; this.label17.Text = "Beosztás a KEF -ben:"; // // cmbContactType // this.cmbContactType.AllowNull = false; this.cmbContactType.BreakSort = false; this.cmbContactType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbContactType.Location = new System.Drawing.Point(192, 57); this.cmbContactType.Name = "cmbContactType"; this.cmbContactType.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbContactType.Size = new System.Drawing.Size(269, 24); this.cmbContactType.TabIndex = 1; this.cmbContactType.ToolBarUse = false; this.cmbContactType.ValidationErrorMessage = "Érvénytelen karakter!"; this.cmbContactType.SelectedIndexChanged += new System.EventHandler(this.cmbContactType_SelectedIndexChanged); // // label16 // this.label16.Location = new System.Drawing.Point(19, 60); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(106, 23); this.label16.TabIndex = 48; this.label16.Text = "Tag titulus :"; this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // groupBox3 // this.groupBox3.Controls.Add(this.txtContactInstitution); this.groupBox3.Controls.Add(this.label15); this.groupBox3.Controls.Add(this.label12); this.groupBox3.Controls.Add(this.txtContactAddress); this.groupBox3.Controls.Add(this.label13); this.groupBox3.Controls.Add(this.txtContactZipCode); this.groupBox3.Controls.Add(this.label14); this.groupBox3.Controls.Add(this.txtContactTownShip); this.groupBox3.Location = new System.Drawing.Point(10, 92); this.groupBox3.Name = "groupBox3"; this.groupBox3.Size = new System.Drawing.Size(758, 148); this.groupBox3.TabIndex = 4; this.groupBox3.TabStop = false; this.groupBox3.Text = "Képviselõ levelezési címe (ha nem egyezik meg a szervezet címével) :"; // // txtContactInstitution // this.txtContactInstitution.AllowNull = true; this.txtContactInstitution.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtContactInstitution.InvalidCharSet = ""; this.txtContactInstitution.Location = new System.Drawing.Point(182, 28); this.txtContactInstitution.Name = "txtContactInstitution"; this.txtContactInstitution.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtContactInstitution.Size = new System.Drawing.Size(567, 22); this.txtContactInstitution.TabIndex = 0; this.txtContactInstitution.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtContactInstitution.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtContactInstitution.ValidationMask = ""; this.txtContactInstitution.ValidCharSet = ""; // // label15 // this.label15.Location = new System.Drawing.Point(29, 28); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(105, 27); this.label15.TabIndex = 60; this.label15.Text = "Intézmény :"; // // label12 // this.label12.Location = new System.Drawing.Point(29, 55); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(105, 23); this.label12.TabIndex = 54; this.label12.Text = "Irányító szám :"; this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtContactAddress // this.txtContactAddress.AllowNull = true; this.txtContactAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtContactAddress.InvalidCharSet = ""; this.txtContactAddress.Location = new System.Drawing.Point(182, 111); this.txtContactAddress.Name = "txtContactAddress"; this.txtContactAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtContactAddress.Size = new System.Drawing.Size(567, 22); this.txtContactAddress.TabIndex = 3; this.txtContactAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtContactAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtContactAddress.ValidationMask = ""; this.txtContactAddress.ValidCharSet = ""; // // label13 // this.label13.Location = new System.Drawing.Point(29, 83); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(105, 23); this.label13.TabIndex = 55; this.label13.Text = "Település :"; this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtContactZipCode // this.txtContactZipCode.AllowNull = true; this.txtContactZipCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtContactZipCode.InvalidCharSet = ""; this.txtContactZipCode.Location = new System.Drawing.Point(182, 55); this.txtContactZipCode.Name = "txtContactZipCode"; this.txtContactZipCode.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtContactZipCode.Size = new System.Drawing.Size(118, 22); this.txtContactZipCode.TabIndex = 1; this.txtContactZipCode.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtContactZipCode.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtContactZipCode.ValidationMask = ""; this.txtContactZipCode.ValidCharSet = ""; // // label14 // this.label14.Location = new System.Drawing.Point(29, 111); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(105, 23); this.label14.TabIndex = 56; this.label14.Text = "Utca, házszám :"; this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtContactTownShip // this.txtContactTownShip.AllowNull = true; this.txtContactTownShip.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtContactTownShip.InvalidCharSet = ""; this.txtContactTownShip.Location = new System.Drawing.Point(182, 83); this.txtContactTownShip.Name = "txtContactTownShip"; this.txtContactTownShip.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtContactTownShip.Size = new System.Drawing.Size(336, 22); this.txtContactTownShip.TabIndex = 2; this.txtContactTownShip.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtContactTownShip.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtContactTownShip.ValidationMask = ""; this.txtContactTownShip.ValidCharSet = ""; // // txtKefContactEmail3 // this.txtKefContactEmail3.AllowNull = true; this.txtKefContactEmail3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactEmail3.InvalidCharSet = ""; this.txtKefContactEmail3.Location = new System.Drawing.Point(192, 502); this.txtKefContactEmail3.MaxLength = 250; this.txtKefContactEmail3.Name = "txtKefContactEmail3"; this.txtKefContactEmail3.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactEmail3.Size = new System.Drawing.Size(317, 22); this.txtKefContactEmail3.TabIndex = 18; this.txtKefContactEmail3.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactEmail3.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactEmail3.ValidationMask = ""; this.txtKefContactEmail3.ValidCharSet = ""; // // label7 // this.label7.Location = new System.Drawing.Point(19, 502); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(58, 18); this.label7.TabIndex = 41; this.label7.Text = "Email 3:"; // // txtKefContactEmail2 // this.txtKefContactEmail2.AllowNull = true; this.txtKefContactEmail2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactEmail2.InvalidCharSet = ""; this.txtKefContactEmail2.Location = new System.Drawing.Point(192, 474); this.txtKefContactEmail2.MaxLength = 250; this.txtKefContactEmail2.Name = "txtKefContactEmail2"; this.txtKefContactEmail2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactEmail2.Size = new System.Drawing.Size(317, 22); this.txtKefContactEmail2.TabIndex = 10; this.txtKefContactEmail2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactEmail2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactEmail2.ValidationMask = ""; this.txtKefContactEmail2.ValidCharSet = ""; // // label6 // this.label6.Location = new System.Drawing.Point(19, 474); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(58, 19); this.label6.TabIndex = 39; this.label6.Text = "Email 2:"; // // txtKefContactPhone3 // this.txtKefContactPhone3.AllowNull = true; this.txtKefContactPhone3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactPhone3.InvalidCharSet = ""; this.txtKefContactPhone3.Location = new System.Drawing.Point(192, 391); this.txtKefContactPhone3.MaxLength = 250; this.txtKefContactPhone3.Name = "txtKefContactPhone3"; this.txtKefContactPhone3.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactPhone3.Size = new System.Drawing.Size(154, 22); this.txtKefContactPhone3.TabIndex = 7; this.txtKefContactPhone3.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactPhone3.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactPhone3.ValidationMask = ""; this.txtKefContactPhone3.ValidCharSet = ""; // // label5 // this.label5.Location = new System.Drawing.Point(19, 391); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(96, 19); this.label5.TabIndex = 37; this.label5.Text = "Telefon 3 :"; // // txtKefContactPhone2 // this.txtKefContactPhone2.AllowNull = true; this.txtKefContactPhone2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactPhone2.InvalidCharSet = ""; this.txtKefContactPhone2.Location = new System.Drawing.Point(192, 363); this.txtKefContactPhone2.MaxLength = 250; this.txtKefContactPhone2.Name = "txtKefContactPhone2"; this.txtKefContactPhone2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactPhone2.Size = new System.Drawing.Size(154, 22); this.txtKefContactPhone2.TabIndex = 6; this.txtKefContactPhone2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactPhone2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactPhone2.ValidationMask = ""; this.txtKefContactPhone2.ValidCharSet = ""; // // label4 // this.label4.Location = new System.Drawing.Point(19, 363); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(96, 19); this.label4.TabIndex = 35; this.label4.Text = "Telefon 2 :"; // // txtKefContactEmail1 // this.txtKefContactEmail1.AllowNull = true; this.txtKefContactEmail1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactEmail1.InvalidCharSet = ""; this.txtKefContactEmail1.Location = new System.Drawing.Point(192, 447); this.txtKefContactEmail1.MaxLength = 250; this.txtKefContactEmail1.Name = "txtKefContactEmail1"; this.txtKefContactEmail1.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactEmail1.Size = new System.Drawing.Size(317, 22); this.txtKefContactEmail1.TabIndex = 9; this.txtKefContactEmail1.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactEmail1.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactEmail1.ValidationMask = ""; this.txtKefContactEmail1.ValidCharSet = ""; // // txtKefContactQual // this.txtKefContactQual.AllowNull = true; this.txtKefContactQual.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactQual.InvalidCharSet = ""; this.txtKefContactQual.Location = new System.Drawing.Point(192, 308); this.txtKefContactQual.MaxLength = 250; this.txtKefContactQual.Name = "txtKefContactQual"; this.txtKefContactQual.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactQual.Size = new System.Drawing.Size(586, 22); this.txtKefContactQual.TabIndex = 4; this.txtKefContactQual.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactQual.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactQual.ValidationMask = ""; this.txtKefContactQual.ValidCharSet = ""; // // txtKefContactPosition // this.txtKefContactPosition.AllowNull = true; this.txtKefContactPosition.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactPosition.InvalidCharSet = ""; this.txtKefContactPosition.Location = new System.Drawing.Point(192, 249); this.txtKefContactPosition.MaxLength = 250; this.txtKefContactPosition.Name = "txtKefContactPosition"; this.txtKefContactPosition.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactPosition.Size = new System.Drawing.Size(384, 22); this.txtKefContactPosition.TabIndex = 2; this.txtKefContactPosition.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactPosition.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactPosition.ValidationMask = ""; this.txtKefContactPosition.ValidCharSet = ""; // // txtKefContactFax // this.txtKefContactFax.AllowNull = true; this.txtKefContactFax.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactFax.InvalidCharSet = ""; this.txtKefContactFax.Location = new System.Drawing.Point(192, 419); this.txtKefContactFax.MaxLength = 250; this.txtKefContactFax.Name = "txtKefContactFax"; this.txtKefContactFax.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactFax.Size = new System.Drawing.Size(154, 22); this.txtKefContactFax.TabIndex = 8; this.txtKefContactFax.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactFax.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactFax.ValidationMask = ""; this.txtKefContactFax.ValidCharSet = ""; // // txtKefContactPhone1 // this.txtKefContactPhone1.AllowNull = true; this.txtKefContactPhone1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactPhone1.InvalidCharSet = ""; this.txtKefContactPhone1.Location = new System.Drawing.Point(192, 336); this.txtKefContactPhone1.MaxLength = 250; this.txtKefContactPhone1.Name = "txtKefContactPhone1"; this.txtKefContactPhone1.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactPhone1.Size = new System.Drawing.Size(154, 22); this.txtKefContactPhone1.TabIndex = 5; this.txtKefContactPhone1.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactPhone1.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactPhone1.ValidationMask = ""; this.txtKefContactPhone1.ValidCharSet = ""; // // txtKefContactName // this.txtKefContactName.AllowNull = false; this.txtKefContactName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKefContactName.InvalidCharSet = ""; this.txtKefContactName.Location = new System.Drawing.Point(192, 28); this.txtKefContactName.MaxLength = 250; this.txtKefContactName.Name = "txtKefContactName"; this.txtKefContactName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactName.Size = new System.Drawing.Size(566, 22); this.txtKefContactName.TabIndex = 0; this.txtKefContactName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactName.ValidationMask = ""; this.txtKefContactName.ValidCharSet = ""; // // label85 // this.label85.Location = new System.Drawing.Point(19, 447); this.label85.Name = "label85"; this.label85.Size = new System.Drawing.Size(58, 18); this.label85.TabIndex = 7; this.label85.Text = "Email 1 :"; // // label84 // this.label84.Location = new System.Drawing.Point(19, 308); this.label84.Name = "label84"; this.label84.Size = new System.Drawing.Size(87, 19); this.label84.TabIndex = 6; this.label84.Text = "Végzettség :"; // // label83 // this.label83.Location = new System.Drawing.Point(19, 249); this.label83.Name = "label83"; this.label83.Size = new System.Drawing.Size(173, 19); this.label83.TabIndex = 5; this.label83.Text = "Beosztás a szervezetben :"; // // label80 // this.label80.Location = new System.Drawing.Point(19, 419); this.label80.Name = "label80"; this.label80.Size = new System.Drawing.Size(77, 18); this.label80.TabIndex = 2; this.label80.Text = "Fax szám :"; // // label79 // this.label79.Location = new System.Drawing.Point(19, 336); this.label79.Name = "label79"; this.label79.Size = new System.Drawing.Size(96, 18); this.label79.TabIndex = 1; this.label79.Text = "Telefon 1 :"; // // label78 // this.label78.Location = new System.Drawing.Point(19, 28); this.label78.Name = "label78"; this.label78.Size = new System.Drawing.Size(58, 18); this.label78.TabIndex = 0; this.label78.Text = "Név :"; // // txtKefContactPositionInKef // this.txtKefContactPositionInKef.AllowNull = true; this.txtKefContactPositionInKef.InvalidCharSet = ""; this.txtKefContactPositionInKef.Location = new System.Drawing.Point(0, 0); this.txtKefContactPositionInKef.Name = "txtKefContactPositionInKef"; this.txtKefContactPositionInKef.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKefContactPositionInKef.Size = new System.Drawing.Size(100, 22); this.txtKefContactPositionInKef.TabIndex = 0; this.txtKefContactPositionInKef.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKefContactPositionInKef.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKefContactPositionInKef.ValidationMask = ""; this.txtKefContactPositionInKef.ValidCharSet = ""; // // groupBox2 // this.groupBox2.Location = new System.Drawing.Point(0, 0); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(200, 100); this.groupBox2.TabIndex = 0; this.groupBox2.TabStop = false; // // label8 // this.label8.Location = new System.Drawing.Point(8, 48); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(88, 20); this.label8.TabIndex = 54; this.label8.Text = "Irányító szám :"; this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // greptonTextBox4 // this.greptonTextBox4.AllowNull = true; this.greptonTextBox4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.greptonTextBox4.InvalidCharSet = ""; this.greptonTextBox4.Location = new System.Drawing.Point(128, 96); this.greptonTextBox4.Name = "greptonTextBox4"; this.greptonTextBox4.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.greptonTextBox4.Size = new System.Drawing.Size(472, 22); this.greptonTextBox4.TabIndex = 59; this.greptonTextBox4.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.greptonTextBox4.ValidationErrorMessage = "Érvényesítési hiba!"; this.greptonTextBox4.ValidationMask = ""; this.greptonTextBox4.ValidCharSet = ""; // // label9 // this.label9.Location = new System.Drawing.Point(8, 72); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(88, 20); this.label9.TabIndex = 55; this.label9.Text = "Település :"; this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // greptonTextBox5 // this.greptonTextBox5.AllowNull = true; this.greptonTextBox5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.greptonTextBox5.InvalidCharSet = ""; this.greptonTextBox5.Location = new System.Drawing.Point(128, 48); this.greptonTextBox5.Name = "greptonTextBox5"; this.greptonTextBox5.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.greptonTextBox5.Size = new System.Drawing.Size(98, 22); this.greptonTextBox5.TabIndex = 57; this.greptonTextBox5.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.greptonTextBox5.ValidationErrorMessage = "Érvényesítési hiba!"; this.greptonTextBox5.ValidationMask = ""; this.greptonTextBox5.ValidCharSet = ""; // // label10 // this.label10.Location = new System.Drawing.Point(8, 96); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(88, 20); this.label10.TabIndex = 56; this.label10.Text = "Utca, házszám :"; this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // greptonTextBox6 // this.greptonTextBox6.AllowNull = true; this.greptonTextBox6.InvalidCharSet = ""; this.greptonTextBox6.Location = new System.Drawing.Point(0, 0); this.greptonTextBox6.Name = "greptonTextBox6"; this.greptonTextBox6.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.greptonTextBox6.Size = new System.Drawing.Size(100, 22); this.greptonTextBox6.TabIndex = 0; this.greptonTextBox6.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.greptonTextBox6.ValidationErrorMessage = "Érvényesítési hiba!"; this.greptonTextBox6.ValidationMask = ""; this.greptonTextBox6.ValidCharSet = ""; // // label86 // this.label86.Location = new System.Drawing.Point(19, 27); this.label86.Name = "label86"; this.label86.Size = new System.Drawing.Size(106, 23); this.label86.TabIndex = 47; this.label86.Text = "Név :"; this.label86.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cmbKefMembers // this.cmbKefMembers.AllowNull = false; this.cmbKefMembers.BreakSort = false; this.cmbKefMembers.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbKefMembers.Location = new System.Drawing.Point(144, 27); this.cmbKefMembers.Name = "cmbKefMembers"; this.cmbKefMembers.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbKefMembers.Size = new System.Drawing.Size(413, 24); this.cmbKefMembers.TabIndex = 0; this.cmbKefMembers.ToolBarUse = false; this.cmbKefMembers.ValidationErrorMessage = "Érvénytelen karakter!"; this.cmbKefMembers.SelectedIndexChanged += new System.EventHandler(this.cmbKefMembers_SelectedIndexChanged); // // label1 // this.label1.Location = new System.Drawing.Point(19, 57); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(106, 23); this.label1.TabIndex = 48; this.label1.Text = "Irányító szám :"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label2 // this.label2.Location = new System.Drawing.Point(19, 84); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(106, 23); this.label2.TabIndex = 49; this.label2.Text = "Település :"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label3 // this.label3.Location = new System.Drawing.Point(19, 112); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(106, 23); this.label3.TabIndex = 50; this.label3.Text = "Utca, házszám :"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgZipCode // this.txtOrgZipCode.AllowNull = true; this.txtOrgZipCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgZipCode.InvalidCharSet = ""; this.txtOrgZipCode.Location = new System.Drawing.Point(144, 57); this.txtOrgZipCode.Name = "txtOrgZipCode"; this.txtOrgZipCode.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgZipCode.ReadOnly = true; this.txtOrgZipCode.Size = new System.Drawing.Size(118, 22); this.txtOrgZipCode.TabIndex = 1; this.txtOrgZipCode.TabStop = false; this.txtOrgZipCode.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgZipCode.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgZipCode.ValidationMask = ""; this.txtOrgZipCode.ValidCharSet = ""; // // txtOrgCity // this.txtOrgCity.AllowNull = true; this.txtOrgCity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgCity.InvalidCharSet = ""; this.txtOrgCity.Location = new System.Drawing.Point(144, 84); this.txtOrgCity.Name = "txtOrgCity"; this.txtOrgCity.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgCity.ReadOnly = true; this.txtOrgCity.Size = new System.Drawing.Size(336, 22); this.txtOrgCity.TabIndex = 2; this.txtOrgCity.TabStop = false; this.txtOrgCity.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgCity.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgCity.ValidationMask = ""; this.txtOrgCity.ValidCharSet = ""; // // txtOrgAddress // this.txtOrgAddress.AllowNull = true; this.txtOrgAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgAddress.InvalidCharSet = ""; this.txtOrgAddress.Location = new System.Drawing.Point(144, 112); this.txtOrgAddress.Name = "txtOrgAddress"; this.txtOrgAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgAddress.ReadOnly = true; this.txtOrgAddress.Size = new System.Drawing.Size(566, 22); this.txtOrgAddress.TabIndex = 3; this.txtOrgAddress.TabStop = false; this.txtOrgAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgAddress.ValidationMask = ""; this.txtOrgAddress.ValidCharSet = ""; // // groupBox1 // this.groupBox1.Controls.Add(this.cmbKefMembers); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Controls.Add(this.txtOrgAddress); this.groupBox1.Controls.Add(this.label2); this.groupBox1.Controls.Add(this.txtOrgZipCode); this.groupBox1.Controls.Add(this.label86); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.txtOrgCity); this.groupBox1.Location = new System.Drawing.Point(17, 9); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(789, 148); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Szervezet"; // // greptonTextBox7 // this.greptonTextBox7.AllowNull = true; this.greptonTextBox7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.greptonTextBox7.InvalidCharSet = ""; this.greptonTextBox7.Location = new System.Drawing.Point(128, 72); this.greptonTextBox7.Name = "greptonTextBox7"; this.greptonTextBox7.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.greptonTextBox7.Size = new System.Drawing.Size(280, 22); this.greptonTextBox7.TabIndex = 60; this.greptonTextBox7.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.greptonTextBox7.ValidationErrorMessage = "Érvényesítési hiba!"; this.greptonTextBox7.ValidationMask = ""; this.greptonTextBox7.ValidCharSet = ""; // // label11 // this.label11.Location = new System.Drawing.Point(0, 0); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(100, 23); this.label11.TabIndex = 0; // // greptonTextBox8 // this.greptonTextBox8.AllowNull = true; this.greptonTextBox8.InvalidCharSet = ""; this.greptonTextBox8.Location = new System.Drawing.Point(0, 0); this.greptonTextBox8.Name = "greptonTextBox8"; this.greptonTextBox8.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.greptonTextBox8.Size = new System.Drawing.Size(100, 22); this.greptonTextBox8.TabIndex = 0; this.greptonTextBox8.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.greptonTextBox8.ValidationErrorMessage = "Érvényesítési hiba!"; this.greptonTextBox8.ValidationMask = ""; this.greptonTextBox8.ValidCharSet = ""; // // pnlBottom // this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 691); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(813, 46); this.pnlBottom.TabIndex = 55; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(715, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(619, 14); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 0; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // frmKefMemberEdit // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(813, 737); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.groupBox1); this.Controls.Add(this.groupBox7); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmKefMemberEdit"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmKefMemberEdit_Load); this.groupBox7.ResumeLayout(false); this.groupBox7.PerformLayout(); this.groupBox3.ResumeLayout(false); this.groupBox3.PerformLayout(); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.pnlBottom.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOrganisationPendingUser)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn(); this.colOrganisationName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colLoginName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colUserName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colSentDate = new System.Windows.Forms.DataGridTextBoxColumn(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.tbbDecide = new System.Windows.Forms.ToolBarButton(); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.pnlFilter = new System.Windows.Forms.Panel(); this.cmbStatusFilter = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label2 = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.pnlFilter.SuspendLayout(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 28); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(728, 46); this.pHeader.TabIndex = 1; this.pHeader.TabStop = false; this.pHeader.Text1 = "Jogosultság igénylések"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Egy regisztrált felhasználó jogosultságot igényelhet egy már létezõ szervezethez"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.dataGridTextBoxColumn1, this.colOrganisationName, this.colLoginName, this.colUserName, this.colSentDate}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 119); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(728, 408); this.dtgMain.TabIndex = 62; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // dataGridTextBoxColumn1 // this.dataGridTextBoxColumn1.Format = ""; this.dataGridTextBoxColumn1.FormatInfo = null; this.dataGridTextBoxColumn1.HeaderText = "Státusz"; this.dataGridTextBoxColumn1.MappingName = "StatusName"; this.dataGridTextBoxColumn1.Width = 80; // // colOrganisationName // this.colOrganisationName.Format = ""; this.colOrganisationName.FormatInfo = null; this.colOrganisationName.HeaderText = "Szervezet neve"; this.colOrganisationName.MappingName = "OrganisationName"; this.colOrganisationName.Width = 210; // // colLoginName // this.colLoginName.Format = ""; this.colLoginName.FormatInfo = null; this.colLoginName.HeaderText = "Login név"; this.colLoginName.MappingName = "LoginNameRef"; this.colLoginName.Width = 120; // // colUserName // this.colUserName.Format = ""; this.colUserName.FormatInfo = null; this.colUserName.HeaderText = "Felhasználó név"; this.colUserName.MappingName = "UserName"; this.colUserName.Width = 115; // // colSentDate // this.colSentDate.Format = ""; this.colSentDate.FormatInfo = null; this.colSentDate.HeaderText = "Küldés dátuma"; this.colSentDate.MappingName = "SentDate"; this.colSentDate.Width = 115; // // imageList1 // this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); this.imageList1.TransparentColor = System.Drawing.Color.Transparent; this.imageList1.Images.SetKeyName(0, ""); this.imageList1.Images.SetKeyName(1, ""); this.imageList1.Images.SetKeyName(2, ""); this.imageList1.Images.SetKeyName(3, ""); this.imageList1.Images.SetKeyName(4, ""); // // tbbDecide // this.tbbDecide.ImageIndex = 1; this.tbbDecide.Name = "tbbDecide"; this.tbbDecide.ToolTipText = "Regisztráció jóváhagyása"; // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbDecide, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imageList1; this.tlbMain.Location = new System.Drawing.Point(0, 0); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(728, 28); this.tlbMain.TabIndex = 60; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 2; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // pnlFilter // this.pnlFilter.Controls.Add(this.cmbStatusFilter); this.pnlFilter.Controls.Add(this.label2); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(728, 45); this.pnlFilter.TabIndex = 61; // // cmbStatusFilter // this.cmbStatusFilter.AllowNull = true; this.cmbStatusFilter.BreakSort = false; this.cmbStatusFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatusFilter.Items.AddRange(new object[] { "Új regisztráció", "Elfogadott", "Elutasított"}); this.cmbStatusFilter.Location = new System.Drawing.Point(96, 9); this.cmbStatusFilter.Name = "cmbStatusFilter"; this.cmbStatusFilter.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatusFilter.Size = new System.Drawing.Size(173, 24); this.cmbStatusFilter.TabIndex = 58; this.cmbStatusFilter.ToolBarUse = false; this.cmbStatusFilter.ValidationErrorMessage = "Érvénytelen karakter!"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(29, 14); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(59, 17); this.label2.TabIndex = 57; this.label2.Text = "Státusz:"; // // frmOrganisationPendingUser // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(728, 527); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.pHeader); this.Controls.Add(this.tlbMain); this.Name = "frmOrganisationPendingUser"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmOrganisationPendingUser_Load); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.pnlBottom = new System.Windows.Forms.Panel(); this.btnOk = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.txtAreaHomePage = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label13 = new System.Windows.Forms.Label(); this.txtOrgRegionSearch = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtOrgEstMonth = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtOrgEstYear = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label11 = new System.Windows.Forms.Label(); this.label10 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.cmbOrgDistrictSearch = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.cmbOrgWorkingArea = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label24 = new System.Windows.Forms.Label(); this.label23 = new System.Windows.Forms.Label(); this.txtOrgHomePage = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label8 = new System.Windows.Forms.Label(); this.txtOrganisationName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label22 = new System.Windows.Forms.Label(); this.txtOrgEmail = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.cmbOrgRegion = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label16 = new System.Windows.Forms.Label(); this.label17 = new System.Windows.Forms.Label(); this.txtOrgDescription = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.label21 = new System.Windows.Forms.Label(); this.cmbQualification = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.txtCountry = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label20 = new System.Windows.Forms.Label(); this.txtBirthYear = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label19 = new System.Windows.Forms.Label(); this.rbtWoman = new System.Windows.Forms.RadioButton(); this.rbtMan = new System.Windows.Forms.RadioButton(); this.label18 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.txtLoginName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtUserEmail = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtUserName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label2 = new System.Windows.Forms.Label(); this.txtUserAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label6 = new System.Windows.Forms.Label(); this.txtUserCity = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtUserPostCode = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.txtUserPhone = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label7 = new System.Windows.Forms.Label(); this.pnlBottom.SuspendLayout(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.SuspendLayout(); // // pnlBottom // this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 439); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(866, 46); this.pnlBottom.TabIndex = 14; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(674, 14); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 0; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(768, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; // // groupBox1 // this.groupBox1.Controls.Add(this.txtAreaHomePage); this.groupBox1.Controls.Add(this.label13); this.groupBox1.Controls.Add(this.txtOrgRegionSearch); this.groupBox1.Controls.Add(this.txtOrgEstMonth); this.groupBox1.Controls.Add(this.txtOrgEstYear); this.groupBox1.Controls.Add(this.label11); this.groupBox1.Controls.Add(this.label10); this.groupBox1.Controls.Add(this.label9); this.groupBox1.Controls.Add(this.cmbOrgDistrictSearch); this.groupBox1.Controls.Add(this.cmbOrgWorkingArea); this.groupBox1.Controls.Add(this.label24); this.groupBox1.Controls.Add(this.label23); this.groupBox1.Controls.Add(this.txtOrgHomePage); this.groupBox1.Controls.Add(this.label8); this.groupBox1.Controls.Add(this.txtOrganisationName); this.groupBox1.Controls.Add(this.label22); this.groupBox1.Controls.Add(this.txtOrgEmail); this.groupBox1.Controls.Add(this.cmbOrgRegion); this.groupBox1.Controls.Add(this.label16); this.groupBox1.Location = new System.Drawing.Point(10, 9); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(412, 425); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Szervezet adatai"; // // txtAreaHomePage // this.txtAreaHomePage.AllowNull = true; this.txtAreaHomePage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtAreaHomePage.InvalidCharSet = ""; this.txtAreaHomePage.Location = new System.Drawing.Point(125, 351); this.txtAreaHomePage.Name = "txtAreaHomePage"; this.txtAreaHomePage.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAreaHomePage.Size = new System.Drawing.Size(259, 22); this.txtAreaHomePage.TabIndex = 10; this.txtAreaHomePage.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAreaHomePage.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAreaHomePage.ValidationMask = ""; this.txtAreaHomePage.ValidCharSet = ""; // // label13 // this.label13.Location = new System.Drawing.Point(10, 342); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(96, 46); this.label13.TabIndex = 33; this.label13.Text = "A térség (pl. város, kerület) honlapja :"; // // txtOrgRegionSearch // this.txtOrgRegionSearch.AllowNull = true; this.txtOrgRegionSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgRegionSearch.InvalidCharSet = ""; this.txtOrgRegionSearch.Location = new System.Drawing.Point(125, 194); this.txtOrgRegionSearch.Name = "txtOrgRegionSearch"; this.txtOrgRegionSearch.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgRegionSearch.ReadOnly = true; this.txtOrgRegionSearch.Size = new System.Drawing.Size(264, 22); this.txtOrgRegionSearch.TabIndex = 5; this.txtOrgRegionSearch.TabStop = false; this.txtOrgRegionSearch.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgRegionSearch.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgRegionSearch.ValidationMask = ""; this.txtOrgRegionSearch.ValidCharSet = ""; // // txtOrgEstMonth // this.txtOrgEstMonth.AllowNull = true; this.txtOrgEstMonth.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgEstMonth.InvalidCharSet = ""; this.txtOrgEstMonth.Location = new System.Drawing.Point(230, 309); this.txtOrgEstMonth.MaxLength = 2; this.txtOrgEstMonth.Name = "txtOrgEstMonth"; this.txtOrgEstMonth.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgEstMonth.Size = new System.Drawing.Size(39, 22); this.txtOrgEstMonth.TabIndex = 9; this.txtOrgEstMonth.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgEstMonth.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgEstMonth.ValidationMask = ""; this.txtOrgEstMonth.ValidCharSet = ""; // // txtOrgEstYear // this.txtOrgEstYear.AllowNull = true; this.txtOrgEstYear.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgEstYear.InvalidCharSet = ""; this.txtOrgEstYear.Location = new System.Drawing.Point(125, 309); this.txtOrgEstYear.MaxLength = 4; this.txtOrgEstYear.Name = "txtOrgEstYear"; this.txtOrgEstYear.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgEstYear.Size = new System.Drawing.Size(96, 22); this.txtOrgEstYear.TabIndex = 8; this.txtOrgEstYear.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgEstYear.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgEstYear.ValidationMask = ""; this.txtOrgEstYear.ValidCharSet = ""; // // label11 // this.label11.Location = new System.Drawing.Point(10, 301); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(105, 31); this.label11.TabIndex = 28; this.label11.Text = "Alapítás év , hónap :"; // // label10 // this.label10.Location = new System.Drawing.Point(10, 268); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(96, 18); this.label10.TabIndex = 27; this.label10.Text = "Kerület :"; // // label9 // this.label9.Location = new System.Drawing.Point(10, 194); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(57, 18); this.label9.TabIndex = 26; this.label9.Text = "Régió :"; // // cmbOrgDistrictSearch // this.cmbOrgDistrictSearch.AllowNull = true; this.cmbOrgDistrictSearch.BreakSort = false; this.cmbOrgDistrictSearch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrgDistrictSearch.Location = new System.Drawing.Point(125, 268); this.cmbOrgDistrictSearch.Name = "cmbOrgDistrictSearch"; this.cmbOrgDistrictSearch.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrgDistrictSearch.Size = new System.Drawing.Size(264, 24); this.cmbOrgDistrictSearch.TabIndex = 7; this.cmbOrgDistrictSearch.ToolBarUse = false; this.cmbOrgDistrictSearch.ValidationErrorMessage = "Érvénytelen karakter!"; // // cmbOrgWorkingArea // this.cmbOrgWorkingArea.AllowNull = false; this.cmbOrgWorkingArea.BreakSort = false; this.cmbOrgWorkingArea.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrgWorkingArea.Location = new System.Drawing.Point(125, 158); this.cmbOrgWorkingArea.Name = "cmbOrgWorkingArea"; this.cmbOrgWorkingArea.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrgWorkingArea.Size = new System.Drawing.Size(264, 24); this.cmbOrgWorkingArea.TabIndex = 4; this.cmbOrgWorkingArea.ToolBarUse = false; this.cmbOrgWorkingArea.ValidationErrorMessage = "Érvénytelen karakter!"; // // label24 // this.label24.Location = new System.Drawing.Point(10, 158); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(124, 19); this.label24.TabIndex = 22; this.label24.Text = "KEF típusa :"; // // label23 // this.label23.Location = new System.Drawing.Point(10, 126); this.label23.Name = "label23"; this.label23.Size = new System.Drawing.Size(105, 18); this.label23.TabIndex = 18; this.label23.Text = "Internet honlap:"; // // txtOrgHomePage // this.txtOrgHomePage.AllowNull = true; this.txtOrgHomePage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgHomePage.InvalidCharSet = ""; this.txtOrgHomePage.Location = new System.Drawing.Point(125, 126); this.txtOrgHomePage.MaxLength = 250; this.txtOrgHomePage.Name = "txtOrgHomePage"; this.txtOrgHomePage.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgHomePage.Size = new System.Drawing.Size(264, 22); this.txtOrgHomePage.TabIndex = 3; this.txtOrgHomePage.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgHomePage.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgHomePage.ValidationMask = ""; this.txtOrgHomePage.ValidCharSet = ""; // // label8 // this.label8.Location = new System.Drawing.Point(10, 27); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(105, 18); this.label8.TabIndex = 0; this.label8.Text = "Szervezet neve:"; // // txtOrganisationName // this.txtOrganisationName.AllowNull = false; this.txtOrganisationName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrganisationName.InvalidCharSet = ""; this.txtOrganisationName.Location = new System.Drawing.Point(125, 27); this.txtOrganisationName.MaxLength = 250; this.txtOrganisationName.Multiline = true; this.txtOrganisationName.Name = "txtOrganisationName"; this.txtOrganisationName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrganisationName.Size = new System.Drawing.Size(264, 56); this.txtOrganisationName.TabIndex = 1; this.txtOrganisationName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrganisationName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrganisationName.ValidationMask = ""; this.txtOrganisationName.ValidCharSet = ""; // // label22 // this.label22.Location = new System.Drawing.Point(10, 92); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(86, 19); this.label22.TabIndex = 16; this.label22.Text = "E-mail cím:"; // // txtOrgEmail // this.txtOrgEmail.AllowNull = true; this.txtOrgEmail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgEmail.InvalidCharSet = ""; this.txtOrgEmail.Location = new System.Drawing.Point(125, 92); this.txtOrgEmail.MaxLength = 250; this.txtOrgEmail.Name = "txtOrgEmail"; this.txtOrgEmail.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgEmail.Size = new System.Drawing.Size(264, 22); this.txtOrgEmail.TabIndex = 2; this.txtOrgEmail.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgEmail.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgEmail.ValidationMask = ""; this.txtOrgEmail.ValidCharSet = ""; // // cmbOrgRegion // this.cmbOrgRegion.AllowNull = false; this.cmbOrgRegion.BreakSort = false; this.cmbOrgRegion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrgRegion.Location = new System.Drawing.Point(125, 231); this.cmbOrgRegion.Name = "cmbOrgRegion"; this.cmbOrgRegion.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrgRegion.Size = new System.Drawing.Size(264, 24); this.cmbOrgRegion.TabIndex = 6; this.cmbOrgRegion.ToolBarUse = false; this.cmbOrgRegion.ValidationErrorMessage = "Érvénytelen karakter!"; this.cmbOrgRegion.SelectedIndexChanged += new System.EventHandler(this.cmbOrgRegion_SelectedIndexChanged); // // label16 // this.label16.Location = new System.Drawing.Point(10, 231); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(57, 18); this.label16.TabIndex = 20; this.label16.Text = "Megye :"; // // label17 // this.label17.Location = new System.Drawing.Point(10, 351); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(124, 46); this.label17.TabIndex = 33; this.label17.Text = "Adatbázis használatának célja:"; // // txtOrgDescription // this.txtOrgDescription.AllowNull = false; this.txtOrgDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgDescription.InvalidCharSet = ""; this.txtOrgDescription.Location = new System.Drawing.Point(139, 351); this.txtOrgDescription.MaxLength = 1000; this.txtOrgDescription.Multiline = true; this.txtOrgDescription.Name = "txtOrgDescription"; this.txtOrgDescription.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgDescription.Size = new System.Drawing.Size(264, 55); this.txtOrgDescription.TabIndex = 12; this.txtOrgDescription.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgDescription.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgDescription.ValidationMask = ""; this.txtOrgDescription.ValidCharSet = ""; // // groupBox2 // this.groupBox2.Controls.Add(this.label21); this.groupBox2.Controls.Add(this.cmbQualification); this.groupBox2.Controls.Add(this.txtCountry); this.groupBox2.Controls.Add(this.label20); this.groupBox2.Controls.Add(this.txtBirthYear); this.groupBox2.Controls.Add(this.label19); this.groupBox2.Controls.Add(this.rbtWoman); this.groupBox2.Controls.Add(this.rbtMan); this.groupBox2.Controls.Add(this.label18); this.groupBox2.Controls.Add(this.label3); this.groupBox2.Controls.Add(this.label1); this.groupBox2.Controls.Add(this.txtLoginName); this.groupBox2.Controls.Add(this.txtUserEmail); this.groupBox2.Controls.Add(this.txtUserName); this.groupBox2.Controls.Add(this.label2); this.groupBox2.Controls.Add(this.txtUserAddress); this.groupBox2.Controls.Add(this.label6); this.groupBox2.Controls.Add(this.txtUserCity); this.groupBox2.Controls.Add(this.txtUserPostCode); this.groupBox2.Controls.Add(this.label5); this.groupBox2.Controls.Add(this.label4); this.groupBox2.Controls.Add(this.txtUserPhone); this.groupBox2.Controls.Add(this.label7); this.groupBox2.Controls.Add(this.txtOrgDescription); this.groupBox2.Controls.Add(this.label17); this.groupBox2.Location = new System.Drawing.Point(432, 9); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(422, 425); this.groupBox2.TabIndex = 1; this.groupBox2.TabStop = false; this.groupBox2.Text = "Felhasználó adatai"; // // label21 // this.label21.Location = new System.Drawing.Point(10, 300); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(124, 44); this.label21.TabIndex = 21; this.label21.Text = "Legmagasabb iskolai végzettsége:"; // // cmbQualification // this.cmbQualification.AllowNull = false; this.cmbQualification.BreakSort = false; this.cmbQualification.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbQualification.Location = new System.Drawing.Point(139, 309); this.cmbQualification.Name = "cmbQualification"; this.cmbQualification.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbQualification.Size = new System.Drawing.Size(264, 24); this.cmbQualification.TabIndex = 11; this.cmbQualification.ToolBarUse = false; this.cmbQualification.ValidationErrorMessage = "Érvénytelen karakter!"; // // txtCountry // this.txtCountry.AllowNull = true; this.txtCountry.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCountry.InvalidCharSet = ""; this.txtCountry.Location = new System.Drawing.Point(139, 272); this.txtCountry.MaxLength = 100; this.txtCountry.Name = "txtCountry"; this.txtCountry.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCountry.Size = new System.Drawing.Size(264, 22); this.txtCountry.TabIndex = 10; this.txtCountry.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCountry.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCountry.ValidationMask = ""; this.txtCountry.ValidCharSet = ""; // // label20 // this.label20.Location = new System.Drawing.Point(10, 277); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(124, 18); this.label20.TabIndex = 19; this.label20.Text = "Ország:"; // // txtBirthYear // this.txtBirthYear.AllowNull = false; this.txtBirthYear.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtBirthYear.InvalidCharSet = ""; this.txtBirthYear.Location = new System.Drawing.Point(139, 106); this.txtBirthYear.MaxLength = 4; this.txtBirthYear.Name = "txtBirthYear"; this.txtBirthYear.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtBirthYear.Size = new System.Drawing.Size(96, 22); this.txtBirthYear.TabIndex = 4; this.txtBirthYear.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtBirthYear.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtBirthYear.ValidationMask = ""; this.txtBirthYear.ValidCharSet = ",0123456789"; // // label19 // this.label19.Location = new System.Drawing.Point(10, 111); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(124, 18); this.label19.TabIndex = 7; this.label19.Text = "Születési év:"; // // rbtWoman // this.rbtWoman.Location = new System.Drawing.Point(211, 83); this.rbtWoman.Name = "rbtWoman"; this.rbtWoman.Size = new System.Drawing.Size(58, 19); this.rbtWoman.TabIndex = 3; this.rbtWoman.Text = "Nõ"; // // rbtMan // this.rbtMan.Checked = true; this.rbtMan.Location = new System.Drawing.Point(139, 83); this.rbtMan.Name = "rbtMan"; this.rbtMan.Size = new System.Drawing.Size(58, 19); this.rbtMan.TabIndex = 2; this.rbtMan.TabStop = true; this.rbtMan.Text = "Férfi"; // // label18 // this.label18.Location = new System.Drawing.Point(10, 83); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(124, 19); this.label18.TabIndex = 4; this.label18.Text = "Neme:"; // // label3 // this.label3.Location = new System.Drawing.Point(10, 166); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(124, 19); this.label3.TabIndex = 11; this.label3.Text = "E-mail cím:"; // // label1 // this.label1.Location = new System.Drawing.Point(10, 28); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(124, 18); this.label1.TabIndex = 0; this.label1.Text = "Bejelentkezési név:"; // // txtLoginName // this.txtLoginName.AllowNull = false; this.txtLoginName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtLoginName.InvalidCharSet = ""; this.txtLoginName.Location = new System.Drawing.Point(139, 23); this.txtLoginName.MaxLength = 50; this.txtLoginName.Name = "txtLoginName"; this.txtLoginName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtLoginName.Size = new System.Drawing.Size(264, 22); this.txtLoginName.TabIndex = 0; this.txtLoginName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtLoginName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtLoginName.ValidationMask = ""; this.txtLoginName.ValidCharSet = ""; // // txtUserEmail // this.txtUserEmail.AllowNull = false; this.txtUserEmail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserEmail.InvalidCharSet = ""; this.txtUserEmail.Location = new System.Drawing.Point(139, 162); this.txtUserEmail.MaxLength = 250; this.txtUserEmail.Name = "txtUserEmail"; this.txtUserEmail.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserEmail.Size = new System.Drawing.Size(264, 22); this.txtUserEmail.TabIndex = 6; this.txtUserEmail.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserEmail.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserEmail.ValidationMask = ""; this.txtUserEmail.ValidCharSet = ""; // // txtUserName // this.txtUserName.AllowNull = false; this.txtUserName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserName.InvalidCharSet = ""; this.txtUserName.Location = new System.Drawing.Point(139, 51); this.txtUserName.MaxLength = 100; this.txtUserName.Name = "txtUserName"; this.txtUserName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserName.Size = new System.Drawing.Size(264, 22); this.txtUserName.TabIndex = 1; this.txtUserName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserName.ValidationMask = ""; this.txtUserName.ValidCharSet = ""; // // label2 // this.label2.Location = new System.Drawing.Point(10, 55); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(124, 19); this.label2.TabIndex = 2; this.label2.Text = "Teljes név:"; // // txtUserAddress // this.txtUserAddress.AllowNull = true; this.txtUserAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserAddress.InvalidCharSet = ""; this.txtUserAddress.Location = new System.Drawing.Point(139, 245); this.txtUserAddress.MaxLength = 100; this.txtUserAddress.Name = "txtUserAddress"; this.txtUserAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserAddress.Size = new System.Drawing.Size(264, 22); this.txtUserAddress.TabIndex = 9; this.txtUserAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserAddress.ValidationMask = ""; this.txtUserAddress.ValidCharSet = ""; // // label6 // this.label6.Location = new System.Drawing.Point(10, 222); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(124, 18); this.label6.TabIndex = 15; this.label6.Text = "Település:"; // // txtUserCity // this.txtUserCity.AllowNull = true; this.txtUserCity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserCity.InvalidCharSet = ""; this.txtUserCity.Location = new System.Drawing.Point(139, 217); this.txtUserCity.MaxLength = 100; this.txtUserCity.Name = "txtUserCity"; this.txtUserCity.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserCity.Size = new System.Drawing.Size(264, 22); this.txtUserCity.TabIndex = 8; this.txtUserCity.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserCity.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserCity.ValidationMask = ""; this.txtUserCity.ValidCharSet = ""; // // txtUserPostCode // this.txtUserPostCode.AllowNull = true; this.txtUserPostCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserPostCode.InvalidCharSet = ""; this.txtUserPostCode.Location = new System.Drawing.Point(139, 189); this.txtUserPostCode.MaxLength = 10; this.txtUserPostCode.Name = "txtUserPostCode"; this.txtUserPostCode.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserPostCode.Size = new System.Drawing.Size(96, 22); this.txtUserPostCode.TabIndex = 7; this.txtUserPostCode.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserPostCode.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserPostCode.ValidationMask = ""; this.txtUserPostCode.ValidCharSet = ""; // // label5 // this.label5.Location = new System.Drawing.Point(10, 194); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(124, 18); this.label5.TabIndex = 13; this.label5.Text = "Irányítószám:"; // // label4 // this.label4.Location = new System.Drawing.Point(10, 138); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(124, 19); this.label4.TabIndex = 9; this.label4.Text = "Telefonszám:"; // // txtUserPhone // this.txtUserPhone.AllowNull = true; this.txtUserPhone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserPhone.InvalidCharSet = ""; this.txtUserPhone.Location = new System.Drawing.Point(139, 134); this.txtUserPhone.MaxLength = 20; this.txtUserPhone.Name = "txtUserPhone"; this.txtUserPhone.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserPhone.Size = new System.Drawing.Size(264, 22); this.txtUserPhone.TabIndex = 5; this.txtUserPhone.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserPhone.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserPhone.ValidationMask = ""; this.txtUserPhone.ValidCharSet = ""; // // label7 // this.label7.Location = new System.Drawing.Point(10, 249); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(124, 19); this.label7.TabIndex = 17; this.label7.Text = "Utca, házszám:"; // // frmKefOrganisationRegistration // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(866, 485); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.Controls.Add(this.pnlBottom); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmKefOrganisationRegistration"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmKefOrganisationRegistration_Load); this.pnlBottom.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.pnlBottom = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.txtDescription = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.cmbStatus = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label16 = new System.Windows.Forms.Label(); this.txtNonregisteredPartners = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label3 = new System.Windows.Forms.Label(); this.cmbResponsible = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label4 = new System.Windows.Forms.Label(); this.cmbCoordinator1 = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label5 = new System.Windows.Forms.Label(); this.cmbCoordinator2 = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label6 = new System.Windows.Forms.Label(); this.cbxActivate = new System.Windows.Forms.CheckBox(); this.label7 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.tabControl = new System.Windows.Forms.TabControl(); this.tabPageBase = new System.Windows.Forms.TabPage(); this.lstAvaiableRegion1 = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.lstSelectedRegion = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.btnNoRegion = new System.Windows.Forms.Button(); this.btnAllRegion = new System.Windows.Forms.Button(); this.btnRemoveRegion = new System.Windows.Forms.Button(); this.label19 = new System.Windows.Forms.Label(); this.label18 = new System.Windows.Forms.Label(); this.label17 = new System.Windows.Forms.Label(); this.txtOrganisation = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtCategory = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtFinishDate = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtStartDate = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label14 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.btnAddRegion = new System.Windows.Forms.Button(); this.tabPageExpert = new System.Windows.Forms.TabPage(); this.dtgExpertDetail = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection2 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colExpertNameDetail = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colEmailDetail = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colAddressDetail = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colPhoneDetail = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActiveDetail = new System.Windows.Forms.DataGridBoolColumn(); this.btnDetailExpert = new System.Windows.Forms.Button(); this.btnRemoveExpert = new System.Windows.Forms.Button(); this.btnAddExpert = new System.Windows.Forms.Button(); this.label10 = new System.Windows.Forms.Label(); this.dtgExpert = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection6 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colExpertName = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colEmail = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colAddress = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colPhone = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActiveExpert = new System.Windows.Forms.DataGridBoolColumn(); this.tabPageAttachment = new System.Windows.Forms.TabPage(); this.btnActivate = new System.Windows.Forms.Button(); this.btnModifyAttachment = new System.Windows.Forms.Button(); this.btnNewAttachment = new System.Windows.Forms.Button(); this.label12 = new System.Windows.Forms.Label(); this.dtgAttachment = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection5 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colNameAtt = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colPath = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colKeywords = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colCreatedDate = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colFileSize = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActiveAtt = new System.Windows.Forms.DataGridBoolColumn(); this.tabPageOrganisation = new System.Windows.Forms.TabPage(); this.dtgOrgDetail = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection3 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colNameOrg = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colRegionOrg = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActiveOrg = new System.Windows.Forms.DataGridBoolColumn(); this.btnDetailOrganisation = new System.Windows.Forms.Button(); this.btnRemoveOrganisation = new System.Windows.Forms.Button(); this.btnAddOrganisation = new System.Windows.Forms.Button(); this.label9 = new System.Windows.Forms.Label(); this.dtgOrg = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.dtgOrgSelected = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.colName = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colRegion = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActive = new System.Windows.Forms.DataGridBoolColumn(); this.tabPageKeyword = new System.Windows.Forms.TabPage(); this.dtgThesaurusDetail = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection7 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colKeywordDetail = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActiveThesaurusDetail = new System.Windows.Forms.DataGridBoolColumn(); this.btnDetailThesaurus = new System.Windows.Forms.Button(); this.btnRemoveThesaurus = new System.Windows.Forms.Button(); this.btnAddThesaurus = new System.Windows.Forms.Button(); this.label15 = new System.Windows.Forms.Label(); this.dtgThesaurus = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection4 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colKeyword = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActiveThesaurus = new System.Windows.Forms.DataGridBoolColumn(); this.label13 = new System.Windows.Forms.Label(); this.pnlBottom.SuspendLayout(); this.tabControl.SuspendLayout(); this.tabPageBase.SuspendLayout(); this.tabPageExpert.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgExpertDetail)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgExpert)).BeginInit(); this.tabPageAttachment.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgAttachment)).BeginInit(); this.tabPageOrganisation.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgOrgDetail)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgOrg)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgOrgSelected)).BeginInit(); this.tabPageKeyword.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgThesaurusDetail)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgThesaurus)).BeginInit(); this.SuspendLayout(); // // pnlBottom // this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 573); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(804, 45); this.pnlBottom.TabIndex = 2; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(705, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(609, 14); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 0; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(804, 46); this.pHeader.TabIndex = 0; this.pHeader.TabStop = false; this.pHeader.Text1 = "Programok"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Program szerkesztése"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // txtDescription // this.txtDescription.AllowNull = false; this.txtDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDescription.InvalidCharSet = ""; this.txtDescription.Location = new System.Drawing.Point(14, 203); this.txtDescription.MaxLength = 5000; this.txtDescription.Multiline = true; this.txtDescription.Name = "txtDescription"; this.txtDescription.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtDescription.Size = new System.Drawing.Size(754, 143); this.txtDescription.TabIndex = 20; this.txtDescription.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDescription.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDescription.ValidationMask = ""; this.txtDescription.ValidCharSet = ""; // // txtName // this.txtName.AllowNull = false; this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtName.InvalidCharSet = ""; this.txtName.Location = new System.Drawing.Point(130, 14); this.txtName.MaxLength = 250; this.txtName.Name = "txtName"; this.txtName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtName.Size = new System.Drawing.Size(580, 22); this.txtName.TabIndex = 1; this.txtName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtName.ValidationMask = ""; this.txtName.ValidCharSet = ""; // // label2 // this.label2.Location = new System.Drawing.Point(14, 185); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(183, 18); this.label2.TabIndex = 19; this.label2.Text = "A program részletes leírása:"; // // label1 // this.label1.Location = new System.Drawing.Point(14, 18); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(106, 19); this.label1.TabIndex = 0; this.label1.Text = "Program neve:"; // // cmbStatus // this.cmbStatus.AllowNull = false; this.cmbStatus.BreakSort = false; this.cmbStatus.Location = new System.Drawing.Point(528, 69); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatus.Size = new System.Drawing.Size(182, 24); this.cmbStatus.TabIndex = 13; this.cmbStatus.ToolBarUse = false; this.cmbStatus.ValidationErrorMessage = "Érvénytelen karakter!"; // // label16 // this.label16.Location = new System.Drawing.Point(418, 74); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(96, 18); this.label16.TabIndex = 12; this.label16.Text = "Státusz:"; // // txtNonregisteredPartners // this.txtNonregisteredPartners.AllowNull = true; this.txtNonregisteredPartners.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtNonregisteredPartners.InvalidCharSet = ""; this.txtNonregisteredPartners.Location = new System.Drawing.Point(14, 272); this.txtNonregisteredPartners.Multiline = true; this.txtNonregisteredPartners.Name = "txtNonregisteredPartners"; this.txtNonregisteredPartners.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtNonregisteredPartners.Size = new System.Drawing.Size(778, 65); this.txtNonregisteredPartners.TabIndex = 7; this.txtNonregisteredPartners.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtNonregisteredPartners.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtNonregisteredPartners.ValidationMask = ""; this.txtNonregisteredPartners.ValidCharSet = ""; // // label3 // this.label3.Location = new System.Drawing.Point(14, 254); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(240, 18); this.label3.TabIndex = 6; this.label3.Text = "Nem regisztrált résztvevõ szervezetek:"; // // cmbResponsible // this.cmbResponsible.AllowNull = true; this.cmbResponsible.BreakSort = false; this.cmbResponsible.Location = new System.Drawing.Point(130, 97); this.cmbResponsible.Name = "cmbResponsible"; this.cmbResponsible.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbResponsible.Size = new System.Drawing.Size(264, 24); this.cmbResponsible.TabIndex = 7; this.cmbResponsible.ToolBarUse = false; this.cmbResponsible.ValidationErrorMessage = "Érvénytelen karakter!"; // // label4 // this.label4.Location = new System.Drawing.Point(14, 102); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(106, 18); this.label4.TabIndex = 6; this.label4.Text = "Felelõs:"; // // cmbCoordinator1 // this.cmbCoordinator1.AllowNull = true; this.cmbCoordinator1.BreakSort = false; this.cmbCoordinator1.Location = new System.Drawing.Point(130, 125); this.cmbCoordinator1.Name = "cmbCoordinator1"; this.cmbCoordinator1.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbCoordinator1.Size = new System.Drawing.Size(264, 24); this.cmbCoordinator1.TabIndex = 9; this.cmbCoordinator1.ToolBarUse = false; this.cmbCoordinator1.ValidationErrorMessage = "Érvénytelen karakter!"; // // label5 // this.label5.Location = new System.Drawing.Point(14, 129); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(106, 19); this.label5.TabIndex = 8; this.label5.Text = "Koordinátor 1:"; // // cmbCoordinator2 // this.cmbCoordinator2.AllowNull = true; this.cmbCoordinator2.BreakSort = false; this.cmbCoordinator2.Location = new System.Drawing.Point(130, 152); this.cmbCoordinator2.Name = "cmbCoordinator2"; this.cmbCoordinator2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbCoordinator2.Size = new System.Drawing.Size(264, 24); this.cmbCoordinator2.TabIndex = 11; this.cmbCoordinator2.ToolBarUse = false; this.cmbCoordinator2.ValidationErrorMessage = "Érvénytelen karakter!"; // // label6 // this.label6.Location = new System.Drawing.Point(14, 157); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(106, 18); this.label6.TabIndex = 10; this.label6.Text = "Koordinátor 2:"; // // cbxActivate // this.cbxActivate.Location = new System.Drawing.Point(528, 152); this.cbxActivate.Name = "cbxActivate"; this.cbxActivate.Size = new System.Drawing.Size(125, 28); this.cbxActivate.TabIndex = 18; this.cbxActivate.Text = "Aktív"; // // label7 // this.label7.Location = new System.Drawing.Point(418, 102); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(105, 18); this.label7.TabIndex = 14; this.label7.Text = "Indulás dátuma:"; // // label8 // this.label8.Location = new System.Drawing.Point(418, 129); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(105, 19); this.label8.TabIndex = 16; this.label8.Text = "Lezárás dátuma:"; // // tabControl // this.tabControl.Controls.Add(this.tabPageBase); this.tabControl.Controls.Add(this.tabPageExpert); this.tabControl.Controls.Add(this.tabPageAttachment); this.tabControl.Controls.Add(this.tabPageOrganisation); this.tabControl.Controls.Add(this.tabPageKeyword); this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControl.Location = new System.Drawing.Point(0, 46); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(804, 527); this.tabControl.TabIndex = 1; // // tabPageBase // this.tabPageBase.Controls.Add(this.lstAvaiableRegion1); this.tabPageBase.Controls.Add(this.lstSelectedRegion); this.tabPageBase.Controls.Add(this.btnNoRegion); this.tabPageBase.Controls.Add(this.btnAllRegion); this.tabPageBase.Controls.Add(this.btnRemoveRegion); this.tabPageBase.Controls.Add(this.label19); this.tabPageBase.Controls.Add(this.label18); this.tabPageBase.Controls.Add(this.label17); this.tabPageBase.Controls.Add(this.txtOrganisation); this.tabPageBase.Controls.Add(this.txtCategory); this.tabPageBase.Controls.Add(this.txtFinishDate); this.tabPageBase.Controls.Add(this.txtStartDate); this.tabPageBase.Controls.Add(this.label14); this.tabPageBase.Controls.Add(this.label11); this.tabPageBase.Controls.Add(this.label1); this.tabPageBase.Controls.Add(this.label2); this.tabPageBase.Controls.Add(this.txtName); this.tabPageBase.Controls.Add(this.txtDescription); this.tabPageBase.Controls.Add(this.label6); this.tabPageBase.Controls.Add(this.cmbCoordinator2); this.tabPageBase.Controls.Add(this.cmbResponsible); this.tabPageBase.Controls.Add(this.label4); this.tabPageBase.Controls.Add(this.cmbCoordinator1); this.tabPageBase.Controls.Add(this.label5); this.tabPageBase.Controls.Add(this.cmbStatus); this.tabPageBase.Controls.Add(this.label16); this.tabPageBase.Controls.Add(this.label7); this.tabPageBase.Controls.Add(this.label8); this.tabPageBase.Controls.Add(this.cbxActivate); this.tabPageBase.Controls.Add(this.btnAddRegion); this.tabPageBase.Location = new System.Drawing.Point(4, 25); this.tabPageBase.Name = "tabPageBase"; this.tabPageBase.Size = new System.Drawing.Size(796, 498); this.tabPageBase.TabIndex = 0; this.tabPageBase.Text = "Alapadatok"; // // lstAvaiableRegion1 // this.lstAvaiableRegion1.AllowNull = true; this.lstAvaiableRegion1.BreakSort = false; this.lstAvaiableRegion1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple; this.lstAvaiableRegion1.Location = new System.Drawing.Point(475, 374); this.lstAvaiableRegion1.Name = "lstAvaiableRegion1"; this.lstAvaiableRegion1.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.lstAvaiableRegion1.Size = new System.Drawing.Size(231, 111); this.lstAvaiableRegion1.TabIndex = 29; this.lstAvaiableRegion1.ToolBarUse = false; this.lstAvaiableRegion1.ValidationErrorMessage = "Érvénytelen karakter!"; this.lstAvaiableRegion1.DoubleClick += new System.EventHandler(this.lstAvaiableRegion1_DoubleClick); // // lstSelectedRegion // this.lstSelectedRegion.AllowNull = false; this.lstSelectedRegion.BreakSort = false; this.lstSelectedRegion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.Simple; this.lstSelectedRegion.Location = new System.Drawing.Point(130, 374); this.lstSelectedRegion.Name = "lstSelectedRegion"; this.lstSelectedRegion.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.lstSelectedRegion.Size = new System.Drawing.Size(230, 111); this.lstSelectedRegion.TabIndex = 23; this.lstSelectedRegion.ToolBarUse = false; this.lstSelectedRegion.ValidationErrorMessage = "Érvénytelen karakter!"; this.lstSelectedRegion.DoubleClick += new System.EventHandler(this.lstSelectedRegion_DoubleClick); // // btnNoRegion // this.btnNoRegion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnNoRegion.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnNoRegion.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnNoRegion.Location = new System.Drawing.Point(376, 459); this.btnNoRegion.Name = "btnNoRegion"; this.btnNoRegion.Size = new System.Drawing.Size(96, 23); this.btnNoRegion.TabIndex = 27; this.btnNoRegion.Text = "Egyik sem>"; this.btnNoRegion.Click += new System.EventHandler(this.btnNoRegion_Click); // // btnAllRegion // this.btnAllRegion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnAllRegion.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnAllRegion.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnAllRegion.Location = new System.Drawing.Point(376, 431); this.btnAllRegion.Name = "btnAllRegion"; this.btnAllRegion.Size = new System.Drawing.Size(96, 23); this.btnAllRegion.TabIndex = 26; this.btnAllRegion.Text = "<Mind"; this.btnAllRegion.Click += new System.EventHandler(this.btnAllRegion_Click); // // btnRemoveRegion // this.btnRemoveRegion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnRemoveRegion.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnRemoveRegion.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnRemoveRegion.Location = new System.Drawing.Point(376, 404); this.btnRemoveRegion.Name = "btnRemoveRegion"; this.btnRemoveRegion.Size = new System.Drawing.Size(96, 23); this.btnRemoveRegion.TabIndex = 25; this.btnRemoveRegion.Text = "Eltávolít>"; this.btnRemoveRegion.Click += new System.EventHandler(this.btnRemoveRegion_Click); // // label19 // this.label19.Location = new System.Drawing.Point(475, 351); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(202, 18); this.label19.TabIndex = 28; this.label19.Text = "Választható megyék:"; // // label18 // this.label18.Location = new System.Drawing.Point(130, 351); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(230, 18); this.label18.TabIndex = 22; this.label18.Text = "Kiválasztott megyék:"; // // label17 // this.label17.Location = new System.Drawing.Point(14, 374); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(106, 18); this.label17.TabIndex = 21; this.label17.Text = "Megyék:"; // // txtOrganisation // this.txtOrganisation.AllowNull = true; this.txtOrganisation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrganisation.InvalidCharSet = ""; this.txtOrganisation.Location = new System.Drawing.Point(130, 42); this.txtOrganisation.MaxLength = 10; this.txtOrganisation.Name = "txtOrganisation"; this.txtOrganisation.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrganisation.ReadOnly = true; this.txtOrganisation.Size = new System.Drawing.Size(580, 22); this.txtOrganisation.TabIndex = 3; this.txtOrganisation.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrganisation.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrganisation.ValidationMask = ""; this.txtOrganisation.ValidCharSet = ""; // // txtCategory // this.txtCategory.AllowNull = true; this.txtCategory.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCategory.InvalidCharSet = ""; this.txtCategory.Location = new System.Drawing.Point(130, 69); this.txtCategory.MaxLength = 10; this.txtCategory.Name = "txtCategory"; this.txtCategory.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCategory.ReadOnly = true; this.txtCategory.Size = new System.Drawing.Size(264, 22); this.txtCategory.TabIndex = 5; this.txtCategory.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCategory.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCategory.ValidationMask = ""; this.txtCategory.ValidCharSet = ""; // // txtFinishDate // this.txtFinishDate.AllowNull = true; this.txtFinishDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFinishDate.InvalidCharSet = ""; this.txtFinishDate.Location = new System.Drawing.Point(528, 125); this.txtFinishDate.MaxLength = 50; this.txtFinishDate.Name = "txtFinishDate"; this.txtFinishDate.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFinishDate.Size = new System.Drawing.Size(182, 22); this.txtFinishDate.TabIndex = 17; this.txtFinishDate.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFinishDate.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFinishDate.ValidationMask = ""; this.txtFinishDate.ValidCharSet = ""; // // txtStartDate // this.txtStartDate.AllowNull = true; this.txtStartDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtStartDate.InvalidCharSet = ""; this.txtStartDate.Location = new System.Drawing.Point(528, 97); this.txtStartDate.MaxLength = 50; this.txtStartDate.Name = "txtStartDate"; this.txtStartDate.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtStartDate.Size = new System.Drawing.Size(182, 22); this.txtStartDate.TabIndex = 15; this.txtStartDate.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtStartDate.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtStartDate.ValidationMask = ""; this.txtStartDate.ValidCharSet = ""; // // label14 // this.label14.Location = new System.Drawing.Point(14, 46); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(106, 19); this.label14.TabIndex = 2; this.label14.Text = "Szervezet:"; // // label11 // this.label11.Location = new System.Drawing.Point(14, 74); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(106, 18); this.label11.TabIndex = 4; this.label11.Text = "Kategória:"; // // btnAddRegion // this.btnAddRegion.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnAddRegion.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnAddRegion.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnAddRegion.Location = new System.Drawing.Point(376, 375); this.btnAddRegion.Name = "btnAddRegion"; this.btnAddRegion.Size = new System.Drawing.Size(96, 24); this.btnAddRegion.TabIndex = 24; this.btnAddRegion.Text = "<Hozzáad"; this.btnAddRegion.Click += new System.EventHandler(this.btnAddRegion_Click); // // tabPageExpert // this.tabPageExpert.Controls.Add(this.dtgExpertDetail); this.tabPageExpert.Controls.Add(this.btnDetailExpert); this.tabPageExpert.Controls.Add(this.btnRemoveExpert); this.tabPageExpert.Controls.Add(this.btnAddExpert); this.tabPageExpert.Controls.Add(this.label10); this.tabPageExpert.Controls.Add(this.dtgExpert); this.tabPageExpert.Location = new System.Drawing.Point(4, 25); this.tabPageExpert.Name = "tabPageExpert"; this.tabPageExpert.Size = new System.Drawing.Size(796, 498); this.tabPageExpert.TabIndex = 2; this.tabPageExpert.Text = "Szakemberek"; // // dtgExpertDetail // this.dtgExpertDetail.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgExpertDetail.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgExpertDetail.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgExpertDetail.CaptionVisible = false; this.dtgExpertDetail.DataMember = ""; this.dtgExpertDetail.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgExpertDetail.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgExpertDetail.Location = new System.Drawing.Point(566, 37); this.dtgExpertDetail.Name = "dtgExpertDetail"; this.dtgExpertDetail.ReadOnly = true; this.dtgExpertDetail.RowHeaderWidth = 3; this.dtgExpertDetail.Size = new System.Drawing.Size(221, 300); this.dtgExpertDetail.TabIndex = 5; this.dtgExpertDetail.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection2}); this.dtgExpertDetail.DoubleClick += new System.EventHandler(this.dtgExpertDetail_DoubleClick); // // customStylesCollection2 // this.customStylesCollection2.DataGrid = this.dtgExpertDetail; this.customStylesCollection2.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colExpertNameDetail, this.colEmailDetail, this.colAddressDetail, this.colPhoneDetail, this.colActiveDetail}); this.customStylesCollection2.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colExpertNameDetail // this.colExpertNameDetail.Format = ""; this.colExpertNameDetail.FormatInfo = null; this.colExpertNameDetail.HeaderText = "Név"; this.colExpertNameDetail.MappingName = "ExpertName"; this.colExpertNameDetail.Width = 75; // // colEmailDetail // this.colEmailDetail.Format = ""; this.colEmailDetail.FormatInfo = null; this.colEmailDetail.HeaderText = "E-mail cím"; this.colEmailDetail.MappingName = "Email1"; this.colEmailDetail.Width = 75; // // colAddressDetail // this.colAddressDetail.Format = ""; this.colAddressDetail.FormatInfo = null; this.colAddressDetail.HeaderText = "Cím"; this.colAddressDetail.MappingName = "Address"; this.colAddressDetail.Width = 75; // // colPhoneDetail // this.colPhoneDetail.Format = ""; this.colPhoneDetail.FormatInfo = null; this.colPhoneDetail.HeaderText = "Telefon"; this.colPhoneDetail.MappingName = "Phone1"; this.colPhoneDetail.Width = 75; // // colActiveDetail // this.colActiveDetail.HeaderText = "Aktív"; this.colActiveDetail.MappingName = "IsActive"; this.colActiveDetail.Width = 75; // // btnDetailExpert // this.btnDetailExpert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDetailExpert.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDetailExpert.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDetailExpert.Location = new System.Drawing.Point(451, 398); this.btnDetailExpert.Name = "btnDetailExpert"; this.btnDetailExpert.Size = new System.Drawing.Size(96, 26); this.btnDetailExpert.TabIndex = 4; this.btnDetailExpert.Text = "Részletek"; this.btnDetailExpert.Click += new System.EventHandler(this.btnDetailExpert_Click); // // btnRemoveExpert // this.btnRemoveExpert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnRemoveExpert.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnRemoveExpert.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnRemoveExpert.Location = new System.Drawing.Point(451, 214); this.btnRemoveExpert.Name = "btnRemoveExpert"; this.btnRemoveExpert.Size = new System.Drawing.Size(96, 23); this.btnRemoveExpert.TabIndex = 3; this.btnRemoveExpert.Text = "< Eltávolít"; this.btnRemoveExpert.Click += new System.EventHandler(this.btnRemoveExpert_Click); // // btnAddExpert // this.btnAddExpert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnAddExpert.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnAddExpert.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnAddExpert.Location = new System.Drawing.Point(451, 182); this.btnAddExpert.Name = "btnAddExpert"; this.btnAddExpert.Size = new System.Drawing.Size(96, 23); this.btnAddExpert.TabIndex = 2; this.btnAddExpert.Text = "Hozzáad >"; this.btnAddExpert.Click += new System.EventHandler(this.btnAddExpert_Click); // // label10 // this.label10.Location = new System.Drawing.Point(14, 14); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(164, 23); this.label10.TabIndex = 0; this.label10.Text = "Résztvevõ szakemberek:"; // // dtgExpert // this.dtgExpert.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgExpert.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgExpert.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgExpert.CaptionVisible = false; this.dtgExpert.DataMember = ""; this.dtgExpert.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgExpert.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgExpert.Location = new System.Drawing.Point(14, 37); this.dtgExpert.Name = "dtgExpert"; this.dtgExpert.ReadOnly = true; this.dtgExpert.RowHeaderWidth = 3; this.dtgExpert.Size = new System.Drawing.Size(428, 300); this.dtgExpert.TabIndex = 1; this.dtgExpert.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection6}); this.dtgExpert.DoubleClick += new System.EventHandler(this.dtgExpert_DoubleClick); // // customStylesCollection6 // this.customStylesCollection6.DataGrid = this.dtgExpert; this.customStylesCollection6.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colExpertName, this.colEmail, this.colAddress, this.colPhone, this.colActiveExpert}); this.customStylesCollection6.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colExpertName // this.colExpertName.Format = ""; this.colExpertName.FormatInfo = null; this.colExpertName.HeaderText = "Név"; this.colExpertName.MappingName = "ExpertName"; this.colExpertName.Width = 75; // // colEmail // this.colEmail.Format = ""; this.colEmail.FormatInfo = null; this.colEmail.HeaderText = "E-mail cím"; this.colEmail.MappingName = "Email1"; this.colEmail.Width = 75; // // colAddress // this.colAddress.Format = ""; this.colAddress.FormatInfo = null; this.colAddress.HeaderText = "Cím"; this.colAddress.MappingName = "Address"; this.colAddress.Width = 75; // // colPhone // this.colPhone.Format = ""; this.colPhone.FormatInfo = null; this.colPhone.HeaderText = "Telefon"; this.colPhone.MappingName = "Phone1"; this.colPhone.Width = 75; // // colActiveExpert // this.colActiveExpert.HeaderText = "Aktív"; this.colActiveExpert.MappingName = "IsActive"; this.colActiveExpert.Width = 75; // // tabPageAttachment // this.tabPageAttachment.Controls.Add(this.btnActivate); this.tabPageAttachment.Controls.Add(this.btnModifyAttachment); this.tabPageAttachment.Controls.Add(this.btnNewAttachment); this.tabPageAttachment.Controls.Add(this.label12); this.tabPageAttachment.Controls.Add(this.dtgAttachment); this.tabPageAttachment.Location = new System.Drawing.Point(4, 25); this.tabPageAttachment.Name = "tabPageAttachment"; this.tabPageAttachment.Size = new System.Drawing.Size(796, 498); this.tabPageAttachment.TabIndex = 3; this.tabPageAttachment.Text = "Dokumentumok"; // // btnActivate // this.btnActivate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnActivate.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnActivate.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnActivate.Location = new System.Drawing.Point(693, 247); this.btnActivate.Name = "btnActivate"; this.btnActivate.Size = new System.Drawing.Size(92, 23); this.btnActivate.TabIndex = 4; this.btnActivate.Text = "Aktiválás"; this.btnActivate.Click += new System.EventHandler(this.btnActivate_Click); // // btnModifyAttachment // this.btnModifyAttachment.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnModifyAttachment.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnModifyAttachment.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnModifyAttachment.Location = new System.Drawing.Point(693, 214); this.btnModifyAttachment.Name = "btnModifyAttachment"; this.btnModifyAttachment.Size = new System.Drawing.Size(92, 23); this.btnModifyAttachment.TabIndex = 3; this.btnModifyAttachment.Text = "Módosítás"; this.btnModifyAttachment.Click += new System.EventHandler(this.btnModifyAttachment_Click); // // btnNewAttachment // this.btnNewAttachment.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnNewAttachment.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnNewAttachment.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnNewAttachment.Location = new System.Drawing.Point(693, 182); this.btnNewAttachment.Name = "btnNewAttachment"; this.btnNewAttachment.Size = new System.Drawing.Size(92, 23); this.btnNewAttachment.TabIndex = 2; this.btnNewAttachment.Text = "Új"; this.btnNewAttachment.Click += new System.EventHandler(this.btnNewAttachment_Click); // // label12 // this.label12.Location = new System.Drawing.Point(14, 14); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(164, 23); this.label12.TabIndex = 0; this.label12.Text = "Csatolt dokumentumok:"; // // dtgAttachment // this.dtgAttachment.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgAttachment.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgAttachment.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgAttachment.CaptionVisible = false; this.dtgAttachment.DataMember = ""; this.dtgAttachment.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgAttachment.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgAttachment.Location = new System.Drawing.Point(14, 37); this.dtgAttachment.Name = "dtgAttachment"; this.dtgAttachment.ReadOnly = true; this.dtgAttachment.RowHeaderWidth = 3; this.dtgAttachment.Size = new System.Drawing.Size(668, 300); this.dtgAttachment.TabIndex = 1; this.dtgAttachment.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection5}); this.dtgAttachment.DoubleClick += new System.EventHandler(this.dtgAttachment_DoubleClick); // // customStylesCollection5 // this.customStylesCollection5.DataGrid = this.dtgAttachment; this.customStylesCollection5.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colNameAtt, this.colPath, this.colKeywords, this.colCreatedDate, this.colFileSize, this.colActiveAtt}); this.customStylesCollection5.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colNameAtt // this.colNameAtt.Format = ""; this.colNameAtt.FormatInfo = null; this.colNameAtt.HeaderText = "Név"; this.colNameAtt.MappingName = "Name"; this.colNameAtt.Width = 150; // // colPath // this.colPath.Format = ""; this.colPath.FormatInfo = null; this.colPath.HeaderText = "Fájl"; this.colPath.MappingName = "Path"; this.colPath.Width = 125; // // colKeywords // this.colKeywords.Format = ""; this.colKeywords.FormatInfo = null; this.colKeywords.HeaderText = "Kulcsszavak"; this.colKeywords.MappingName = "Keywords"; this.colKeywords.Width = 75; // // colCreatedDate // this.colCreatedDate.Format = ""; this.colCreatedDate.FormatInfo = null; this.colCreatedDate.HeaderText = "Létrehozás dátuma"; this.colCreatedDate.MappingName = "CreatedDate"; this.colCreatedDate.Width = 75; // // colFileSize // this.colFileSize.Format = ""; this.colFileSize.FormatInfo = null; this.colFileSize.HeaderText = "Méret"; this.colFileSize.MappingName = "nFileSize"; this.colFileSize.Width = 75; // // colActiveAtt // this.colActiveAtt.HeaderText = "Aktív"; this.colActiveAtt.MappingName = "IsActive"; this.colActiveAtt.Width = 75; // // tabPageOrganisation // this.tabPageOrganisation.Controls.Add(this.dtgOrgDetail); this.tabPageOrganisation.Controls.Add(this.btnDetailOrganisation); this.tabPageOrganisation.Controls.Add(this.btnRemoveOrganisation); this.tabPageOrganisation.Controls.Add(this.btnAddOrganisation); this.tabPageOrganisation.Controls.Add(this.label9); this.tabPageOrganisation.Controls.Add(this.dtgOrg); this.tabPageOrganisation.Controls.Add(this.label3); this.tabPageOrganisation.Controls.Add(this.txtNonregisteredPartners); this.tabPageOrganisation.Location = new System.Drawing.Point(4, 25); this.tabPageOrganisation.Name = "tabPageOrganisation"; this.tabPageOrganisation.Size = new System.Drawing.Size(796, 498); this.tabPageOrganisation.TabIndex = 1; this.tabPageOrganisation.Text = "Szervezetek"; // // dtgOrgDetail // this.dtgOrgDetail.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgOrgDetail.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgOrgDetail.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgOrgDetail.CaptionVisible = false; this.dtgOrgDetail.DataMember = ""; this.dtgOrgDetail.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgOrgDetail.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgOrgDetail.Location = new System.Drawing.Point(557, 37); this.dtgOrgDetail.Name = "dtgOrgDetail"; this.dtgOrgDetail.ReadOnly = true; this.dtgOrgDetail.RowHeaderWidth = 3; this.dtgOrgDetail.Size = new System.Drawing.Size(235, 198); this.dtgOrgDetail.TabIndex = 5; this.dtgOrgDetail.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection3}); this.dtgOrgDetail.DoubleClick += new System.EventHandler(this.dtgOrgDetail_DoubleClick); // // customStylesCollection3 // this.customStylesCollection3.DataGrid = this.dtgOrgDetail; this.customStylesCollection3.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colNameOrg, this.colRegionOrg, this.colActiveOrg}); this.customStylesCollection3.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colNameOrg // this.colNameOrg.Format = ""; this.colNameOrg.FormatInfo = null; this.colNameOrg.HeaderText = "Szervezet neve"; this.colNameOrg.MappingName = "Name"; this.colNameOrg.Width = 175; // // colRegionOrg // this.colRegionOrg.Format = ""; this.colRegionOrg.FormatInfo = null; this.colRegionOrg.HeaderText = "Régió"; this.colRegionOrg.MappingName = "RegionName"; this.colRegionOrg.Width = 75; // // colActiveOrg // this.colActiveOrg.HeaderText = "Aktív"; this.colActiveOrg.MappingName = "IsActive"; this.colActiveOrg.Width = 75; // // btnDetailOrganisation // this.btnDetailOrganisation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDetailOrganisation.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDetailOrganisation.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDetailOrganisation.Location = new System.Drawing.Point(446, 343); this.btnDetailOrganisation.Name = "btnDetailOrganisation"; this.btnDetailOrganisation.Size = new System.Drawing.Size(96, 23); this.btnDetailOrganisation.TabIndex = 4; this.btnDetailOrganisation.Text = "Részletek"; this.btnDetailOrganisation.Click += new System.EventHandler(this.btnDetailOrganisation_Click); // // btnRemoveOrganisation // this.btnRemoveOrganisation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnRemoveOrganisation.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnRemoveOrganisation.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnRemoveOrganisation.Location = new System.Drawing.Point(446, 214); this.btnRemoveOrganisation.Name = "btnRemoveOrganisation"; this.btnRemoveOrganisation.Size = new System.Drawing.Size(96, 23); this.btnRemoveOrganisation.TabIndex = 3; this.btnRemoveOrganisation.Text = "< Eltávolít"; this.btnRemoveOrganisation.Click += new System.EventHandler(this.btnRemoveOrganisation_Click); // // btnAddOrganisation // this.btnAddOrganisation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnAddOrganisation.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnAddOrganisation.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnAddOrganisation.Location = new System.Drawing.Point(446, 182); this.btnAddOrganisation.Name = "btnAddOrganisation"; this.btnAddOrganisation.Size = new System.Drawing.Size(96, 23); this.btnAddOrganisation.TabIndex = 2; this.btnAddOrganisation.Text = "Hozzáad >"; this.btnAddOrganisation.Click += new System.EventHandler(this.btnAddOrganisation_Click); // // label9 // this.label9.Location = new System.Drawing.Point(14, 14); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(212, 23); this.label9.TabIndex = 0; this.label9.Text = "Regisztrált résztvevõ szervezetek:"; // // dtgOrg // this.dtgOrg.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgOrg.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgOrg.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgOrg.CaptionVisible = false; this.dtgOrg.DataMember = ""; this.dtgOrg.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgOrg.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgOrg.Location = new System.Drawing.Point(14, 37); this.dtgOrg.Name = "dtgOrg"; this.dtgOrg.ReadOnly = true; this.dtgOrg.RowHeaderWidth = 3; this.dtgOrg.Size = new System.Drawing.Size(428, 198); this.dtgOrg.TabIndex = 1; this.dtgOrg.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgOrg.DoubleClick += new System.EventHandler(this.dtgOrg_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgOrg; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colName, this.colRegion, this.colActive}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // dtgOrgSelected // this.dtgOrgSelected.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgOrgSelected.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgOrgSelected.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgOrgSelected.CaptionVisible = false; this.dtgOrgSelected.DataMember = ""; this.dtgOrgSelected.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgOrgSelected.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgOrgSelected.Location = new System.Drawing.Point(472, 32); this.dtgOrgSelected.Name = "dtgOrgSelected"; this.dtgOrgSelected.ReadOnly = true; this.dtgOrgSelected.RowHeaderWidth = 3; this.dtgOrgSelected.Size = new System.Drawing.Size(160, 176); this.dtgOrgSelected.TabIndex = 8; this.dtgOrgSelected.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); // // colName // this.colName.Format = ""; this.colName.FormatInfo = null; this.colName.HeaderText = "Szervezet neve"; this.colName.MappingName = "Name"; this.colName.Width = 175; // // colRegion // this.colRegion.Format = ""; this.colRegion.FormatInfo = null; this.colRegion.HeaderText = "Régió"; this.colRegion.MappingName = "RegionName"; this.colRegion.Width = 75; // // colActive // this.colActive.HeaderText = "Aktív"; this.colActive.MappingName = "IsActive"; this.colActive.Width = 75; // // tabPageKeyword // this.tabPageKeyword.Controls.Add(this.dtgThesaurusDetail); this.tabPageKeyword.Controls.Add(this.btnDetailThesaurus); this.tabPageKeyword.Controls.Add(this.btnRemoveThesaurus); this.tabPageKeyword.Controls.Add(this.btnAddThesaurus); this.tabPageKeyword.Controls.Add(this.label15); this.tabPageKeyword.Controls.Add(this.dtgThesaurus); this.tabPageKeyword.Location = new System.Drawing.Point(4, 25); this.tabPageKeyword.Name = "tabPageKeyword"; this.tabPageKeyword.Size = new System.Drawing.Size(796, 498); this.tabPageKeyword.TabIndex = 4; this.tabPageKeyword.Text = "Tezaurusz"; // // dtgThesaurusDetail // this.dtgThesaurusDetail.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgThesaurusDetail.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgThesaurusDetail.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgThesaurusDetail.CaptionVisible = false; this.dtgThesaurusDetail.DataMember = ""; this.dtgThesaurusDetail.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgThesaurusDetail.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgThesaurusDetail.Location = new System.Drawing.Point(557, 38); this.dtgThesaurusDetail.Name = "dtgThesaurusDetail"; this.dtgThesaurusDetail.ReadOnly = true; this.dtgThesaurusDetail.RowHeaderWidth = 3; this.dtgThesaurusDetail.Size = new System.Drawing.Size(230, 300); this.dtgThesaurusDetail.TabIndex = 5; this.dtgThesaurusDetail.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection7}); this.dtgThesaurusDetail.DoubleClick += new System.EventHandler(this.dtgThesaurusDetail_DoubleClick); // // customStylesCollection7 // this.customStylesCollection7.DataGrid = this.dtgThesaurusDetail; this.customStylesCollection7.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colKeywordDetail, this.colActiveThesaurusDetail}); this.customStylesCollection7.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colKeywordDetail // this.colKeywordDetail.Format = ""; this.colKeywordDetail.FormatInfo = null; this.colKeywordDetail.HeaderText = "Vezérszó"; this.colKeywordDetail.MappingName = "Keyword"; this.colKeywordDetail.Width = 75; // // colActiveThesaurusDetail // this.colActiveThesaurusDetail.HeaderText = "Aktív"; this.colActiveThesaurusDetail.MappingName = "IsActive"; this.colActiveThesaurusDetail.Width = 75; // // btnDetailThesaurus // this.btnDetailThesaurus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDetailThesaurus.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDetailThesaurus.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDetailThesaurus.Location = new System.Drawing.Point(451, 313); this.btnDetailThesaurus.Name = "btnDetailThesaurus"; this.btnDetailThesaurus.Size = new System.Drawing.Size(96, 24); this.btnDetailThesaurus.TabIndex = 4; this.btnDetailThesaurus.Text = "Részletek"; this.btnDetailThesaurus.Click += new System.EventHandler(this.btnDetailThesaurus_Click); // // btnRemoveThesaurus // this.btnRemoveThesaurus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnRemoveThesaurus.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnRemoveThesaurus.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnRemoveThesaurus.Location = new System.Drawing.Point(451, 214); this.btnRemoveThesaurus.Name = "btnRemoveThesaurus"; this.btnRemoveThesaurus.Size = new System.Drawing.Size(96, 24); this.btnRemoveThesaurus.TabIndex = 3; this.btnRemoveThesaurus.Text = "< Eltávolít"; this.btnRemoveThesaurus.Click += new System.EventHandler(this.btnRemoveThesaurus_Click); // // btnAddThesaurus // this.btnAddThesaurus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnAddThesaurus.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnAddThesaurus.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnAddThesaurus.Location = new System.Drawing.Point(451, 182); this.btnAddThesaurus.Name = "btnAddThesaurus"; this.btnAddThesaurus.Size = new System.Drawing.Size(96, 23); this.btnAddThesaurus.TabIndex = 2; this.btnAddThesaurus.Text = "Hozzáad >"; this.btnAddThesaurus.Click += new System.EventHandler(this.btnAddThesaurus_Click); // // label15 // this.label15.Location = new System.Drawing.Point(14, 15); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(164, 23); this.label15.TabIndex = 0; this.label15.Text = "Tezaurusz szócikkek:"; // // dtgThesaurus // this.dtgThesaurus.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgThesaurus.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgThesaurus.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgThesaurus.CaptionVisible = false; this.dtgThesaurus.DataMember = ""; this.dtgThesaurus.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgThesaurus.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgThesaurus.Location = new System.Drawing.Point(14, 38); this.dtgThesaurus.Name = "dtgThesaurus"; this.dtgThesaurus.ReadOnly = true; this.dtgThesaurus.RowHeaderWidth = 3; this.dtgThesaurus.Size = new System.Drawing.Size(428, 300); this.dtgThesaurus.TabIndex = 1; this.dtgThesaurus.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection4}); this.dtgThesaurus.DoubleClick += new System.EventHandler(this.dtgThesaurus_DoubleClick); // // customStylesCollection4 // this.customStylesCollection4.DataGrid = this.dtgThesaurus; this.customStylesCollection4.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colKeyword, this.colActiveThesaurus}); this.customStylesCollection4.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colKeyword // this.colKeyword.Format = ""; this.colKeyword.FormatInfo = null; this.colKeyword.HeaderText = "Vezérszó"; this.colKeyword.MappingName = "Keyword"; this.colKeyword.Width = 200; // // colActiveThesaurus // this.colActiveThesaurus.HeaderText = "Aktív"; this.colActiveThesaurus.MappingName = "IsActive"; this.colActiveThesaurus.Width = 75; // // label13 // this.label13.Location = new System.Drawing.Point(0, 0); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(100, 23); this.label13.TabIndex = 0; // // frmProgramEdit // this.AcceptButton = this.btnOk; this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(804, 618); this.Controls.Add(this.tabControl); this.Controls.Add(this.pHeader); this.Controls.Add(this.pnlBottom); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmProgramEdit"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Closing += new System.ComponentModel.CancelEventHandler(this.frmProgramEdit_Closing); this.Load += new System.EventHandler(this.frmProgramEdit_Load); this.pnlBottom.ResumeLayout(false); this.tabControl.ResumeLayout(false); this.tabPageBase.ResumeLayout(false); this.tabPageBase.PerformLayout(); this.tabPageExpert.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dtgExpertDetail)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgExpert)).EndInit(); this.tabPageAttachment.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dtgAttachment)).EndInit(); this.tabPageOrganisation.ResumeLayout(false); this.tabPageOrganisation.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgOrgDetail)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgOrg)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgOrgSelected)).EndInit(); this.tabPageKeyword.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dtgThesaurusDetail)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgThesaurus)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.txtCreatedDate = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtSize = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtUrl = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtKeywords = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtPublishedYear = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtPublisher = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtAuthor = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.cbxActivate = new System.Windows.Forms.CheckBox(); this.btnAttachmentUrl = new System.Windows.Forms.Button(); this.label9 = new System.Windows.Forms.Label(); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.pnlBottom = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.txtDescription = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label1 = new System.Windows.Forms.Label(); this.label17 = new System.Windows.Forms.Label(); this.label15 = new System.Windows.Forms.Label(); this.label14 = new System.Windows.Forms.Label(); this.label12 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.cmbKefFileType = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.pnlBottom.SuspendLayout(); this.SuspendLayout(); // // txtCreatedDate // this.txtCreatedDate.AllowNull = true; this.txtCreatedDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCreatedDate.InvalidCharSet = ""; this.txtCreatedDate.Location = new System.Drawing.Point(182, 406); this.txtCreatedDate.MaxLength = 40; this.txtCreatedDate.Name = "txtCreatedDate"; this.txtCreatedDate.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCreatedDate.ReadOnly = true; this.txtCreatedDate.Size = new System.Drawing.Size(140, 22); this.txtCreatedDate.TabIndex = 10; this.txtCreatedDate.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCreatedDate.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCreatedDate.ValidationMask = ""; this.txtCreatedDate.ValidCharSet = ""; // // txtSize // this.txtSize.AllowNull = true; this.txtSize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSize.InvalidCharSet = ""; this.txtSize.Location = new System.Drawing.Point(182, 138); this.txtSize.Name = "txtSize"; this.txtSize.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSize.ReadOnly = true; this.txtSize.Size = new System.Drawing.Size(140, 22); this.txtSize.TabIndex = 4; this.txtSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtSize.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtSize.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSize.ValidationMask = ""; this.txtSize.ValidCharSet = ""; // // txtUrl // this.txtUrl.AllowNull = false; this.txtUrl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUrl.InvalidCharSet = ""; this.txtUrl.Location = new System.Drawing.Point(182, 111); this.txtUrl.MaxLength = 500; this.txtUrl.Name = "txtUrl"; this.txtUrl.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUrl.Size = new System.Drawing.Size(394, 22); this.txtUrl.TabIndex = 3; this.txtUrl.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUrl.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUrl.ValidationMask = ""; this.txtUrl.ValidCharSet = ""; // // txtKeywords // this.txtKeywords.AllowNull = true; this.txtKeywords.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKeywords.InvalidCharSet = ""; this.txtKeywords.Location = new System.Drawing.Point(182, 378); this.txtKeywords.MaxLength = 100; this.txtKeywords.Name = "txtKeywords"; this.txtKeywords.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKeywords.Size = new System.Drawing.Size(437, 22); this.txtKeywords.TabIndex = 9; this.txtKeywords.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKeywords.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKeywords.ValidationMask = ""; this.txtKeywords.ValidCharSet = ""; // // txtPublishedYear // this.txtPublishedYear.AllowNull = true; this.txtPublishedYear.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPublishedYear.InvalidCharSet = ""; this.txtPublishedYear.Location = new System.Drawing.Point(182, 351); this.txtPublishedYear.MaxLength = 4; this.txtPublishedYear.Name = "txtPublishedYear"; this.txtPublishedYear.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPublishedYear.Size = new System.Drawing.Size(140, 22); this.txtPublishedYear.TabIndex = 8; this.txtPublishedYear.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPublishedYear.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPublishedYear.ValidationMask = ""; this.txtPublishedYear.ValidCharSet = ""; // // txtPublisher // this.txtPublisher.AllowNull = true; this.txtPublisher.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPublisher.InvalidCharSet = ""; this.txtPublisher.Location = new System.Drawing.Point(182, 295); this.txtPublisher.MaxLength = 500; this.txtPublisher.Multiline = true; this.txtPublisher.Name = "txtPublisher"; this.txtPublisher.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPublisher.Size = new System.Drawing.Size(437, 51); this.txtPublisher.TabIndex = 7; this.txtPublisher.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPublisher.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPublisher.ValidationMask = ""; this.txtPublisher.ValidCharSet = ""; // // txtAuthor // this.txtAuthor.AllowNull = true; this.txtAuthor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtAuthor.InvalidCharSet = ""; this.txtAuthor.Location = new System.Drawing.Point(182, 234); this.txtAuthor.MaxLength = 1000; this.txtAuthor.Multiline = true; this.txtAuthor.Name = "txtAuthor"; this.txtAuthor.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAuthor.Size = new System.Drawing.Size(437, 56); this.txtAuthor.TabIndex = 6; this.txtAuthor.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAuthor.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAuthor.ValidationMask = ""; this.txtAuthor.ValidCharSet = ""; // // txtName // this.txtName.AllowNull = false; this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtName.InvalidCharSet = ""; this.txtName.Location = new System.Drawing.Point(182, 83); this.txtName.MaxLength = 250; this.txtName.Name = "txtName"; this.txtName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtName.Size = new System.Drawing.Size(437, 22); this.txtName.TabIndex = 2; this.txtName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtName.ValidationMask = ""; this.txtName.ValidCharSet = ""; // // label3 // this.label3.Location = new System.Drawing.Point(19, 406); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(144, 19); this.label3.TabIndex = 40; this.label3.Text = "Feltöltés dátuma:"; // // label2 // this.label2.Location = new System.Drawing.Point(19, 138); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(159, 19); this.label2.TabIndex = 28; this.label2.Text = "Csatolt fájl mérete (byte):"; // // cbxActivate // this.cbxActivate.Location = new System.Drawing.Point(182, 434); this.cbxActivate.Name = "cbxActivate"; this.cbxActivate.Size = new System.Drawing.Size(125, 28); this.cbxActivate.TabIndex = 11; this.cbxActivate.Text = "Aktuális"; this.cbxActivate.Visible = false; // // btnAttachmentUrl // this.btnAttachmentUrl.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnAttachmentUrl.Location = new System.Drawing.Point(590, 111); this.btnAttachmentUrl.Name = "btnAttachmentUrl"; this.btnAttachmentUrl.Size = new System.Drawing.Size(29, 26); this.btnAttachmentUrl.TabIndex = 27; this.btnAttachmentUrl.Text = "..."; this.btnAttachmentUrl.Click += new System.EventHandler(this.btnAttachmentUrl_Click); // // label9 // this.label9.Location = new System.Drawing.Point(19, 111); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(125, 18); this.label9.TabIndex = 25; this.label9.Text = "Csatolt fájl:"; // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(633, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "KEF"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Csatolt dokumentum szerkesztése"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // pnlBottom // this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 463); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(633, 46); this.pnlBottom.TabIndex = 43; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(535, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(439, 14); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 0; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // txtDescription // this.txtDescription.AllowNull = false; this.txtDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDescription.InvalidCharSet = ""; this.txtDescription.Location = new System.Drawing.Point(182, 165); this.txtDescription.MaxLength = 1000; this.txtDescription.Multiline = true; this.txtDescription.Name = "txtDescription"; this.txtDescription.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDescription.Size = new System.Drawing.Size(437, 65); this.txtDescription.TabIndex = 5; this.txtDescription.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDescription.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDescription.ValidationMask = ""; this.txtDescription.ValidCharSet = ""; // // label1 // this.label1.Location = new System.Drawing.Point(19, 378); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(125, 19); this.label1.TabIndex = 38; this.label1.Text = "Kulcsszavak:"; // // label17 // this.label17.Location = new System.Drawing.Point(19, 351); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(125, 18); this.label17.TabIndex = 36; this.label17.Text = "Megjelenés éve:"; // // label15 // this.label15.Location = new System.Drawing.Point(19, 295); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(125, 19); this.label15.TabIndex = 34; this.label15.Text = "Kiadó:"; // // label14 // this.label14.Location = new System.Drawing.Point(19, 240); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(125, 18); this.label14.TabIndex = 32; this.label14.Text = "Szerzõ:"; // // label12 // this.label12.Location = new System.Drawing.Point(19, 83); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(125, 19); this.label12.TabIndex = 23; this.label12.Text = "Dokumentum neve:"; // // label13 // this.label13.Location = new System.Drawing.Point(19, 166); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(125, 19); this.label13.TabIndex = 30; this.label13.Text = "Leírás:"; // // label4 // this.label4.Location = new System.Drawing.Point(19, 55); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(125, 19); this.label4.TabIndex = 44; this.label4.Text = "Dokumentum típusa :"; // // cmbKefFileType // this.cmbKefFileType.AllowNull = false; this.cmbKefFileType.BreakSort = false; this.cmbKefFileType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbKefFileType.Location = new System.Drawing.Point(182, 54); this.cmbKefFileType.Name = "cmbKefFileType"; this.cmbKefFileType.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbKefFileType.Size = new System.Drawing.Size(250, 24); this.cmbKefFileType.TabIndex = 1; this.cmbKefFileType.ToolBarUse = false; this.cmbKefFileType.ValidationErrorMessage = "Érvénytelen karakter!"; // // frmKefFilesEdit // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(633, 509); this.Controls.Add(this.cmbKefFileType); this.Controls.Add(this.label4); this.Controls.Add(this.txtCreatedDate); this.Controls.Add(this.txtSize); this.Controls.Add(this.txtUrl); this.Controls.Add(this.txtKeywords); this.Controls.Add(this.txtPublishedYear); this.Controls.Add(this.txtPublisher); this.Controls.Add(this.txtAuthor); this.Controls.Add(this.txtName); this.Controls.Add(this.txtDescription); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.cbxActivate); this.Controls.Add(this.btnAttachmentUrl); this.Controls.Add(this.label9); this.Controls.Add(this.pHeader); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.label1); this.Controls.Add(this.label17); this.Controls.Add(this.label15); this.Controls.Add(this.label14); this.Controls.Add(this.label12); this.Controls.Add(this.label13); this.Name = "frmKefFilesEdit"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmKefFilesEdit_Load); this.pnlBottom.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTemplateDetailEdit)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.pnlBottom = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.txtID = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtQuestion = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.cmbDataType = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label1 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.cmbLayout = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.grpDisplayOptions = new System.Windows.Forms.GroupBox(); this.cmbPage = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.cbxIsFilterCondition = new System.Windows.Forms.CheckBox(); this.cbxActivate = new System.Windows.Forms.CheckBox(); this.label5 = new System.Windows.Forms.Label(); this.txtOrder = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label6 = new System.Windows.Forms.Label(); this.txtDescription = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label7 = new System.Windows.Forms.Label(); this.grpValidation = new System.Windows.Forms.GroupBox(); this.txtRegExp = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label12 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.txtExpectedFormat = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtTo = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label10 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.txtFrom = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label8 = new System.Windows.Forms.Label(); this.txtMaxLength = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.cbxMandatory = new System.Windows.Forms.CheckBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.btnListItemInsert = new System.Windows.Forms.Button(); this.btnListItemDelete = new System.Windows.Forms.Button(); this.rbtOrderByItemIndex = new System.Windows.Forms.RadioButton(); this.rbtOrderByName = new System.Windows.Forms.RadioButton(); this.btnListItemDown = new System.Windows.Forms.Button(); this.lvDetailListItems = new System.Windows.Forms.ListView(); this.colListItemName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.btnListItemUp = new System.Windows.Forms.Button(); this.label13 = new System.Windows.Forms.Label(); this.label14 = new System.Windows.Forms.Label(); this.txtControlWidth = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtControlHeight = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.pnlBottom.SuspendLayout(); this.grpDisplayOptions.SuspendLayout(); this.grpValidation.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(910, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Kérdések"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Kérdés szerkesztése"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // pnlBottom // this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 646); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(910, 47); this.pnlBottom.TabIndex = 14; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(811, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(715, 14); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 0; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // label2 // this.label2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.label2.Location = new System.Drawing.Point(10, 55); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(96, 22); this.label2.TabIndex = 1; this.label2.Text = "Azonosító:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtID // this.txtID.AllowNull = false; this.txtID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtID.InvalidCharSet = ""; this.txtID.Location = new System.Drawing.Point(163, 55); this.txtID.MaxLength = 50; this.txtID.Name = "txtID"; this.txtID.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtID.Size = new System.Drawing.Size(259, 22); this.txtID.TabIndex = 2; this.txtID.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtID.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtID.ValidationMask = ""; this.txtID.ValidCharSet = ""; // // txtQuestion // this.txtQuestion.AllowNull = false; this.txtQuestion.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtQuestion.InvalidCharSet = ""; this.txtQuestion.Location = new System.Drawing.Point(163, 85); this.txtQuestion.Multiline = true; this.txtQuestion.Name = "txtQuestion"; this.txtQuestion.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtQuestion.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtQuestion.Size = new System.Drawing.Size(730, 69); this.txtQuestion.TabIndex = 4; this.txtQuestion.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtQuestion.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtQuestion.ValidationMask = ""; this.txtQuestion.ValidCharSet = ""; // // cmbDataType // this.cmbDataType.AllowNull = false; this.cmbDataType.BreakSort = false; this.cmbDataType.Location = new System.Drawing.Point(163, 239); this.cmbDataType.Name = "cmbDataType"; this.cmbDataType.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbDataType.Size = new System.Drawing.Size(173, 24); this.cmbDataType.TabIndex = 8; this.cmbDataType.ToolBarUse = false; this.cmbDataType.ValidationErrorMessage = "Érvénytelen karakter!"; // // label1 // this.label1.Location = new System.Drawing.Point(10, 85); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(136, 22); this.label1.TabIndex = 3; this.label1.Text = "Kérdés szövege:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label3 // this.label3.Location = new System.Drawing.Point(10, 240); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(96, 22); this.label3.TabIndex = 7; this.label3.Text = "Adat típus:"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label4 // this.label4.Location = new System.Drawing.Point(10, 268); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(146, 22); this.label4.TabIndex = 9; this.label4.Text = "Megjelenítési típus:"; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cmbLayout // this.cmbLayout.AllowNull = false; this.cmbLayout.BreakSort = false; this.cmbLayout.Location = new System.Drawing.Point(163, 270); this.cmbLayout.Name = "cmbLayout"; this.cmbLayout.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbLayout.Size = new System.Drawing.Size(173, 24); this.cmbLayout.TabIndex = 10; this.cmbLayout.ToolBarUse = false; this.cmbLayout.ValidationErrorMessage = "Érvénytelen karakter!"; // // grpDisplayOptions // this.grpDisplayOptions.Controls.Add(this.cmbPage); this.grpDisplayOptions.Controls.Add(this.cbxIsFilterCondition); this.grpDisplayOptions.Controls.Add(this.cbxActivate); this.grpDisplayOptions.Controls.Add(this.label5); this.grpDisplayOptions.Controls.Add(this.txtOrder); this.grpDisplayOptions.Controls.Add(this.label6); this.grpDisplayOptions.Location = new System.Drawing.Point(10, 295); this.grpDisplayOptions.Name = "grpDisplayOptions"; this.grpDisplayOptions.Size = new System.Drawing.Size(489, 111); this.grpDisplayOptions.TabIndex = 11; this.grpDisplayOptions.TabStop = false; this.grpDisplayOptions.Text = "Megjelenés"; // // cmbPage // this.cmbPage.AllowNull = false; this.cmbPage.BreakSort = false; this.cmbPage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbPage.Location = new System.Drawing.Point(154, 18); this.cmbPage.Name = "cmbPage"; this.cmbPage.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbPage.Size = new System.Drawing.Size(316, 24); this.cmbPage.TabIndex = 9; this.cmbPage.ToolBarUse = false; this.cmbPage.ValidationErrorMessage = "Érvénytelen karakter!"; // // cbxIsFilterCondition // this.cbxIsFilterCondition.Location = new System.Drawing.Point(221, 74); this.cbxIsFilterCondition.Name = "cbxIsFilterCondition"; this.cbxIsFilterCondition.Size = new System.Drawing.Size(249, 28); this.cbxIsFilterCondition.TabIndex = 5; this.cbxIsFilterCondition.Text = "Szerepelhet-e szûrési feltételként"; // // cbxActivate // this.cbxActivate.Checked = true; this.cbxActivate.CheckState = System.Windows.Forms.CheckState.Checked; this.cbxActivate.Location = new System.Drawing.Point(154, 74); this.cbxActivate.Name = "cbxActivate"; this.cbxActivate.Size = new System.Drawing.Size(67, 28); this.cbxActivate.TabIndex = 2; this.cbxActivate.Text = "Aktív"; // // label5 // this.label5.Location = new System.Drawing.Point(19, 24); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(96, 22); this.label5.TabIndex = 0; this.label5.Text = "Lap sorszáma:"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrder // this.txtOrder.AllowNull = false; this.txtOrder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrder.InvalidCharSet = ""; this.txtOrder.Location = new System.Drawing.Point(154, 49); this.txtOrder.MaxLength = 50; this.txtOrder.Name = "txtOrder"; this.txtOrder.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrder.Size = new System.Drawing.Size(67, 22); this.txtOrder.TabIndex = 4; this.txtOrder.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtOrder.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrder.ValidationMask = ""; this.txtOrder.ValidCharSet = ""; // // label6 // this.label6.Location = new System.Drawing.Point(19, 51); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(96, 22); this.label6.TabIndex = 3; this.label6.Text = "Lapon belüli sorszám:"; this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtDescription // this.txtDescription.AllowNull = true; this.txtDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDescription.InvalidCharSet = ""; this.txtDescription.Location = new System.Drawing.Point(163, 162); this.txtDescription.Multiline = true; this.txtDescription.Name = "txtDescription"; this.txtDescription.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtDescription.Size = new System.Drawing.Size(730, 69); this.txtDescription.TabIndex = 6; this.txtDescription.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDescription.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDescription.ValidationMask = ""; this.txtDescription.ValidCharSet = ""; // // label7 // this.label7.Location = new System.Drawing.Point(10, 162); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(146, 22); this.label7.TabIndex = 5; this.label7.Text = "Leírás (súgó szövege):"; this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // grpValidation // this.grpValidation.Controls.Add(this.txtRegExp); this.grpValidation.Controls.Add(this.label12); this.grpValidation.Controls.Add(this.label11); this.grpValidation.Controls.Add(this.txtExpectedFormat); this.grpValidation.Controls.Add(this.txtTo); this.grpValidation.Controls.Add(this.label10); this.grpValidation.Controls.Add(this.label9); this.grpValidation.Controls.Add(this.txtFrom); this.grpValidation.Controls.Add(this.label8); this.grpValidation.Controls.Add(this.txtMaxLength); this.grpValidation.Controls.Add(this.cbxMandatory); this.grpValidation.Location = new System.Drawing.Point(10, 415); this.grpValidation.Name = "grpValidation"; this.grpValidation.Size = new System.Drawing.Size(489, 194); this.grpValidation.TabIndex = 12; this.grpValidation.TabStop = false; this.grpValidation.Text = "Validáció"; // // txtRegExp // this.txtRegExp.AllowNull = true; this.txtRegExp.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtRegExp.InvalidCharSet = ""; this.txtRegExp.Location = new System.Drawing.Point(204, 136); this.txtRegExp.MaxLength = 50; this.txtRegExp.Name = "txtRegExp"; this.txtRegExp.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtRegExp.Size = new System.Drawing.Size(278, 22); this.txtRegExp.TabIndex = 8; this.txtRegExp.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtRegExp.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtRegExp.ValidationMask = ""; this.txtRegExp.ValidCharSet = ""; // // label12 // this.label12.Location = new System.Drawing.Point(19, 166); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(163, 22); this.label12.TabIndex = 9; this.label12.Text = "Várt formátum:"; this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label11 // this.label11.Location = new System.Drawing.Point(19, 136); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(163, 22); this.label11.TabIndex = 7; this.label11.Text = "Reguláris kifejezés:"; this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtExpectedFormat // this.txtExpectedFormat.AllowNull = true; this.txtExpectedFormat.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtExpectedFormat.InvalidCharSet = ""; this.txtExpectedFormat.Location = new System.Drawing.Point(204, 166); this.txtExpectedFormat.MaxLength = 50; this.txtExpectedFormat.Name = "txtExpectedFormat"; this.txtExpectedFormat.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtExpectedFormat.Size = new System.Drawing.Size(278, 22); this.txtExpectedFormat.TabIndex = 10; this.txtExpectedFormat.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtExpectedFormat.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtExpectedFormat.ValidationMask = ""; this.txtExpectedFormat.ValidCharSet = ""; // // txtTo // this.txtTo.AllowNull = true; this.txtTo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtTo.InvalidCharSet = ""; this.txtTo.Location = new System.Drawing.Point(204, 106); this.txtTo.MaxLength = 50; this.txtTo.Name = "txtTo"; this.txtTo.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtTo.Size = new System.Drawing.Size(96, 22); this.txtTo.TabIndex = 6; this.txtTo.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtTo.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtTo.ValidationMask = ""; this.txtTo.ValidCharSet = ""; // // label10 // this.label10.Location = new System.Drawing.Point(19, 106); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(185, 22); this.label10.TabIndex = 5; this.label10.Text = "Értéktartomány felsõ határa:"; this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label9 // this.label9.Location = new System.Drawing.Point(19, 76); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(185, 22); this.label9.TabIndex = 3; this.label9.Text = "Értéktartomány alsó határa:"; this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtFrom // this.txtFrom.AllowNull = true; this.txtFrom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFrom.InvalidCharSet = ""; this.txtFrom.Location = new System.Drawing.Point(204, 76); this.txtFrom.MaxLength = 50; this.txtFrom.Name = "txtFrom"; this.txtFrom.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFrom.Size = new System.Drawing.Size(96, 22); this.txtFrom.TabIndex = 4; this.txtFrom.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFrom.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFrom.ValidationMask = ""; this.txtFrom.ValidCharSet = ""; // // label8 // this.label8.Location = new System.Drawing.Point(19, 46); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(118, 22); this.label8.TabIndex = 1; this.label8.Text = "Maximális hossz:"; this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtMaxLength // this.txtMaxLength.AllowNull = true; this.txtMaxLength.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtMaxLength.InvalidCharSet = ""; this.txtMaxLength.Location = new System.Drawing.Point(204, 46); this.txtMaxLength.MaxLength = 50; this.txtMaxLength.Name = "txtMaxLength"; this.txtMaxLength.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtMaxLength.Size = new System.Drawing.Size(96, 22); this.txtMaxLength.TabIndex = 2; this.txtMaxLength.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtMaxLength.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtMaxLength.ValidationMask = ""; this.txtMaxLength.ValidCharSet = ""; // // cbxMandatory // this.cbxMandatory.Location = new System.Drawing.Point(19, 18); this.cbxMandatory.Name = "cbxMandatory"; this.cbxMandatory.Size = new System.Drawing.Size(163, 28); this.cbxMandatory.TabIndex = 0; this.cbxMandatory.Text = "Kötelezõ kitölteni"; // // groupBox1 // this.groupBox1.Controls.Add(this.btnListItemInsert); this.groupBox1.Controls.Add(this.btnListItemDelete); this.groupBox1.Controls.Add(this.rbtOrderByItemIndex); this.groupBox1.Controls.Add(this.rbtOrderByName); this.groupBox1.Controls.Add(this.btnListItemDown); this.groupBox1.Controls.Add(this.lvDetailListItems); this.groupBox1.Controls.Add(this.btnListItemUp); this.groupBox1.Location = new System.Drawing.Point(509, 240); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(384, 369); this.groupBox1.TabIndex = 13; this.groupBox1.TabStop = false; this.groupBox1.Text = "Lista elemei"; // // btnListItemInsert // this.btnListItemInsert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnListItemInsert.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnListItemInsert.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnListItemInsert.Image = ((System.Drawing.Image)(resources.GetObject("btnListItemInsert.Image"))); this.btnListItemInsert.Location = new System.Drawing.Point(346, 189); this.btnListItemInsert.Name = "btnListItemInsert"; this.btnListItemInsert.Size = new System.Drawing.Size(31, 30); this.btnListItemInsert.TabIndex = 3; this.btnListItemInsert.Click += new System.EventHandler(this.btnListItemInsert_Click); // // btnListItemDelete // this.btnListItemDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnListItemDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnListItemDelete.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnListItemDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnListItemDelete.Image"))); this.btnListItemDelete.Location = new System.Drawing.Point(346, 235); this.btnListItemDelete.Name = "btnListItemDelete"; this.btnListItemDelete.Size = new System.Drawing.Size(31, 30); this.btnListItemDelete.TabIndex = 4; this.btnListItemDelete.Click += new System.EventHandler(this.btnListItemDelete_Click); // // rbtOrderByItemIndex // this.rbtOrderByItemIndex.Checked = true; this.rbtOrderByItemIndex.Location = new System.Drawing.Point(19, 18); this.rbtOrderByItemIndex.Name = "rbtOrderByItemIndex"; this.rbtOrderByItemIndex.Size = new System.Drawing.Size(192, 28); this.rbtOrderByItemIndex.TabIndex = 0; this.rbtOrderByItemIndex.TabStop = true; this.rbtOrderByItemIndex.Text = "Sorrend sorszám szerint"; // // rbtOrderByName // this.rbtOrderByName.Location = new System.Drawing.Point(221, 18); this.rbtOrderByName.Name = "rbtOrderByName"; this.rbtOrderByName.Size = new System.Drawing.Size(163, 28); this.rbtOrderByName.TabIndex = 1; this.rbtOrderByName.Text = "Sorrend név szerint"; // // btnListItemDown // this.btnListItemDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnListItemDown.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnListItemDown.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnListItemDown.Image = ((System.Drawing.Image)(resources.GetObject("btnListItemDown.Image"))); this.btnListItemDown.Location = new System.Drawing.Point(346, 327); this.btnListItemDown.Name = "btnListItemDown"; this.btnListItemDown.Size = new System.Drawing.Size(31, 30); this.btnListItemDown.TabIndex = 6; this.btnListItemDown.Click += new System.EventHandler(this.btnListItemDown_Click); // // lvDetailListItems // this.lvDetailListItems.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.colListItemName}); this.lvDetailListItems.FullRowSelect = true; this.lvDetailListItems.GridLines = true; this.lvDetailListItems.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.lvDetailListItems.HideSelection = false; this.lvDetailListItems.LabelEdit = true; this.lvDetailListItems.Location = new System.Drawing.Point(10, 55); this.lvDetailListItems.MultiSelect = false; this.lvDetailListItems.Name = "lvDetailListItems"; this.lvDetailListItems.Size = new System.Drawing.Size(326, 305); this.lvDetailListItems.TabIndex = 2; this.lvDetailListItems.UseCompatibleStateImageBehavior = false; this.lvDetailListItems.View = System.Windows.Forms.View.Details; this.lvDetailListItems.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.lvDetailListItems_AfterLabelEdit); this.lvDetailListItems.BeforeLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.lvDetailListItems_BeforeLabelEdit); // // colListItemName // this.colListItemName.Text = "Név"; this.colListItemName.Width = 244; // // btnListItemUp // this.btnListItemUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnListItemUp.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnListItemUp.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnListItemUp.Image = ((System.Drawing.Image)(resources.GetObject("btnListItemUp.Image"))); this.btnListItemUp.Location = new System.Drawing.Point(346, 281); this.btnListItemUp.Name = "btnListItemUp"; this.btnListItemUp.Size = new System.Drawing.Size(31, 30); this.btnListItemUp.TabIndex = 5; this.btnListItemUp.Click += new System.EventHandler(this.btnListItemUp_Click); // // label13 // this.label13.Location = new System.Drawing.Point(346, 240); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(79, 22); this.label13.TabIndex = 15; this.label13.Text = "Szélesség:"; this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label14 // this.label14.Location = new System.Drawing.Point(346, 268); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(88, 22); this.label14.TabIndex = 16; this.label14.Text = "Sorok száma:"; this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtControlWidth // this.txtControlWidth.AllowNull = false; this.txtControlWidth.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtControlWidth.InvalidCharSet = ""; this.txtControlWidth.Location = new System.Drawing.Point(432, 239); this.txtControlWidth.MaxLength = 50; this.txtControlWidth.Name = "txtControlWidth"; this.txtControlWidth.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtControlWidth.Size = new System.Drawing.Size(67, 22); this.txtControlWidth.TabIndex = 10; this.txtControlWidth.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtControlWidth.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtControlWidth.ValidationMask = ""; this.txtControlWidth.ValidCharSet = ""; // // txtControlHeight // this.txtControlHeight.AllowNull = false; this.txtControlHeight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtControlHeight.InvalidCharSet = ""; this.txtControlHeight.Location = new System.Drawing.Point(432, 269); this.txtControlHeight.MaxLength = 50; this.txtControlHeight.Name = "txtControlHeight"; this.txtControlHeight.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtControlHeight.Size = new System.Drawing.Size(67, 22); this.txtControlHeight.TabIndex = 17; this.txtControlHeight.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtControlHeight.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtControlHeight.ValidationMask = ""; this.txtControlHeight.ValidCharSet = ""; // // frmTemplateDetailEdit // this.AcceptButton = this.btnOk; this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(910, 693); this.Controls.Add(this.txtControlHeight); this.Controls.Add(this.txtDescription); this.Controls.Add(this.txtQuestion); this.Controls.Add(this.txtID); this.Controls.Add(this.txtControlWidth); this.Controls.Add(this.label14); this.Controls.Add(this.label13); this.Controls.Add(this.groupBox1); this.Controls.Add(this.grpValidation); this.Controls.Add(this.label7); this.Controls.Add(this.grpDisplayOptions); this.Controls.Add(this.label4); this.Controls.Add(this.cmbLayout); this.Controls.Add(this.label3); this.Controls.Add(this.cmbDataType); this.Controls.Add(this.label1); this.Controls.Add(this.label2); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.pHeader); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmTemplateDetailEdit"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmTemplateDetailEdit_Load); this.pnlBottom.ResumeLayout(false); this.grpDisplayOptions.ResumeLayout(false); this.grpDisplayOptions.PerformLayout(); this.grpValidation.ResumeLayout(false); this.grpValidation.PerformLayout(); this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmUserSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbNew = new System.Windows.Forms.ToolBarButton(); this.tbbModify = new System.Windows.Forms.ToolBarButton(); this.tbbPasswordReset = new System.Windows.Forms.ToolBarButton(); this.tbbInactivate = new System.Windows.Forms.ToolBarButton(); this.tbbLockedOut = new System.Windows.Forms.ToolBarButton(); this.tbbReplace = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.pnlFilter = new System.Windows.Forms.Panel(); this.cmbLockedOut = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label5 = new System.Windows.Forms.Label(); this.cmbStatus = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label4 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.txtLoginName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label3 = new System.Windows.Forms.Label(); this.cmbOrganisation = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.cmbRight = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label2 = new System.Windows.Forms.Label(); this.pnlReplace = new System.Windows.Forms.Panel(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.txtNameToReplace = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtOtherToReplace = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label6 = new System.Windows.Forms.Label(); this.btnCancel = new System.Windows.Forms.Button(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colLoginName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colActive = new System.Windows.Forms.DataGridBoolColumn(); this.colLockedOut = new System.Windows.Forms.DataGridBoolColumn(); this.pnlFilter.SuspendLayout(); this.pnlReplace.SuspendLayout(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(665, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Felhasználók"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Regisztrált felhasználók adatainak karbantartása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbNew, this.tbbModify, this.tbbPasswordReset, this.tbbInactivate, this.tbbLockedOut, this.tbbReplace, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(665, 28); this.tlbMain.TabIndex = 1; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbNew // this.tbbNew.ImageIndex = 0; this.tbbNew.Name = "tbbNew"; this.tbbNew.ToolTipText = "Új (adminisztrátor) felhasználó"; // // tbbModify // this.tbbModify.ImageIndex = 1; this.tbbModify.Name = "tbbModify"; this.tbbModify.ToolTipText = "Felhasználó adatainak módosítása"; // // tbbPasswordReset // this.tbbPasswordReset.ImageIndex = 4; this.tbbPasswordReset.Name = "tbbPasswordReset"; this.tbbPasswordReset.ToolTipText = "Jelszó megváltoztatása"; // // tbbInactivate // this.tbbInactivate.ImageIndex = 2; this.tbbInactivate.Name = "tbbInactivate"; this.tbbInactivate.ToolTipText = "Inaktiválás/aktiválás"; // // tbbLockedOut // this.tbbLockedOut.ImageIndex = 5; this.tbbLockedOut.Name = "tbbLockedOut"; this.tbbLockedOut.ToolTipText = "Letiltott felhasználó engedélyezése"; // // tbbReplace // this.tbbReplace.ImageIndex = 6; this.tbbReplace.Name = "tbbReplace"; this.tbbReplace.ToolTipText = "Felhasználók összevonása"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 3; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); this.imgToolbar.Images.SetKeyName(5, ""); this.imgToolbar.Images.SetKeyName(6, ""); // // pnlFilter // this.pnlFilter.Controls.Add(this.cmbLockedOut); this.pnlFilter.Controls.Add(this.label5); this.pnlFilter.Controls.Add(this.cmbStatus); this.pnlFilter.Controls.Add(this.label4); this.pnlFilter.Controls.Add(this.label1); this.pnlFilter.Controls.Add(this.txtLoginName); this.pnlFilter.Controls.Add(this.label3); this.pnlFilter.Controls.Add(this.cmbOrganisation); this.pnlFilter.Controls.Add(this.cmbRight); this.pnlFilter.Controls.Add(this.label2); this.pnlFilter.Controls.Add(this.pnlReplace); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(665, 180); this.pnlFilter.TabIndex = 2; // // cmbLockedOut // this.cmbLockedOut.AllowNull = true; this.cmbLockedOut.BreakSort = false; this.cmbLockedOut.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbLockedOut.Location = new System.Drawing.Point(398, 64); this.cmbLockedOut.Name = "cmbLockedOut"; this.cmbLockedOut.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbLockedOut.Size = new System.Drawing.Size(192, 24); this.cmbLockedOut.TabIndex = 9; this.cmbLockedOut.ToolBarUse = false; this.cmbLockedOut.ValidationErrorMessage = "Érvénytelen karakter!"; // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(326, 68); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(75, 17); this.label5.TabIndex = 8; this.label5.Text = "Használat:"; // // cmbStatus // this.cmbStatus.AllowNull = true; this.cmbStatus.BreakSort = false; this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatus.Location = new System.Drawing.Point(398, 36); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatus.Size = new System.Drawing.Size(192, 24); this.cmbStatus.TabIndex = 7; this.cmbStatus.ToolBarUse = false; this.cmbStatus.ValidationErrorMessage = "Érvénytelen karakter!"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(326, 41); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(55, 17); this.label4.TabIndex = 6; this.label4.Text = "Állapot:"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(10, 14); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(74, 17); this.label1.TabIndex = 0; this.label1.Text = "Login név:"; // // txtLoginName // this.txtLoginName.AllowNull = true; this.txtLoginName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtLoginName.InvalidCharSet = ""; this.txtLoginName.Location = new System.Drawing.Point(96, 9); this.txtLoginName.MaxLength = 50; this.txtLoginName.Name = "txtLoginName"; this.txtLoginName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtLoginName.Size = new System.Drawing.Size(494, 22); this.txtLoginName.TabIndex = 1; this.txtLoginName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtLoginName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtLoginName.ValidationMask = ""; this.txtLoginName.ValidCharSet = ""; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(10, 68); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(75, 17); this.label3.TabIndex = 4; this.label3.Text = "Szervezet:"; // // cmbOrganisation // this.cmbOrganisation.AllowNull = true; this.cmbOrganisation.BreakSort = false; this.cmbOrganisation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrganisation.Location = new System.Drawing.Point(96, 64); this.cmbOrganisation.Name = "cmbOrganisation"; this.cmbOrganisation.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrganisation.Size = new System.Drawing.Size(202, 24); this.cmbOrganisation.TabIndex = 5; this.cmbOrganisation.ToolBarUse = false; this.cmbOrganisation.ValidationErrorMessage = "Érvénytelen karakter!"; this.cmbOrganisation.SelectedIndexChanged += new System.EventHandler(this.cmbOrganisation_SelectedIndexChanged); // // cmbRight // this.cmbRight.AllowNull = true; this.cmbRight.BreakSort = false; this.cmbRight.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbRight.Location = new System.Drawing.Point(96, 36); this.cmbRight.Name = "cmbRight"; this.cmbRight.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbRight.Size = new System.Drawing.Size(202, 24); this.cmbRight.TabIndex = 3; this.cmbRight.ToolBarUse = false; this.cmbRight.ValidationErrorMessage = "Érvénytelen karakter!"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(10, 41); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(88, 17); this.label2.TabIndex = 2; this.label2.Text = "Jogosultság:"; // // pnlReplace // this.pnlReplace.Controls.Add(this.groupBox1); this.pnlReplace.Controls.Add(this.btnCancel); this.pnlReplace.Location = new System.Drawing.Point(0, 102); this.pnlReplace.Name = "pnlReplace"; this.pnlReplace.Size = new System.Drawing.Size(643, 71); this.pnlReplace.TabIndex = 5; // // groupBox1 // this.groupBox1.Controls.Add(this.txtNameToReplace); this.groupBox1.Controls.Add(this.txtOtherToReplace); this.groupBox1.Controls.Add(this.label6); this.groupBox1.Location = new System.Drawing.Point(10, 0); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(480, 69); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = " Cserére kiválasztott felhasználó"; // // txtNameToReplace // this.txtNameToReplace.AllowNull = true; this.txtNameToReplace.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtNameToReplace.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.txtNameToReplace.InvalidCharSet = ""; this.txtNameToReplace.Location = new System.Drawing.Point(19, 18); this.txtNameToReplace.MaxLength = 50; this.txtNameToReplace.Multiline = true; this.txtNameToReplace.Name = "txtNameToReplace"; this.txtNameToReplace.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtNameToReplace.ReadOnly = true; this.txtNameToReplace.Size = new System.Drawing.Size(192, 47); this.txtNameToReplace.TabIndex = 0; this.txtNameToReplace.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtNameToReplace.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtNameToReplace.ValidationMask = ""; this.txtNameToReplace.ValidCharSet = ""; // // txtOtherToReplace // this.txtOtherToReplace.AllowNull = true; this.txtOtherToReplace.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtOtherToReplace.InvalidCharSet = ""; this.txtOtherToReplace.Location = new System.Drawing.Point(226, 18); this.txtOtherToReplace.MaxLength = 50; this.txtOtherToReplace.Multiline = true; this.txtOtherToReplace.Name = "txtOtherToReplace"; this.txtOtherToReplace.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOtherToReplace.ReadOnly = true; this.txtOtherToReplace.Size = new System.Drawing.Size(240, 47); this.txtOtherToReplace.TabIndex = 2; this.txtOtherToReplace.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOtherToReplace.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOtherToReplace.ValidationMask = ""; this.txtOtherToReplace.ValidCharSet = ""; // // label6 // this.label6.BackColor = System.Drawing.SystemColors.ControlDark; this.label6.Location = new System.Drawing.Point(216, 14); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(1, 51); this.label6.TabIndex = 1; this.label6.Visible = false; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(547, 39); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 2; this.btnCancel.Text = "Mégse"; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 254); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(665, 245); this.dtgMain.TabIndex = 3; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colLoginName, this.colName, this.colActive, this.colLockedOut}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // colLoginName // this.colLoginName.Format = ""; this.colLoginName.FormatInfo = null; this.colLoginName.HeaderText = "Login név"; this.colLoginName.MappingName = "LoginName"; this.colLoginName.Width = 220; // // colName // this.colName.Format = ""; this.colName.FormatInfo = null; this.colName.HeaderText = "Név"; this.colName.MappingName = "Name"; this.colName.Width = 220; // // colActive // this.colActive.HeaderText = "Aktív"; this.colActive.MappingName = "IsActive"; this.colActive.Width = 75; // // colLockedOut // this.colLockedOut.HeaderText = "Letiltott"; this.colLockedOut.MappingName = "LockedOut"; this.colLockedOut.Width = 75; // // frmUserSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(665, 499); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmUserSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmUserSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); this.pnlReplace.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.pnlBottom = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.cmbRegion = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label16 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); this.txtOrgAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label14 = new System.Windows.Forms.Label(); this.txtCity = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtPostCode = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label15 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.txtPhone1 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label8 = new System.Windows.Forms.Label(); this.txtOrganisationName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.cbxActivate = new System.Windows.Forms.CheckBox(); this.label28 = new System.Windows.Forms.Label(); this.txtDepartment = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtCountry = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label29 = new System.Windows.Forms.Label(); this.txtMailingAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtMailingCity = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtMailingPostCode = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.txtPhone2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label4 = new System.Windows.Forms.Label(); this.txtPhone3 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label5 = new System.Windows.Forms.Label(); this.txtPhonediscounted = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label6 = new System.Windows.Forms.Label(); this.txtFax = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label7 = new System.Windows.Forms.Label(); this.txtEmail3 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtEmail2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtEmail1 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label19 = new System.Windows.Forms.Label(); this.label18 = new System.Windows.Forms.Label(); this.label10 = new System.Windows.Forms.Label(); this.label23 = new System.Windows.Forms.Label(); this.txtHomePage = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtContactName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label11 = new System.Windows.Forms.Label(); this.txtContactPhone = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label12 = new System.Windows.Forms.Label(); this.txtContactEmail = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label20 = new System.Windows.Forms.Label(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.label38 = new System.Windows.Forms.Label(); this.label37 = new System.Windows.Forms.Label(); this.label36 = new System.Windows.Forms.Label(); this.label35 = new System.Windows.Forms.Label(); this.label34 = new System.Windows.Forms.Label(); this.label33 = new System.Windows.Forms.Label(); this.txtSourceOtherName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label32 = new System.Windows.Forms.Label(); this.txtSourceOther = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label31 = new System.Windows.Forms.Label(); this.txtSourceTax = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label30 = new System.Windows.Forms.Label(); this.txtSourceDonation = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label27 = new System.Windows.Forms.Label(); this.txtSourceSponsor = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label25 = new System.Windows.Forms.Label(); this.txtSourceCompetition = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label24 = new System.Windows.Forms.Label(); this.txtSourceGovernment = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label22 = new System.Windows.Forms.Label(); this.cbxOrgActOther = new System.Windows.Forms.CheckBox(); this.cbxOrgActRehabilitation = new System.Windows.Forms.CheckBox(); this.cbxOrgActResearch = new System.Windows.Forms.CheckBox(); this.cbxOrgActPrevention = new System.Windows.Forms.CheckBox(); this.tabOrganisation = new System.Windows.Forms.TabControl(); this.tabPageBaseData = new System.Windows.Forms.TabPage(); this.cbxActual = new System.Windows.Forms.CheckBox(); this.groupBox6 = new System.Windows.Forms.GroupBox(); this.groupBox5 = new System.Windows.Forms.GroupBox(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.label21 = new System.Windows.Forms.Label(); this.label39 = new System.Windows.Forms.Label(); this.txtEstablishmentYear = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtCallingHours = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label26 = new System.Windows.Forms.Label(); this.cmbOrganisationForm = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label17 = new System.Windows.Forms.Label(); this.txtDescription = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label42 = new System.Windows.Forms.Label(); this.cmbOrgWorkingArea = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label41 = new System.Windows.Forms.Label(); this.txtOrgWorkingAreaOther = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.tabPageDetails = new System.Windows.Forms.TabPage(); this.groupBox4 = new System.Windows.Forms.GroupBox(); this.label66 = new System.Windows.Forms.Label(); this.txtJobOtherName3 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label65 = new System.Windows.Forms.Label(); this.txtJobOtherName2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label64 = new System.Windows.Forms.Label(); this.txtJobOtherName1 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label63 = new System.Windows.Forms.Label(); this.txtJobOther3 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label62 = new System.Windows.Forms.Label(); this.txtJobOther2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label61 = new System.Windows.Forms.Label(); this.txtJobOther1 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label60 = new System.Windows.Forms.Label(); this.txtJobPoliceman = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label59 = new System.Windows.Forms.Label(); this.txtJobCultureOrganizer = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label53 = new System.Windows.Forms.Label(); this.txtJobMentalhygiene = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label54 = new System.Windows.Forms.Label(); this.txtJobLawyer = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label55 = new System.Windows.Forms.Label(); this.txtJobManualist = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label56 = new System.Windows.Forms.Label(); this.txtJobPedagogist = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label57 = new System.Windows.Forms.Label(); this.txtJobSocialPedagogist = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label58 = new System.Windows.Forms.Label(); this.txtJobSocialWorker = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label52 = new System.Windows.Forms.Label(); this.txtJobSocialPolitician = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label51 = new System.Windows.Forms.Label(); this.txtJobSociologist = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label50 = new System.Windows.Forms.Label(); this.txtJobHealthExpert = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label49 = new System.Windows.Forms.Label(); this.txtJobMedicalExpert = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label48 = new System.Windows.Forms.Label(); this.txtJobDoctor = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label47 = new System.Windows.Forms.Label(); this.txtJobPsychiater = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label46 = new System.Windows.Forms.Label(); this.txtJobPsychologist = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.txtWorkersVolunteer = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label43 = new System.Windows.Forms.Label(); this.txtWorkersExternal = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label44 = new System.Windows.Forms.Label(); this.txtWorkersFix = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label45 = new System.Windows.Forms.Label(); this.tabOtherDocuments = new System.Windows.Forms.TabPage(); this.btnModify = new System.Windows.Forms.Button(); this.btnKefFilesDelete = new System.Windows.Forms.Button(); this.btnKefFilesNew = new System.Windows.Forms.Button(); this.dtgKefFiles = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn3 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn4 = new System.Windows.Forms.DataGridTextBoxColumn(); this.pnlBottom.SuspendLayout(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.tabOrganisation.SuspendLayout(); this.tabPageBaseData.SuspendLayout(); this.groupBox6.SuspendLayout(); this.groupBox5.SuspendLayout(); this.tabPage1.SuspendLayout(); this.tabPageDetails.SuspendLayout(); this.groupBox4.SuspendLayout(); this.groupBox3.SuspendLayout(); this.tabOtherDocuments.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgKefFiles)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(872, 46); this.pHeader.TabIndex = 0; this.pHeader.TabStop = false; this.pHeader.Text1 = "Szervezetek"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Regisztrált szervezet adatainak módosítása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // pnlBottom // this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 609); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(872, 46); this.pnlBottom.TabIndex = 2; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(774, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(678, 14); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 0; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // cmbRegion // this.cmbRegion.AllowNull = true; this.cmbRegion.BreakSort = false; this.cmbRegion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbRegion.Location = new System.Drawing.Point(144, 175); this.cmbRegion.Name = "cmbRegion"; this.cmbRegion.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbRegion.Size = new System.Drawing.Size(264, 24); this.cmbRegion.TabIndex = 13; this.cmbRegion.ToolBarUse = false; this.cmbRegion.ValidationErrorMessage = "Érvénytelen karakter!"; // // label16 // this.label16.Location = new System.Drawing.Point(14, 180); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(125, 18); this.label16.TabIndex = 12; this.label16.Text = "Régió:"; // // label13 // this.label13.Location = new System.Drawing.Point(14, 125); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(125, 18); this.label13.TabIndex = 8; this.label13.Text = "Utca, házszám:"; // // txtOrgAddress // this.txtOrgAddress.AllowNull = false; this.txtOrgAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgAddress.InvalidCharSet = ""; this.txtOrgAddress.Location = new System.Drawing.Point(144, 120); this.txtOrgAddress.MaxLength = 100; this.txtOrgAddress.Name = "txtOrgAddress"; this.txtOrgAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgAddress.Size = new System.Drawing.Size(264, 22); this.txtOrgAddress.TabIndex = 9; this.txtOrgAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgAddress.ValidationMask = ""; this.txtOrgAddress.ValidCharSet = ""; // // label14 // this.label14.Location = new System.Drawing.Point(14, 97); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(125, 18); this.label14.TabIndex = 6; this.label14.Text = "Település:"; // // txtCity // this.txtCity.AllowNull = false; this.txtCity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCity.InvalidCharSet = ""; this.txtCity.Location = new System.Drawing.Point(144, 92); this.txtCity.MaxLength = 100; this.txtCity.Name = "txtCity"; this.txtCity.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCity.Size = new System.Drawing.Size(264, 22); this.txtCity.TabIndex = 7; this.txtCity.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCity.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCity.ValidationMask = ""; this.txtCity.ValidCharSet = ""; // // txtPostCode // this.txtPostCode.AllowNull = false; this.txtPostCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPostCode.InvalidCharSet = ""; this.txtPostCode.Location = new System.Drawing.Point(144, 65); this.txtPostCode.MaxLength = 10; this.txtPostCode.Name = "txtPostCode"; this.txtPostCode.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPostCode.Size = new System.Drawing.Size(96, 22); this.txtPostCode.TabIndex = 5; this.txtPostCode.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPostCode.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPostCode.ValidationMask = ""; this.txtPostCode.ValidCharSet = ""; // // label15 // this.label15.Location = new System.Drawing.Point(14, 69); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(125, 19); this.label15.TabIndex = 4; this.label15.Text = "Irányítószám:"; // // label9 // this.label9.Location = new System.Drawing.Point(14, 323); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(125, 19); this.label9.TabIndex = 15; this.label9.Text = "Telefonszám 1:"; // // txtPhone1 // this.txtPhone1.AllowNull = true; this.txtPhone1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPhone1.InvalidCharSet = ""; this.txtPhone1.Location = new System.Drawing.Point(144, 318); this.txtPhone1.MaxLength = 20; this.txtPhone1.Name = "txtPhone1"; this.txtPhone1.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPhone1.Size = new System.Drawing.Size(264, 22); this.txtPhone1.TabIndex = 16; this.txtPhone1.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPhone1.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPhone1.ValidationMask = ""; this.txtPhone1.ValidCharSet = ""; // // label8 // this.label8.Location = new System.Drawing.Point(14, 14); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(125, 18); this.label8.TabIndex = 0; this.label8.Text = "Szervezet neve:"; // // txtOrganisationName // this.txtOrganisationName.AllowNull = false; this.txtOrganisationName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrganisationName.InvalidCharSet = ""; this.txtOrganisationName.Location = new System.Drawing.Point(144, 9); this.txtOrganisationName.MaxLength = 250; this.txtOrganisationName.Name = "txtOrganisationName"; this.txtOrganisationName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrganisationName.Size = new System.Drawing.Size(696, 22); this.txtOrganisationName.TabIndex = 1; this.txtOrganisationName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrganisationName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrganisationName.ValidationMask = ""; this.txtOrganisationName.ValidCharSet = ""; // // cbxActivate // this.cbxActivate.Checked = true; this.cbxActivate.CheckState = System.Windows.Forms.CheckState.Checked; this.cbxActivate.Location = new System.Drawing.Point(446, 378); this.cbxActivate.Name = "cbxActivate"; this.cbxActivate.Size = new System.Drawing.Size(125, 28); this.cbxActivate.TabIndex = 35; this.cbxActivate.Text = "Aktív"; // // label28 // this.label28.Location = new System.Drawing.Point(14, 42); this.label28.Name = "label28"; this.label28.Size = new System.Drawing.Size(125, 18); this.label28.TabIndex = 2; this.label28.Text = "Szervezeti egység:"; // // txtDepartment // this.txtDepartment.AllowNull = true; this.txtDepartment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDepartment.InvalidCharSet = ""; this.txtDepartment.Location = new System.Drawing.Point(144, 37); this.txtDepartment.MaxLength = 250; this.txtDepartment.Name = "txtDepartment"; this.txtDepartment.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDepartment.Size = new System.Drawing.Size(696, 22); this.txtDepartment.TabIndex = 3; this.txtDepartment.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDepartment.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDepartment.ValidationMask = ""; this.txtDepartment.ValidCharSet = ""; // // txtCountry // this.txtCountry.AllowNull = true; this.txtCountry.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCountry.InvalidCharSet = ""; this.txtCountry.Location = new System.Drawing.Point(144, 148); this.txtCountry.MaxLength = 100; this.txtCountry.Name = "txtCountry"; this.txtCountry.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCountry.Size = new System.Drawing.Size(264, 22); this.txtCountry.TabIndex = 11; this.txtCountry.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCountry.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCountry.ValidationMask = ""; this.txtCountry.ValidCharSet = ""; // // label29 // this.label29.Location = new System.Drawing.Point(14, 152); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(125, 19); this.label29.TabIndex = 10; this.label29.Text = "Ország:"; // // txtMailingAddress // this.txtMailingAddress.AllowNull = true; this.txtMailingAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtMailingAddress.InvalidCharSet = ""; this.txtMailingAddress.Location = new System.Drawing.Point(139, 74); this.txtMailingAddress.MaxLength = 100; this.txtMailingAddress.Name = "txtMailingAddress"; this.txtMailingAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtMailingAddress.Size = new System.Drawing.Size(264, 22); this.txtMailingAddress.TabIndex = 5; this.txtMailingAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtMailingAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtMailingAddress.ValidationMask = ""; this.txtMailingAddress.ValidCharSet = ""; // // txtMailingCity // this.txtMailingCity.AllowNull = true; this.txtMailingCity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtMailingCity.InvalidCharSet = ""; this.txtMailingCity.Location = new System.Drawing.Point(139, 46); this.txtMailingCity.MaxLength = 100; this.txtMailingCity.Name = "txtMailingCity"; this.txtMailingCity.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtMailingCity.Size = new System.Drawing.Size(264, 22); this.txtMailingCity.TabIndex = 3; this.txtMailingCity.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtMailingCity.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtMailingCity.ValidationMask = ""; this.txtMailingCity.ValidCharSet = ""; // // txtMailingPostCode // this.txtMailingPostCode.AllowNull = true; this.txtMailingPostCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtMailingPostCode.InvalidCharSet = ""; this.txtMailingPostCode.Location = new System.Drawing.Point(139, 18); this.txtMailingPostCode.MaxLength = 10; this.txtMailingPostCode.Name = "txtMailingPostCode"; this.txtMailingPostCode.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtMailingPostCode.Size = new System.Drawing.Size(96, 22); this.txtMailingPostCode.TabIndex = 1; this.txtMailingPostCode.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtMailingPostCode.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtMailingPostCode.ValidationMask = ""; this.txtMailingPostCode.ValidCharSet = ""; // // label1 // this.label1.Location = new System.Drawing.Point(10, 78); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(124, 19); this.label1.TabIndex = 4; this.label1.Text = "Utca, házszám:"; // // label2 // this.label2.Location = new System.Drawing.Point(10, 51); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(124, 18); this.label2.TabIndex = 2; this.label2.Text = "Település:"; // // label3 // this.label3.Location = new System.Drawing.Point(10, 23); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(124, 19); this.label3.TabIndex = 0; this.label3.Text = "Irányítószám:"; // // txtPhone2 // this.txtPhone2.AllowNull = true; this.txtPhone2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPhone2.InvalidCharSet = ""; this.txtPhone2.Location = new System.Drawing.Point(144, 346); this.txtPhone2.MaxLength = 20; this.txtPhone2.Name = "txtPhone2"; this.txtPhone2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPhone2.Size = new System.Drawing.Size(264, 22); this.txtPhone2.TabIndex = 18; this.txtPhone2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPhone2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPhone2.ValidationMask = ""; this.txtPhone2.ValidCharSet = ""; // // label4 // this.label4.Location = new System.Drawing.Point(14, 351); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(125, 18); this.label4.TabIndex = 17; this.label4.Text = "Telefonszám 2:"; // // txtPhone3 // this.txtPhone3.AllowNull = true; this.txtPhone3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPhone3.InvalidCharSet = ""; this.txtPhone3.Location = new System.Drawing.Point(144, 374); this.txtPhone3.MaxLength = 20; this.txtPhone3.Name = "txtPhone3"; this.txtPhone3.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPhone3.Size = new System.Drawing.Size(264, 22); this.txtPhone3.TabIndex = 20; this.txtPhone3.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPhone3.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPhone3.ValidationMask = ""; this.txtPhone3.ValidCharSet = ""; // // label5 // this.label5.Location = new System.Drawing.Point(14, 378); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(125, 19); this.label5.TabIndex = 19; this.label5.Text = "Telefonszám 3:"; // // txtPhonediscounted // this.txtPhonediscounted.AllowNull = true; this.txtPhonediscounted.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPhonediscounted.InvalidCharSet = ""; this.txtPhonediscounted.Location = new System.Drawing.Point(144, 406); this.txtPhonediscounted.MaxLength = 20; this.txtPhonediscounted.Name = "txtPhonediscounted"; this.txtPhonediscounted.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPhonediscounted.Size = new System.Drawing.Size(264, 22); this.txtPhonediscounted.TabIndex = 22; this.txtPhonediscounted.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPhonediscounted.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPhonediscounted.ValidationMask = ""; this.txtPhonediscounted.ValidCharSet = ""; // // label6 // this.label6.Location = new System.Drawing.Point(14, 402); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(125, 32); this.label6.TabIndex = 21; this.label6.Text = "Kedvezményes telefonszám:"; // // txtFax // this.txtFax.AllowNull = true; this.txtFax.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFax.InvalidCharSet = ""; this.txtFax.Location = new System.Drawing.Point(144, 434); this.txtFax.MaxLength = 20; this.txtFax.Name = "txtFax"; this.txtFax.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFax.Size = new System.Drawing.Size(264, 22); this.txtFax.TabIndex = 24; this.txtFax.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFax.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFax.ValidationMask = ""; this.txtFax.ValidCharSet = ""; // // label7 // this.label7.Location = new System.Drawing.Point(14, 438); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(125, 19); this.label7.TabIndex = 23; this.label7.Text = "Fax:"; // // txtEmail3 // this.txtEmail3.AllowNull = true; this.txtEmail3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtEmail3.InvalidCharSet = ""; this.txtEmail3.Location = new System.Drawing.Point(576, 152); this.txtEmail3.MaxLength = 250; this.txtEmail3.Name = "txtEmail3"; this.txtEmail3.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtEmail3.Size = new System.Drawing.Size(264, 22); this.txtEmail3.TabIndex = 32; this.txtEmail3.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtEmail3.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtEmail3.ValidationMask = ""; this.txtEmail3.ValidCharSet = ""; // // txtEmail2 // this.txtEmail2.AllowNull = true; this.txtEmail2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtEmail2.InvalidCharSet = ""; this.txtEmail2.Location = new System.Drawing.Point(576, 125); this.txtEmail2.MaxLength = 250; this.txtEmail2.Name = "txtEmail2"; this.txtEmail2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtEmail2.Size = new System.Drawing.Size(264, 22); this.txtEmail2.TabIndex = 30; this.txtEmail2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtEmail2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtEmail2.ValidationMask = ""; this.txtEmail2.ValidCharSet = ""; // // txtEmail1 // this.txtEmail1.AllowNull = true; this.txtEmail1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtEmail1.InvalidCharSet = ""; this.txtEmail1.Location = new System.Drawing.Point(576, 97); this.txtEmail1.MaxLength = 250; this.txtEmail1.Name = "txtEmail1"; this.txtEmail1.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtEmail1.Size = new System.Drawing.Size(264, 22); this.txtEmail1.TabIndex = 28; this.txtEmail1.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtEmail1.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtEmail1.ValidationMask = ""; this.txtEmail1.ValidCharSet = ""; // // label19 // this.label19.Location = new System.Drawing.Point(446, 157); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(101, 18); this.label19.TabIndex = 31; this.label19.Text = "E-mail cím 3:"; // // label18 // this.label18.Location = new System.Drawing.Point(446, 129); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(101, 19); this.label18.TabIndex = 29; this.label18.Text = "E-mail cím 2:"; // // label10 // this.label10.Location = new System.Drawing.Point(446, 102); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(101, 18); this.label10.TabIndex = 27; this.label10.Text = "E-mail cím 1:"; // // label23 // this.label23.Location = new System.Drawing.Point(446, 69); this.label23.Name = "label23"; this.label23.Size = new System.Drawing.Size(125, 19); this.label23.TabIndex = 25; this.label23.Text = "Internet honlap:"; // // txtHomePage // this.txtHomePage.AllowNull = true; this.txtHomePage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtHomePage.InvalidCharSet = ""; this.txtHomePage.Location = new System.Drawing.Point(576, 65); this.txtHomePage.MaxLength = 250; this.txtHomePage.Name = "txtHomePage"; this.txtHomePage.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtHomePage.Size = new System.Drawing.Size(264, 22); this.txtHomePage.TabIndex = 26; this.txtHomePage.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtHomePage.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtHomePage.ValidationMask = ""; this.txtHomePage.ValidCharSet = ""; // // txtContactName // this.txtContactName.AllowNull = true; this.txtContactName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtContactName.InvalidCharSet = ""; this.txtContactName.Location = new System.Drawing.Point(139, 18); this.txtContactName.MaxLength = 250; this.txtContactName.Name = "txtContactName"; this.txtContactName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtContactName.Size = new System.Drawing.Size(264, 22); this.txtContactName.TabIndex = 1; this.txtContactName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtContactName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtContactName.ValidationMask = ""; this.txtContactName.ValidCharSet = ""; // // label11 // this.label11.Location = new System.Drawing.Point(10, 23); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(105, 19); this.label11.TabIndex = 0; this.label11.Text = "Neve:"; // // txtContactPhone // this.txtContactPhone.AllowNull = true; this.txtContactPhone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtContactPhone.InvalidCharSet = ""; this.txtContactPhone.Location = new System.Drawing.Point(139, 46); this.txtContactPhone.MaxLength = 20; this.txtContactPhone.Name = "txtContactPhone"; this.txtContactPhone.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtContactPhone.Size = new System.Drawing.Size(264, 22); this.txtContactPhone.TabIndex = 3; this.txtContactPhone.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtContactPhone.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtContactPhone.ValidationMask = ""; this.txtContactPhone.ValidCharSet = ""; // // label12 // this.label12.Location = new System.Drawing.Point(10, 51); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(105, 18); this.label12.TabIndex = 2; this.label12.Text = "Telefonszáma:"; // // txtContactEmail // this.txtContactEmail.AllowNull = true; this.txtContactEmail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtContactEmail.InvalidCharSet = ""; this.txtContactEmail.Location = new System.Drawing.Point(139, 74); this.txtContactEmail.MaxLength = 250; this.txtContactEmail.Name = "txtContactEmail"; this.txtContactEmail.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtContactEmail.Size = new System.Drawing.Size(264, 22); this.txtContactEmail.TabIndex = 5; this.txtContactEmail.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtContactEmail.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtContactEmail.ValidationMask = ""; this.txtContactEmail.ValidCharSet = ""; // // label20 // this.label20.Location = new System.Drawing.Point(10, 78); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(105, 19); this.label20.TabIndex = 4; this.label20.Text = "E-mail címe:"; // // groupBox1 // this.groupBox1.Controls.Add(this.txtContactName); this.groupBox1.Controls.Add(this.label11); this.groupBox1.Controls.Add(this.txtContactPhone); this.groupBox1.Controls.Add(this.label12); this.groupBox1.Controls.Add(this.txtContactEmail); this.groupBox1.Controls.Add(this.label20); this.groupBox1.Location = new System.Drawing.Point(437, 189); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(413, 106); this.groupBox1.TabIndex = 33; this.groupBox1.TabStop = false; this.groupBox1.Text = " Kapcsolattartó"; // // groupBox2 // this.groupBox2.Controls.Add(this.label38); this.groupBox2.Controls.Add(this.label37); this.groupBox2.Controls.Add(this.label36); this.groupBox2.Controls.Add(this.label35); this.groupBox2.Controls.Add(this.label34); this.groupBox2.Controls.Add(this.label33); this.groupBox2.Controls.Add(this.txtSourceOtherName); this.groupBox2.Controls.Add(this.label32); this.groupBox2.Controls.Add(this.txtSourceOther); this.groupBox2.Controls.Add(this.label31); this.groupBox2.Controls.Add(this.txtSourceTax); this.groupBox2.Controls.Add(this.label30); this.groupBox2.Controls.Add(this.txtSourceDonation); this.groupBox2.Controls.Add(this.label27); this.groupBox2.Controls.Add(this.txtSourceSponsor); this.groupBox2.Controls.Add(this.label25); this.groupBox2.Controls.Add(this.txtSourceCompetition); this.groupBox2.Controls.Add(this.label24); this.groupBox2.Controls.Add(this.txtSourceGovernment); this.groupBox2.Controls.Add(this.label22); this.groupBox2.Location = new System.Drawing.Point(10, 9); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(412, 139); this.groupBox2.TabIndex = 0; this.groupBox2.TabStop = false; this.groupBox2.Text = " Költségvetés forrása"; // // label38 // this.label38.Location = new System.Drawing.Point(379, 78); this.label38.Name = "label38"; this.label38.Size = new System.Drawing.Size(19, 19); this.label38.TabIndex = 17; this.label38.Text = "%"; // // label37 // this.label37.Location = new System.Drawing.Point(379, 51); this.label37.Name = "label37"; this.label37.Size = new System.Drawing.Size(19, 18); this.label37.TabIndex = 11; this.label37.Text = "%"; // // label36 // this.label36.Location = new System.Drawing.Point(379, 23); this.label36.Name = "label36"; this.label36.Size = new System.Drawing.Size(19, 19); this.label36.TabIndex = 5; this.label36.Text = "%"; // // label35 // this.label35.Location = new System.Drawing.Point(182, 78); this.label35.Name = "label35"; this.label35.Size = new System.Drawing.Size(20, 19); this.label35.TabIndex = 14; this.label35.Text = "%"; // // label34 // this.label34.Location = new System.Drawing.Point(182, 51); this.label34.Name = "label34"; this.label34.Size = new System.Drawing.Size(20, 18); this.label34.TabIndex = 8; this.label34.Text = "%"; // // label33 // this.label33.Location = new System.Drawing.Point(182, 23); this.label33.Name = "label33"; this.label33.Size = new System.Drawing.Size(20, 19); this.label33.TabIndex = 2; this.label33.Text = "%"; // // txtSourceOtherName // this.txtSourceOtherName.AllowNull = true; this.txtSourceOtherName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSourceOtherName.InvalidCharSet = ""; this.txtSourceOtherName.Location = new System.Drawing.Point(134, 106); this.txtSourceOtherName.MaxLength = 100; this.txtSourceOtherName.Name = "txtSourceOtherName"; this.txtSourceOtherName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSourceOtherName.Size = new System.Drawing.Size(240, 22); this.txtSourceOtherName.TabIndex = 19; this.txtSourceOtherName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtSourceOtherName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSourceOtherName.ValidationMask = ""; this.txtSourceOtherName.ValidCharSet = ""; // // label32 // this.label32.Location = new System.Drawing.Point(14, 102); this.label32.Name = "label32"; this.label32.Size = new System.Drawing.Size(106, 32); this.label32.TabIndex = 18; this.label32.Text = "Egyéb megnevezése:"; // // txtSourceOther // this.txtSourceOther.AllowNull = true; this.txtSourceOther.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSourceOther.InvalidCharSet = ""; this.txtSourceOther.Location = new System.Drawing.Point(331, 74); this.txtSourceOther.MaxLength = 6; this.txtSourceOther.Name = "txtSourceOther"; this.txtSourceOther.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSourceOther.Size = new System.Drawing.Size(43, 22); this.txtSourceOther.TabIndex = 16; this.txtSourceOther.Validation = Ndi.HelpDesk.UI.ValidationType.Number; this.txtSourceOther.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSourceOther.ValidationMask = ""; this.txtSourceOther.ValidCharSet = ",0123456789"; // // label31 // this.label31.Location = new System.Drawing.Point(211, 78); this.label31.Name = "label31"; this.label31.Size = new System.Drawing.Size(106, 19); this.label31.TabIndex = 15; this.label31.Text = "Egyéb:"; // // txtSourceTax // this.txtSourceTax.AllowNull = true; this.txtSourceTax.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSourceTax.InvalidCharSet = ""; this.txtSourceTax.Location = new System.Drawing.Point(331, 46); this.txtSourceTax.MaxLength = 6; this.txtSourceTax.Name = "txtSourceTax"; this.txtSourceTax.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSourceTax.Size = new System.Drawing.Size(43, 22); this.txtSourceTax.TabIndex = 10; this.txtSourceTax.Validation = Ndi.HelpDesk.UI.ValidationType.Number; this.txtSourceTax.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSourceTax.ValidationMask = ""; this.txtSourceTax.ValidCharSet = ",0123456789"; // // label30 // this.label30.Location = new System.Drawing.Point(211, 51); this.label30.Name = "label30"; this.label30.Size = new System.Drawing.Size(120, 18); this.label30.TabIndex = 9; this.label30.Text = "Adó 1% felajánlás:"; // // txtSourceDonation // this.txtSourceDonation.AllowNull = true; this.txtSourceDonation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSourceDonation.InvalidCharSet = ""; this.txtSourceDonation.Location = new System.Drawing.Point(331, 18); this.txtSourceDonation.MaxLength = 6; this.txtSourceDonation.Name = "txtSourceDonation"; this.txtSourceDonation.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSourceDonation.Size = new System.Drawing.Size(43, 22); this.txtSourceDonation.TabIndex = 4; this.txtSourceDonation.Validation = Ndi.HelpDesk.UI.ValidationType.Number; this.txtSourceDonation.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSourceDonation.ValidationMask = ""; this.txtSourceDonation.ValidCharSet = ",0123456789"; // // label27 // this.label27.Location = new System.Drawing.Point(211, 23); this.label27.Name = "label27"; this.label27.Size = new System.Drawing.Size(106, 19); this.label27.TabIndex = 3; this.label27.Text = "Adomány:"; // // txtSourceSponsor // this.txtSourceSponsor.AllowNull = true; this.txtSourceSponsor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSourceSponsor.InvalidCharSet = ""; this.txtSourceSponsor.Location = new System.Drawing.Point(134, 74); this.txtSourceSponsor.MaxLength = 6; this.txtSourceSponsor.Name = "txtSourceSponsor"; this.txtSourceSponsor.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSourceSponsor.Size = new System.Drawing.Size(44, 22); this.txtSourceSponsor.TabIndex = 13; this.txtSourceSponsor.Validation = Ndi.HelpDesk.UI.ValidationType.Number; this.txtSourceSponsor.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSourceSponsor.ValidationMask = ""; this.txtSourceSponsor.ValidCharSet = ",0123456789"; // // label25 // this.label25.Location = new System.Drawing.Point(14, 78); this.label25.Name = "label25"; this.label25.Size = new System.Drawing.Size(106, 19); this.label25.TabIndex = 12; this.label25.Text = "Szponzoráció:"; // // txtSourceCompetition // this.txtSourceCompetition.AllowNull = true; this.txtSourceCompetition.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSourceCompetition.InvalidCharSet = ""; this.txtSourceCompetition.Location = new System.Drawing.Point(134, 46); this.txtSourceCompetition.MaxLength = 6; this.txtSourceCompetition.Name = "txtSourceCompetition"; this.txtSourceCompetition.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSourceCompetition.Size = new System.Drawing.Size(44, 22); this.txtSourceCompetition.TabIndex = 7; this.txtSourceCompetition.Validation = Ndi.HelpDesk.UI.ValidationType.Number; this.txtSourceCompetition.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSourceCompetition.ValidationMask = ""; this.txtSourceCompetition.ValidCharSet = ",0123456789"; // // label24 // this.label24.Location = new System.Drawing.Point(14, 51); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(106, 18); this.label24.TabIndex = 6; this.label24.Text = "Pályázat:"; // // txtSourceGovernment // this.txtSourceGovernment.AllowNull = true; this.txtSourceGovernment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSourceGovernment.InvalidCharSet = ""; this.txtSourceGovernment.Location = new System.Drawing.Point(134, 18); this.txtSourceGovernment.MaxLength = 6; this.txtSourceGovernment.Name = "txtSourceGovernment"; this.txtSourceGovernment.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSourceGovernment.Size = new System.Drawing.Size(44, 22); this.txtSourceGovernment.TabIndex = 1; this.txtSourceGovernment.Validation = Ndi.HelpDesk.UI.ValidationType.Number; this.txtSourceGovernment.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSourceGovernment.ValidationMask = ""; this.txtSourceGovernment.ValidCharSet = ",0123456789"; // // label22 // this.label22.Location = new System.Drawing.Point(14, 23); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(106, 19); this.label22.TabIndex = 0; this.label22.Text = "Állami:"; // // cbxOrgActOther // this.cbxOrgActOther.Location = new System.Drawing.Point(216, 42); this.cbxOrgActOther.Name = "cbxOrgActOther"; this.cbxOrgActOther.Size = new System.Drawing.Size(96, 23); this.cbxOrgActOther.TabIndex = 3; this.cbxOrgActOther.Text = "Egyéb"; // // cbxOrgActRehabilitation // this.cbxOrgActRehabilitation.Location = new System.Drawing.Point(216, 18); this.cbxOrgActRehabilitation.Name = "cbxOrgActRehabilitation"; this.cbxOrgActRehabilitation.Size = new System.Drawing.Size(72, 24); this.cbxOrgActRehabilitation.TabIndex = 1; this.cbxOrgActRehabilitation.Text = "Ellátás"; // // cbxOrgActResearch // this.cbxOrgActResearch.Location = new System.Drawing.Point(29, 42); this.cbxOrgActResearch.Name = "cbxOrgActResearch"; this.cbxOrgActResearch.Size = new System.Drawing.Size(81, 23); this.cbxOrgActResearch.TabIndex = 2; this.cbxOrgActResearch.Text = "Kutatás"; // // cbxOrgActPrevention // this.cbxOrgActPrevention.Location = new System.Drawing.Point(29, 18); this.cbxOrgActPrevention.Name = "cbxOrgActPrevention"; this.cbxOrgActPrevention.Size = new System.Drawing.Size(96, 24); this.cbxOrgActPrevention.TabIndex = 0; this.cbxOrgActPrevention.Text = "Prevenció"; // // tabOrganisation // this.tabOrganisation.Controls.Add(this.tabPageBaseData); this.tabOrganisation.Controls.Add(this.tabPage1); this.tabOrganisation.Controls.Add(this.tabPageDetails); this.tabOrganisation.Controls.Add(this.tabOtherDocuments); this.tabOrganisation.Dock = System.Windows.Forms.DockStyle.Fill; this.tabOrganisation.Location = new System.Drawing.Point(0, 46); this.tabOrganisation.Name = "tabOrganisation"; this.tabOrganisation.SelectedIndex = 0; this.tabOrganisation.Size = new System.Drawing.Size(872, 563); this.tabOrganisation.TabIndex = 1; // // tabPageBaseData // this.tabPageBaseData.Controls.Add(this.cbxActual); this.tabPageBaseData.Controls.Add(this.groupBox6); this.tabPageBaseData.Controls.Add(this.groupBox5); this.tabPageBaseData.Controls.Add(this.label9); this.tabPageBaseData.Controls.Add(this.txtPhone1); this.tabPageBaseData.Controls.Add(this.label8); this.tabPageBaseData.Controls.Add(this.txtOrganisationName); this.tabPageBaseData.Controls.Add(this.label28); this.tabPageBaseData.Controls.Add(this.txtDepartment); this.tabPageBaseData.Controls.Add(this.txtCountry); this.tabPageBaseData.Controls.Add(this.label29); this.tabPageBaseData.Controls.Add(this.txtPhone2); this.tabPageBaseData.Controls.Add(this.label4); this.tabPageBaseData.Controls.Add(this.txtPhone3); this.tabPageBaseData.Controls.Add(this.label5); this.tabPageBaseData.Controls.Add(this.txtPhonediscounted); this.tabPageBaseData.Controls.Add(this.label6); this.tabPageBaseData.Controls.Add(this.txtFax); this.tabPageBaseData.Controls.Add(this.label7); this.tabPageBaseData.Controls.Add(this.txtEmail3); this.tabPageBaseData.Controls.Add(this.txtEmail2); this.tabPageBaseData.Controls.Add(this.txtEmail1); this.tabPageBaseData.Controls.Add(this.label19); this.tabPageBaseData.Controls.Add(this.label18); this.tabPageBaseData.Controls.Add(this.label10); this.tabPageBaseData.Controls.Add(this.label23); this.tabPageBaseData.Controls.Add(this.txtHomePage); this.tabPageBaseData.Controls.Add(this.cmbRegion); this.tabPageBaseData.Controls.Add(this.label16); this.tabPageBaseData.Controls.Add(this.label13); this.tabPageBaseData.Controls.Add(this.txtOrgAddress); this.tabPageBaseData.Controls.Add(this.label14); this.tabPageBaseData.Controls.Add(this.txtCity); this.tabPageBaseData.Controls.Add(this.txtPostCode); this.tabPageBaseData.Controls.Add(this.label15); this.tabPageBaseData.Controls.Add(this.cbxActivate); this.tabPageBaseData.Controls.Add(this.groupBox1); this.tabPageBaseData.Location = new System.Drawing.Point(4, 25); this.tabPageBaseData.Name = "tabPageBaseData"; this.tabPageBaseData.Size = new System.Drawing.Size(864, 534); this.tabPageBaseData.TabIndex = 0; this.tabPageBaseData.Text = "Alapadatok"; // // cbxActual // this.cbxActual.Checked = true; this.cbxActual.CheckState = System.Windows.Forms.CheckState.Checked; this.cbxActual.Location = new System.Drawing.Point(446, 413); this.cbxActual.Name = "cbxActual"; this.cbxActual.Size = new System.Drawing.Size(125, 28); this.cbxActual.TabIndex = 36; this.cbxActual.Text = "Naprakész"; // // groupBox6 // this.groupBox6.Controls.Add(this.cbxOrgActPrevention); this.groupBox6.Controls.Add(this.cbxOrgActResearch); this.groupBox6.Controls.Add(this.cbxOrgActRehabilitation); this.groupBox6.Controls.Add(this.cbxOrgActOther); this.groupBox6.Location = new System.Drawing.Point(437, 305); this.groupBox6.Name = "groupBox6"; this.groupBox6.Size = new System.Drawing.Size(413, 69); this.groupBox6.TabIndex = 34; this.groupBox6.TabStop = false; this.groupBox6.Text = "Tevékenységek"; // // groupBox5 // this.groupBox5.Controls.Add(this.txtMailingAddress); this.groupBox5.Controls.Add(this.txtMailingCity); this.groupBox5.Controls.Add(this.txtMailingPostCode); this.groupBox5.Controls.Add(this.label1); this.groupBox5.Controls.Add(this.label2); this.groupBox5.Controls.Add(this.label3); this.groupBox5.Location = new System.Drawing.Point(5, 203); this.groupBox5.Name = "groupBox5"; this.groupBox5.Size = new System.Drawing.Size(413, 106); this.groupBox5.TabIndex = 14; this.groupBox5.TabStop = false; this.groupBox5.Text = " Levelezési cím"; // // tabPage1 // this.tabPage1.Controls.Add(this.label21); this.tabPage1.Controls.Add(this.label39); this.tabPage1.Controls.Add(this.txtEstablishmentYear); this.tabPage1.Controls.Add(this.txtCallingHours); this.tabPage1.Controls.Add(this.label26); this.tabPage1.Controls.Add(this.cmbOrganisationForm); this.tabPage1.Controls.Add(this.label17); this.tabPage1.Controls.Add(this.txtDescription); this.tabPage1.Controls.Add(this.label42); this.tabPage1.Controls.Add(this.cmbOrgWorkingArea); this.tabPage1.Controls.Add(this.label41); this.tabPage1.Controls.Add(this.txtOrgWorkingAreaOther); this.tabPage1.Location = new System.Drawing.Point(4, 25); this.tabPage1.Name = "tabPage1"; this.tabPage1.Size = new System.Drawing.Size(864, 534); this.tabPage1.TabIndex = 2; this.tabPage1.Text = "Céginformációk"; // // label21 // this.label21.Location = new System.Drawing.Point(10, 129); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(124, 19); this.label21.TabIndex = 2; this.label21.Text = "Fogadóórák:"; // // label39 // this.label39.Location = new System.Drawing.Point(10, 258); this.label39.Name = "label39"; this.label39.Size = new System.Drawing.Size(124, 19); this.label39.TabIndex = 6; this.label39.Text = "Alapítás éve:"; // // txtEstablishmentYear // this.txtEstablishmentYear.AllowNull = true; this.txtEstablishmentYear.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtEstablishmentYear.InvalidCharSet = ""; this.txtEstablishmentYear.Location = new System.Drawing.Point(139, 254); this.txtEstablishmentYear.MaxLength = 4; this.txtEstablishmentYear.Name = "txtEstablishmentYear"; this.txtEstablishmentYear.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtEstablishmentYear.Size = new System.Drawing.Size(96, 22); this.txtEstablishmentYear.TabIndex = 7; this.txtEstablishmentYear.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtEstablishmentYear.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtEstablishmentYear.ValidationMask = ""; this.txtEstablishmentYear.ValidCharSet = ",0123456789"; // // txtCallingHours // this.txtCallingHours.AllowNull = true; this.txtCallingHours.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCallingHours.InvalidCharSet = ""; this.txtCallingHours.Location = new System.Drawing.Point(139, 125); this.txtCallingHours.MaxLength = 1000; this.txtCallingHours.Multiline = true; this.txtCallingHours.Name = "txtCallingHours"; this.txtCallingHours.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCallingHours.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtCallingHours.Size = new System.Drawing.Size(696, 87); this.txtCallingHours.TabIndex = 3; this.txtCallingHours.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCallingHours.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCallingHours.ValidationMask = ""; this.txtCallingHours.ValidCharSet = ""; // // label26 // this.label26.Location = new System.Drawing.Point(10, 226); this.label26.Name = "label26"; this.label26.Size = new System.Drawing.Size(124, 19); this.label26.TabIndex = 4; this.label26.Text = "Szervezeti forma:"; // // cmbOrganisationForm // this.cmbOrganisationForm.AllowNull = false; this.cmbOrganisationForm.BreakSort = false; this.cmbOrganisationForm.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrganisationForm.Location = new System.Drawing.Point(139, 222); this.cmbOrganisationForm.Name = "cmbOrganisationForm"; this.cmbOrganisationForm.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrganisationForm.Size = new System.Drawing.Size(485, 24); this.cmbOrganisationForm.TabIndex = 5; this.cmbOrganisationForm.ToolBarUse = false; this.cmbOrganisationForm.ValidationErrorMessage = "Érvénytelen karakter!"; // // label17 // this.label17.Location = new System.Drawing.Point(10, 18); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(124, 56); this.label17.TabIndex = 0; this.label17.Text = "Az általános tevékenység rövid leírása:"; // // txtDescription // this.txtDescription.AllowNull = true; this.txtDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDescription.InvalidCharSet = ""; this.txtDescription.Location = new System.Drawing.Point(139, 14); this.txtDescription.MaxLength = 1000; this.txtDescription.Multiline = true; this.txtDescription.Name = "txtDescription"; this.txtDescription.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtDescription.Size = new System.Drawing.Size(696, 101); this.txtDescription.TabIndex = 1; this.txtDescription.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDescription.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDescription.ValidationMask = ""; this.txtDescription.ValidCharSet = ""; // // label42 // this.label42.Location = new System.Drawing.Point(10, 286); this.label42.Name = "label42"; this.label42.Size = new System.Drawing.Size(124, 19); this.label42.TabIndex = 8; this.label42.Text = "Mûködési terület:"; // // cmbOrgWorkingArea // this.cmbOrgWorkingArea.AllowNull = false; this.cmbOrgWorkingArea.BreakSort = false; this.cmbOrgWorkingArea.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrgWorkingArea.Location = new System.Drawing.Point(139, 286); this.cmbOrgWorkingArea.Name = "cmbOrgWorkingArea"; this.cmbOrgWorkingArea.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrgWorkingArea.Size = new System.Drawing.Size(485, 24); this.cmbOrgWorkingArea.TabIndex = 9; this.cmbOrgWorkingArea.ToolBarUse = false; this.cmbOrgWorkingArea.ValidationErrorMessage = "Érvénytelen karakter!"; // // label41 // this.label41.Location = new System.Drawing.Point(10, 318); this.label41.Name = "label41"; this.label41.Size = new System.Drawing.Size(124, 33); this.label41.TabIndex = 10; this.label41.Text = "Mûködési terület kiegészítése:"; // // txtOrgWorkingAreaOther // this.txtOrgWorkingAreaOther.AllowNull = true; this.txtOrgWorkingAreaOther.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgWorkingAreaOther.InvalidCharSet = ""; this.txtOrgWorkingAreaOther.Location = new System.Drawing.Point(139, 318); this.txtOrgWorkingAreaOther.MaxLength = 500; this.txtOrgWorkingAreaOther.Multiline = true; this.txtOrgWorkingAreaOther.Name = "txtOrgWorkingAreaOther"; this.txtOrgWorkingAreaOther.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgWorkingAreaOther.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtOrgWorkingAreaOther.Size = new System.Drawing.Size(696, 65); this.txtOrgWorkingAreaOther.TabIndex = 11; this.txtOrgWorkingAreaOther.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgWorkingAreaOther.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgWorkingAreaOther.ValidationMask = ""; this.txtOrgWorkingAreaOther.ValidCharSet = ""; // // tabPageDetails // this.tabPageDetails.Controls.Add(this.groupBox4); this.tabPageDetails.Controls.Add(this.groupBox3); this.tabPageDetails.Controls.Add(this.groupBox2); this.tabPageDetails.Location = new System.Drawing.Point(4, 25); this.tabPageDetails.Name = "tabPageDetails"; this.tabPageDetails.Size = new System.Drawing.Size(864, 534); this.tabPageDetails.TabIndex = 1; this.tabPageDetails.Text = "Statisztika"; // // groupBox4 // this.groupBox4.Controls.Add(this.label66); this.groupBox4.Controls.Add(this.txtJobOtherName3); this.groupBox4.Controls.Add(this.label65); this.groupBox4.Controls.Add(this.txtJobOtherName2); this.groupBox4.Controls.Add(this.label64); this.groupBox4.Controls.Add(this.txtJobOtherName1); this.groupBox4.Controls.Add(this.label63); this.groupBox4.Controls.Add(this.txtJobOther3); this.groupBox4.Controls.Add(this.label62); this.groupBox4.Controls.Add(this.txtJobOther2); this.groupBox4.Controls.Add(this.label61); this.groupBox4.Controls.Add(this.txtJobOther1); this.groupBox4.Controls.Add(this.label60); this.groupBox4.Controls.Add(this.txtJobPoliceman); this.groupBox4.Controls.Add(this.label59); this.groupBox4.Controls.Add(this.txtJobCultureOrganizer); this.groupBox4.Controls.Add(this.label53); this.groupBox4.Controls.Add(this.txtJobMentalhygiene); this.groupBox4.Controls.Add(this.label54); this.groupBox4.Controls.Add(this.txtJobLawyer); this.groupBox4.Controls.Add(this.label55); this.groupBox4.Controls.Add(this.txtJobManualist); this.groupBox4.Controls.Add(this.label56); this.groupBox4.Controls.Add(this.txtJobPedagogist); this.groupBox4.Controls.Add(this.label57); this.groupBox4.Controls.Add(this.txtJobSocialPedagogist); this.groupBox4.Controls.Add(this.label58); this.groupBox4.Controls.Add(this.txtJobSocialWorker); this.groupBox4.Controls.Add(this.label52); this.groupBox4.Controls.Add(this.txtJobSocialPolitician); this.groupBox4.Controls.Add(this.label51); this.groupBox4.Controls.Add(this.txtJobSociologist); this.groupBox4.Controls.Add(this.label50); this.groupBox4.Controls.Add(this.txtJobHealthExpert); this.groupBox4.Controls.Add(this.label49); this.groupBox4.Controls.Add(this.txtJobMedicalExpert); this.groupBox4.Controls.Add(this.label48); this.groupBox4.Controls.Add(this.txtJobDoctor); this.groupBox4.Controls.Add(this.label47); this.groupBox4.Controls.Add(this.txtJobPsychiater); this.groupBox4.Controls.Add(this.label46); this.groupBox4.Controls.Add(this.txtJobPsychologist); this.groupBox4.Location = new System.Drawing.Point(10, 157); this.groupBox4.Name = "groupBox4"; this.groupBox4.Size = new System.Drawing.Size(844, 332); this.groupBox4.TabIndex = 0; this.groupBox4.TabStop = false; this.groupBox4.Text = " Munkatársak száma szakterületenként"; // // label66 // this.label66.Location = new System.Drawing.Point(437, 277); this.label66.Name = "label66"; this.label66.Size = new System.Drawing.Size(149, 18); this.label66.TabIndex = 40; this.label66.Text = "Egyéb szakma 3 neve:"; // // txtJobOtherName3 // this.txtJobOtherName3.AllowNull = true; this.txtJobOtherName3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobOtherName3.InvalidCharSet = ""; this.txtJobOtherName3.Location = new System.Drawing.Point(590, 272); this.txtJobOtherName3.MaxLength = 50; this.txtJobOtherName3.Name = "txtJobOtherName3"; this.txtJobOtherName3.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobOtherName3.Size = new System.Drawing.Size(240, 22); this.txtJobOtherName3.TabIndex = 41; this.txtJobOtherName3.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtJobOtherName3.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobOtherName3.ValidationMask = ""; this.txtJobOtherName3.ValidCharSet = ""; // // label65 // this.label65.Location = new System.Drawing.Point(437, 249); this.label65.Name = "label65"; this.label65.Size = new System.Drawing.Size(149, 19); this.label65.TabIndex = 38; this.label65.Text = "Egyéb szakma 2 neve:"; // // txtJobOtherName2 // this.txtJobOtherName2.AllowNull = true; this.txtJobOtherName2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobOtherName2.InvalidCharSet = ""; this.txtJobOtherName2.Location = new System.Drawing.Point(590, 245); this.txtJobOtherName2.MaxLength = 50; this.txtJobOtherName2.Name = "txtJobOtherName2"; this.txtJobOtherName2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobOtherName2.Size = new System.Drawing.Size(240, 22); this.txtJobOtherName2.TabIndex = 39; this.txtJobOtherName2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtJobOtherName2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobOtherName2.ValidationMask = ""; this.txtJobOtherName2.ValidCharSet = ""; // // label64 // this.label64.Location = new System.Drawing.Point(437, 222); this.label64.Name = "label64"; this.label64.Size = new System.Drawing.Size(149, 18); this.label64.TabIndex = 36; this.label64.Text = "Egyéb szakma 1 neve:"; // // txtJobOtherName1 // this.txtJobOtherName1.AllowNull = true; this.txtJobOtherName1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobOtherName1.InvalidCharSet = ""; this.txtJobOtherName1.Location = new System.Drawing.Point(590, 217); this.txtJobOtherName1.MaxLength = 50; this.txtJobOtherName1.Name = "txtJobOtherName1"; this.txtJobOtherName1.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobOtherName1.Size = new System.Drawing.Size(240, 22); this.txtJobOtherName1.TabIndex = 37; this.txtJobOtherName1.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtJobOtherName1.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobOtherName1.ValidationMask = ""; this.txtJobOtherName1.ValidCharSet = ""; // // label63 // this.label63.Location = new System.Drawing.Point(437, 194); this.label63.Name = "label63"; this.label63.Size = new System.Drawing.Size(125, 18); this.label63.TabIndex = 34; this.label63.Text = "Egyéb szakma 3:"; // // txtJobOther3 // this.txtJobOther3.AllowNull = true; this.txtJobOther3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobOther3.InvalidCharSet = ""; this.txtJobOther3.Location = new System.Drawing.Point(590, 189); this.txtJobOther3.MaxLength = 10; this.txtJobOther3.Name = "txtJobOther3"; this.txtJobOther3.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobOther3.Size = new System.Drawing.Size(96, 22); this.txtJobOther3.TabIndex = 35; this.txtJobOther3.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobOther3.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobOther3.ValidationMask = ""; this.txtJobOther3.ValidCharSet = ""; // // label62 // this.label62.Location = new System.Drawing.Point(437, 166); this.label62.Name = "label62"; this.label62.Size = new System.Drawing.Size(125, 19); this.label62.TabIndex = 32; this.label62.Text = "Egyéb szakma 2:"; // // txtJobOther2 // this.txtJobOther2.AllowNull = true; this.txtJobOther2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobOther2.InvalidCharSet = ""; this.txtJobOther2.Location = new System.Drawing.Point(590, 162); this.txtJobOther2.MaxLength = 10; this.txtJobOther2.Name = "txtJobOther2"; this.txtJobOther2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobOther2.Size = new System.Drawing.Size(96, 22); this.txtJobOther2.TabIndex = 33; this.txtJobOther2.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobOther2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobOther2.ValidationMask = ""; this.txtJobOther2.ValidCharSet = ""; // // label61 // this.label61.Location = new System.Drawing.Point(437, 138); this.label61.Name = "label61"; this.label61.Size = new System.Drawing.Size(125, 19); this.label61.TabIndex = 30; this.label61.Text = "Egyéb szakma 1:"; // // txtJobOther1 // this.txtJobOther1.AllowNull = true; this.txtJobOther1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobOther1.InvalidCharSet = ""; this.txtJobOther1.Location = new System.Drawing.Point(590, 134); this.txtJobOther1.MaxLength = 10; this.txtJobOther1.Name = "txtJobOther1"; this.txtJobOther1.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobOther1.Size = new System.Drawing.Size(96, 22); this.txtJobOther1.TabIndex = 31; this.txtJobOther1.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobOther1.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobOther1.ValidationMask = ""; this.txtJobOther1.ValidCharSet = ""; // // label60 // this.label60.Location = new System.Drawing.Point(437, 55); this.label60.Name = "label60"; this.label60.Size = new System.Drawing.Size(125, 19); this.label60.TabIndex = 24; this.label60.Text = "Rendõr:"; // // txtJobPoliceman // this.txtJobPoliceman.AllowNull = true; this.txtJobPoliceman.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobPoliceman.InvalidCharSet = ""; this.txtJobPoliceman.Location = new System.Drawing.Point(590, 51); this.txtJobPoliceman.MaxLength = 10; this.txtJobPoliceman.Name = "txtJobPoliceman"; this.txtJobPoliceman.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobPoliceman.Size = new System.Drawing.Size(96, 22); this.txtJobPoliceman.TabIndex = 25; this.txtJobPoliceman.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobPoliceman.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobPoliceman.ValidationMask = ""; this.txtJobPoliceman.ValidCharSet = ""; // // label59 // this.label59.Location = new System.Drawing.Point(437, 111); this.label59.Name = "label59"; this.label59.Size = new System.Drawing.Size(125, 18); this.label59.TabIndex = 28; this.label59.Text = "Mûvelõdésszervezõ:"; // // txtJobCultureOrganizer // this.txtJobCultureOrganizer.AllowNull = true; this.txtJobCultureOrganizer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobCultureOrganizer.InvalidCharSet = ""; this.txtJobCultureOrganizer.Location = new System.Drawing.Point(590, 106); this.txtJobCultureOrganizer.MaxLength = 10; this.txtJobCultureOrganizer.Name = "txtJobCultureOrganizer"; this.txtJobCultureOrganizer.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobCultureOrganizer.Size = new System.Drawing.Size(96, 22); this.txtJobCultureOrganizer.TabIndex = 29; this.txtJobCultureOrganizer.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobCultureOrganizer.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobCultureOrganizer.ValidationMask = ""; this.txtJobCultureOrganizer.ValidCharSet = ""; // // label53 // this.label53.Location = new System.Drawing.Point(437, 83); this.label53.Name = "label53"; this.label53.Size = new System.Drawing.Size(125, 19); this.label53.TabIndex = 26; this.label53.Text = "Mentálhigiénikus:"; // // txtJobMentalhygiene // this.txtJobMentalhygiene.AllowNull = true; this.txtJobMentalhygiene.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobMentalhygiene.InvalidCharSet = ""; this.txtJobMentalhygiene.Location = new System.Drawing.Point(590, 78); this.txtJobMentalhygiene.MaxLength = 10; this.txtJobMentalhygiene.Name = "txtJobMentalhygiene"; this.txtJobMentalhygiene.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobMentalhygiene.Size = new System.Drawing.Size(96, 22); this.txtJobMentalhygiene.TabIndex = 27; this.txtJobMentalhygiene.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobMentalhygiene.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobMentalhygiene.ValidationMask = ""; this.txtJobMentalhygiene.ValidCharSet = ""; // // label54 // this.label54.Location = new System.Drawing.Point(437, 28); this.label54.Name = "label54"; this.label54.Size = new System.Drawing.Size(120, 18); this.label54.TabIndex = 22; this.label54.Text = "Jogász:"; // // txtJobLawyer // this.txtJobLawyer.AllowNull = true; this.txtJobLawyer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobLawyer.InvalidCharSet = ""; this.txtJobLawyer.Location = new System.Drawing.Point(590, 23); this.txtJobLawyer.MaxLength = 10; this.txtJobLawyer.Name = "txtJobLawyer"; this.txtJobLawyer.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobLawyer.Size = new System.Drawing.Size(96, 22); this.txtJobLawyer.TabIndex = 23; this.txtJobLawyer.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobLawyer.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobLawyer.ValidationMask = ""; this.txtJobLawyer.ValidCharSet = ""; // // label55 // this.label55.Location = new System.Drawing.Point(10, 305); this.label55.Name = "label55"; this.label55.Size = new System.Drawing.Size(120, 18); this.label55.TabIndex = 20; this.label55.Text = "Gyógypedagógus:"; // // txtJobManualist // this.txtJobManualist.AllowNull = true; this.txtJobManualist.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobManualist.InvalidCharSet = ""; this.txtJobManualist.Location = new System.Drawing.Point(211, 300); this.txtJobManualist.MaxLength = 10; this.txtJobManualist.Name = "txtJobManualist"; this.txtJobManualist.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobManualist.Size = new System.Drawing.Size(96, 22); this.txtJobManualist.TabIndex = 21; this.txtJobManualist.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobManualist.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobManualist.ValidationMask = ""; this.txtJobManualist.ValidCharSet = ""; // // label56 // this.label56.Location = new System.Drawing.Point(10, 277); this.label56.Name = "label56"; this.label56.Size = new System.Drawing.Size(124, 18); this.label56.TabIndex = 18; this.label56.Text = "Pedagógus:"; // // txtJobPedagogist // this.txtJobPedagogist.AllowNull = true; this.txtJobPedagogist.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobPedagogist.InvalidCharSet = ""; this.txtJobPedagogist.Location = new System.Drawing.Point(211, 272); this.txtJobPedagogist.MaxLength = 10; this.txtJobPedagogist.Name = "txtJobPedagogist"; this.txtJobPedagogist.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobPedagogist.Size = new System.Drawing.Size(96, 22); this.txtJobPedagogist.TabIndex = 19; this.txtJobPedagogist.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobPedagogist.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobPedagogist.ValidationMask = ""; this.txtJobPedagogist.ValidCharSet = ""; // // label57 // this.label57.Location = new System.Drawing.Point(10, 249); this.label57.Name = "label57"; this.label57.Size = new System.Drawing.Size(124, 19); this.label57.TabIndex = 16; this.label57.Text = "Szociálpedagógus:"; // // txtJobSocialPedagogist // this.txtJobSocialPedagogist.AllowNull = true; this.txtJobSocialPedagogist.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobSocialPedagogist.InvalidCharSet = ""; this.txtJobSocialPedagogist.Location = new System.Drawing.Point(211, 245); this.txtJobSocialPedagogist.MaxLength = 10; this.txtJobSocialPedagogist.Name = "txtJobSocialPedagogist"; this.txtJobSocialPedagogist.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobSocialPedagogist.Size = new System.Drawing.Size(96, 22); this.txtJobSocialPedagogist.TabIndex = 17; this.txtJobSocialPedagogist.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobSocialPedagogist.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobSocialPedagogist.ValidationMask = ""; this.txtJobSocialPedagogist.ValidCharSet = ""; // // label58 // this.label58.Location = new System.Drawing.Point(10, 222); this.label58.Name = "label58"; this.label58.Size = new System.Drawing.Size(115, 18); this.label58.TabIndex = 14; this.label58.Text = "Szociális munkás:"; // // txtJobSocialWorker // this.txtJobSocialWorker.AllowNull = true; this.txtJobSocialWorker.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobSocialWorker.InvalidCharSet = ""; this.txtJobSocialWorker.Location = new System.Drawing.Point(211, 217); this.txtJobSocialWorker.MaxLength = 10; this.txtJobSocialWorker.Name = "txtJobSocialWorker"; this.txtJobSocialWorker.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobSocialWorker.Size = new System.Drawing.Size(96, 22); this.txtJobSocialWorker.TabIndex = 15; this.txtJobSocialWorker.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobSocialWorker.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobSocialWorker.ValidationMask = ""; this.txtJobSocialWorker.ValidCharSet = ""; // // label52 // this.label52.Location = new System.Drawing.Point(10, 194); this.label52.Name = "label52"; this.label52.Size = new System.Drawing.Size(115, 18); this.label52.TabIndex = 12; this.label52.Text = "Szociálpolitikus:"; // // txtJobSocialPolitician // this.txtJobSocialPolitician.AllowNull = true; this.txtJobSocialPolitician.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobSocialPolitician.InvalidCharSet = ""; this.txtJobSocialPolitician.Location = new System.Drawing.Point(211, 189); this.txtJobSocialPolitician.MaxLength = 10; this.txtJobSocialPolitician.Name = "txtJobSocialPolitician"; this.txtJobSocialPolitician.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobSocialPolitician.Size = new System.Drawing.Size(96, 22); this.txtJobSocialPolitician.TabIndex = 13; this.txtJobSocialPolitician.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobSocialPolitician.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobSocialPolitician.ValidationMask = ""; this.txtJobSocialPolitician.ValidCharSet = ""; // // label51 // this.label51.Location = new System.Drawing.Point(10, 166); this.label51.Name = "label51"; this.label51.Size = new System.Drawing.Size(115, 19); this.label51.TabIndex = 10; this.label51.Text = "Szociológus:"; // // txtJobSociologist // this.txtJobSociologist.AllowNull = true; this.txtJobSociologist.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobSociologist.InvalidCharSet = ""; this.txtJobSociologist.Location = new System.Drawing.Point(211, 162); this.txtJobSociologist.MaxLength = 10; this.txtJobSociologist.Name = "txtJobSociologist"; this.txtJobSociologist.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobSociologist.Size = new System.Drawing.Size(96, 22); this.txtJobSociologist.TabIndex = 11; this.txtJobSociologist.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobSociologist.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobSociologist.ValidationMask = ""; this.txtJobSociologist.ValidCharSet = ""; // // label50 // this.label50.Location = new System.Drawing.Point(10, 138); this.label50.Name = "label50"; this.label50.Size = new System.Drawing.Size(201, 19); this.label50.TabIndex = 8; this.label50.Text = "Egészségfejlesztési szakember:"; // // txtJobHealthExpert // this.txtJobHealthExpert.AllowNull = true; this.txtJobHealthExpert.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobHealthExpert.InvalidCharSet = ""; this.txtJobHealthExpert.Location = new System.Drawing.Point(211, 134); this.txtJobHealthExpert.MaxLength = 10; this.txtJobHealthExpert.Name = "txtJobHealthExpert"; this.txtJobHealthExpert.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobHealthExpert.Size = new System.Drawing.Size(96, 22); this.txtJobHealthExpert.TabIndex = 9; this.txtJobHealthExpert.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobHealthExpert.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobHealthExpert.ValidationMask = ""; this.txtJobHealthExpert.ValidCharSet = ""; // // label49 // this.label49.Location = new System.Drawing.Point(10, 111); this.label49.Name = "label49"; this.label49.Size = new System.Drawing.Size(192, 18); this.label49.TabIndex = 6; this.label49.Text = "Más egészségügyi szakember:"; // // txtJobMedicalExpert // this.txtJobMedicalExpert.AllowNull = true; this.txtJobMedicalExpert.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobMedicalExpert.InvalidCharSet = ""; this.txtJobMedicalExpert.Location = new System.Drawing.Point(211, 106); this.txtJobMedicalExpert.MaxLength = 10; this.txtJobMedicalExpert.Name = "txtJobMedicalExpert"; this.txtJobMedicalExpert.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobMedicalExpert.Size = new System.Drawing.Size(96, 22); this.txtJobMedicalExpert.TabIndex = 7; this.txtJobMedicalExpert.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobMedicalExpert.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobMedicalExpert.ValidationMask = ""; this.txtJobMedicalExpert.ValidCharSet = ""; // // label48 // this.label48.Location = new System.Drawing.Point(10, 83); this.label48.Name = "label48"; this.label48.Size = new System.Drawing.Size(100, 19); this.label48.TabIndex = 4; this.label48.Text = "Egyéb orvos:"; // // txtJobDoctor // this.txtJobDoctor.AllowNull = true; this.txtJobDoctor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobDoctor.InvalidCharSet = ""; this.txtJobDoctor.Location = new System.Drawing.Point(211, 78); this.txtJobDoctor.MaxLength = 10; this.txtJobDoctor.Name = "txtJobDoctor"; this.txtJobDoctor.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobDoctor.Size = new System.Drawing.Size(96, 22); this.txtJobDoctor.TabIndex = 5; this.txtJobDoctor.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobDoctor.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobDoctor.ValidationMask = ""; this.txtJobDoctor.ValidCharSet = ""; // // label47 // this.label47.Location = new System.Drawing.Point(10, 55); this.label47.Name = "label47"; this.label47.Size = new System.Drawing.Size(100, 19); this.label47.TabIndex = 2; this.label47.Text = "Pszichiáter:"; // // txtJobPsychiater // this.txtJobPsychiater.AllowNull = true; this.txtJobPsychiater.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobPsychiater.InvalidCharSet = ""; this.txtJobPsychiater.Location = new System.Drawing.Point(211, 51); this.txtJobPsychiater.MaxLength = 10; this.txtJobPsychiater.Name = "txtJobPsychiater"; this.txtJobPsychiater.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobPsychiater.Size = new System.Drawing.Size(96, 22); this.txtJobPsychiater.TabIndex = 3; this.txtJobPsychiater.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobPsychiater.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobPsychiater.ValidationMask = ""; this.txtJobPsychiater.ValidCharSet = ""; // // label46 // this.label46.Location = new System.Drawing.Point(10, 28); this.label46.Name = "label46"; this.label46.Size = new System.Drawing.Size(100, 18); this.label46.TabIndex = 0; this.label46.Text = "Pszichológus:"; // // txtJobPsychologist // this.txtJobPsychologist.AllowNull = true; this.txtJobPsychologist.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJobPsychologist.InvalidCharSet = ""; this.txtJobPsychologist.Location = new System.Drawing.Point(211, 23); this.txtJobPsychologist.MaxLength = 10; this.txtJobPsychologist.Name = "txtJobPsychologist"; this.txtJobPsychologist.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJobPsychologist.Size = new System.Drawing.Size(96, 22); this.txtJobPsychologist.TabIndex = 1; this.txtJobPsychologist.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtJobPsychologist.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJobPsychologist.ValidationMask = ""; this.txtJobPsychologist.ValidCharSet = ""; // // groupBox3 // this.groupBox3.Controls.Add(this.txtWorkersVolunteer); this.groupBox3.Controls.Add(this.label43); this.groupBox3.Controls.Add(this.txtWorkersExternal); this.groupBox3.Controls.Add(this.label44); this.groupBox3.Controls.Add(this.txtWorkersFix); this.groupBox3.Controls.Add(this.label45); this.groupBox3.Location = new System.Drawing.Point(432, 9); this.groupBox3.Name = "groupBox3"; this.groupBox3.Size = new System.Drawing.Size(422, 139); this.groupBox3.TabIndex = 1; this.groupBox3.TabStop = false; this.groupBox3.Text = " Munkatársak száma"; // // txtWorkersVolunteer // this.txtWorkersVolunteer.AllowNull = true; this.txtWorkersVolunteer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtWorkersVolunteer.InvalidCharSet = ""; this.txtWorkersVolunteer.Location = new System.Drawing.Point(163, 74); this.txtWorkersVolunteer.MaxLength = 100; this.txtWorkersVolunteer.Name = "txtWorkersVolunteer"; this.txtWorkersVolunteer.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtWorkersVolunteer.Size = new System.Drawing.Size(96, 22); this.txtWorkersVolunteer.TabIndex = 5; this.txtWorkersVolunteer.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtWorkersVolunteer.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtWorkersVolunteer.ValidationMask = ""; this.txtWorkersVolunteer.ValidCharSet = ""; // // label43 // this.label43.Location = new System.Drawing.Point(14, 78); this.label43.Name = "label43"; this.label43.Size = new System.Drawing.Size(106, 19); this.label43.TabIndex = 4; this.label43.Text = "Önkéntesek:"; // // txtWorkersExternal // this.txtWorkersExternal.AllowNull = true; this.txtWorkersExternal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtWorkersExternal.InvalidCharSet = ""; this.txtWorkersExternal.Location = new System.Drawing.Point(163, 46); this.txtWorkersExternal.MaxLength = 100; this.txtWorkersExternal.Name = "txtWorkersExternal"; this.txtWorkersExternal.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtWorkersExternal.Size = new System.Drawing.Size(96, 22); this.txtWorkersExternal.TabIndex = 3; this.txtWorkersExternal.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtWorkersExternal.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtWorkersExternal.ValidationMask = ""; this.txtWorkersExternal.ValidCharSet = ""; // // label44 // this.label44.Location = new System.Drawing.Point(14, 51); this.label44.Name = "label44"; this.label44.Size = new System.Drawing.Size(106, 18); this.label44.TabIndex = 2; this.label44.Text = "Külsõ:"; // // txtWorkersFix // this.txtWorkersFix.AllowNull = true; this.txtWorkersFix.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtWorkersFix.InvalidCharSet = ""; this.txtWorkersFix.Location = new System.Drawing.Point(163, 18); this.txtWorkersFix.MaxLength = 100; this.txtWorkersFix.Name = "txtWorkersFix"; this.txtWorkersFix.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtWorkersFix.Size = new System.Drawing.Size(96, 22); this.txtWorkersFix.TabIndex = 1; this.txtWorkersFix.Validation = Ndi.HelpDesk.UI.ValidationType.Integer; this.txtWorkersFix.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtWorkersFix.ValidationMask = ""; this.txtWorkersFix.ValidCharSet = ""; // // label45 // this.label45.Location = new System.Drawing.Point(14, 23); this.label45.Name = "label45"; this.label45.Size = new System.Drawing.Size(106, 19); this.label45.TabIndex = 0; this.label45.Text = "Állandó:"; // // tabOtherDocuments // this.tabOtherDocuments.Controls.Add(this.btnModify); this.tabOtherDocuments.Controls.Add(this.btnKefFilesDelete); this.tabOtherDocuments.Controls.Add(this.btnKefFilesNew); this.tabOtherDocuments.Controls.Add(this.dtgKefFiles); this.tabOtherDocuments.Location = new System.Drawing.Point(4, 25); this.tabOtherDocuments.Name = "tabOtherDocuments"; this.tabOtherDocuments.Size = new System.Drawing.Size(864, 534); this.tabOtherDocuments.TabIndex = 3; this.tabOtherDocuments.Text = "Egyéb dokumentumok"; // // btnModify // this.btnModify.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnModify.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.btnModify.Location = new System.Drawing.Point(743, 84); this.btnModify.Name = "btnModify"; this.btnModify.Size = new System.Drawing.Size(108, 23); this.btnModify.TabIndex = 35; this.btnModify.Text = "Szerkesztés"; this.btnModify.Click += new System.EventHandler(this.btnModify_Click); // // btnKefFilesDelete // this.btnKefFilesDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnKefFilesDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnKefFilesDelete.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnKefFilesDelete.Location = new System.Drawing.Point(743, 184); this.btnKefFilesDelete.Name = "btnKefFilesDelete"; this.btnKefFilesDelete.Size = new System.Drawing.Size(108, 23); this.btnKefFilesDelete.TabIndex = 34; this.btnKefFilesDelete.Text = "Törlés"; this.btnKefFilesDelete.Click += new System.EventHandler(this.btnKefFilesDelete_Click); // // btnKefFilesNew // this.btnKefFilesNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnKefFilesNew.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnKefFilesNew.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnKefFilesNew.Location = new System.Drawing.Point(743, 55); this.btnKefFilesNew.Name = "btnKefFilesNew"; this.btnKefFilesNew.Size = new System.Drawing.Size(108, 23); this.btnKefFilesNew.TabIndex = 33; this.btnKefFilesNew.Text = "Új"; this.btnKefFilesNew.Click += new System.EventHandler(this.btnKefFilesNew_Click); // // dtgKefFiles // this.dtgKefFiles.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgKefFiles.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgKefFiles.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgKefFiles.CaptionVisible = false; this.dtgKefFiles.DataMember = ""; this.dtgKefFiles.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgKefFiles.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgKefFiles.Location = new System.Drawing.Point(13, 25); this.dtgKefFiles.Name = "dtgKefFiles"; this.dtgKefFiles.ReadOnly = true; this.dtgKefFiles.RowHeaderWidth = 3; this.dtgKefFiles.Size = new System.Drawing.Size(711, 448); this.dtgKefFiles.TabIndex = 32; this.dtgKefFiles.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgKefFiles.DoubleClick += new System.EventHandler(this.dtgKefFiles_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgKefFiles; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.dataGridTextBoxColumn1, this.dataGridTextBoxColumn2, this.dataGridTextBoxColumn3, this.dataGridTextBoxColumn4}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // dataGridTextBoxColumn1 // this.dataGridTextBoxColumn1.Format = ""; this.dataGridTextBoxColumn1.FormatInfo = null; this.dataGridTextBoxColumn1.HeaderText = "Név"; this.dataGridTextBoxColumn1.MappingName = "Name"; this.dataGridTextBoxColumn1.Width = 150; // // dataGridTextBoxColumn2 // this.dataGridTextBoxColumn2.Format = ""; this.dataGridTextBoxColumn2.FormatInfo = null; this.dataGridTextBoxColumn2.HeaderText = "Letöltés"; this.dataGridTextBoxColumn2.MappingName = "Path"; this.dataGridTextBoxColumn2.Width = 140; // // dataGridTextBoxColumn3 // this.dataGridTextBoxColumn3.Format = ""; this.dataGridTextBoxColumn3.FormatInfo = null; this.dataGridTextBoxColumn3.HeaderText = "File méret"; this.dataGridTextBoxColumn3.MappingName = "FileSize"; this.dataGridTextBoxColumn3.Width = 75; // // dataGridTextBoxColumn4 // this.dataGridTextBoxColumn4.Format = ""; this.dataGridTextBoxColumn4.FormatInfo = null; this.dataGridTextBoxColumn4.HeaderText = "Rövid leírás"; this.dataGridTextBoxColumn4.MappingName = "Description"; this.dataGridTextBoxColumn4.Width = 200; // // frmOrganisationEdit // this.AcceptButton = this.btnOk; this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(872, 655); this.Controls.Add(this.tabOrganisation); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.pHeader); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmOrganisationEdit"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmOrganisationEdit_Load); this.pnlBottom.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.tabOrganisation.ResumeLayout(false); this.tabPageBaseData.ResumeLayout(false); this.tabPageBaseData.PerformLayout(); this.groupBox6.ResumeLayout(false); this.groupBox5.ResumeLayout(false); this.groupBox5.PerformLayout(); this.tabPage1.ResumeLayout(false); this.tabPage1.PerformLayout(); this.tabPageDetails.ResumeLayout(false); this.groupBox4.ResumeLayout(false); this.groupBox4.PerformLayout(); this.groupBox3.ResumeLayout(false); this.groupBox3.PerformLayout(); this.tabOtherDocuments.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dtgKefFiles)).EndInit(); this.ResumeLayout(false); }
public void CreateSimpleComboWithActive(DataTable table, TextComboBox combo, bool sort) { combo.Items.Clear(); combo.Items.Clear(); ArrayList oItemList = new ArrayList(); DataTable oTable = table; oItemList.Add(new StringListItem("", "")); for (int i = 0; i < oTable.Rows.Count; i++) { if (oTable.Columns["IsActive"] != null && Convert.ToInt32(oTable.Rows[i]["IsActive"]) != 1) { continue; } if (oTable.Columns["Active"] != null && Convert.ToInt32(oTable.Rows[i]["Active"]) != 1) { continue; } oItemList.Add( new StringListItem((string) oTable.Rows[i]["Id"].ToString(), // SzZs 2004.06.16 - ToString () (string) oTable.Rows[i]["Name"])); } // --- If there are elements in the list if (oItemList.Count > 0) { if(sort) { // --- Sort the arraylist oItemList.Sort(new ObjectComparer("Name")); } combo.DisplayMember = "Name"; combo.ValueMember = "Id"; // --- Set the Item list as the source combo.DataSource = oItemList; } }
public void CreateSimpleComboWithActive(DataTable table, TextComboBox combo) { CreateSimpleComboWithActive(table, combo, true); }
public void CreateSimpleCombo(DataTable table, TextComboBox combo) { if (combo.DataSource == null) combo.Items.Clear(); ArrayList oItemList = new ArrayList(); DataTable oTable = table; oItemList.Add(new StringListItem("", "")); for (int i = 0; i < oTable.Rows.Count; i++) { oItemList.Add( new StringListItem((string) oTable.Rows[i]["Id"].ToString(), // SzZs 2004.06.16 - ToString () (string) oTable.Rows[i]["Name"])); } // --- If there are elements in the list if (oItemList.Count > 0) { // --- Sort the arraylist oItemList.Sort(new ObjectComparer("Name")); combo.DisplayMember = "Name"; combo.ValueMember = "Id"; // --- Set the Item list as the source combo.DataSource = oItemList; } }
/// <summary> /// Creates the professional combo. /// </summary> /// <param name="combo">The combo.</param> public void CreateProfessionalCombo(TextComboBox combo) { DataTable dttype = new DataTable("Type"); DataColumn colID = new DataColumn("ID", typeof (int)); DataColumn colName = new DataColumn("Name", typeof (string)); dttype.Columns.Add(colID); dttype.Columns.Add(colName); DataRow row1 = dttype.NewRow(); row1["ID"] = 1; row1["Name"] = "Szakmai"; DataRow row2 = dttype.NewRow(); row2["ID"] = 0; row2["Name"] = "Szleng"; dttype.Rows.Add(row1); dttype.Rows.Add(row2); // Load professional CreateSimpleCombo(dttype, combo); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.pnlBottom = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.grpReplacable = new System.Windows.Forms.GroupBox(); this.cbxActivate = new System.Windows.Forms.CheckBox(); this.cmbQualification = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.txtQualification = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtJob = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtAddressInstitute = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtEmail = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtFax = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtPhone = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtBiography = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtPublications = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtActivity = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtProfession = new System.Windows.Forms.Label(); this.txtGraduation = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.label10 = new System.Windows.Forms.Label(); this.label21 = new System.Windows.Forms.Label(); this.label12 = new System.Windows.Forms.Label(); this.label22 = new System.Windows.Forms.Label(); this.label17 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.grpNew = new System.Windows.Forms.GroupBox(); this.txtProfession2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtGraduation2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.cbxActivate2 = new System.Windows.Forms.CheckBox(); this.cmbQualification2 = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.txtQualification2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtJob2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtAddressInstitute2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtAddress2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtEmail2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtFax2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtPhone2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtName2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtBiography2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtPublications2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtActivity2 = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label7 = new System.Windows.Forms.Label(); this.label14 = new System.Windows.Forms.Label(); this.label15 = new System.Windows.Forms.Label(); this.label16 = new System.Windows.Forms.Label(); this.label18 = new System.Windows.Forms.Label(); this.label19 = new System.Windows.Forms.Label(); this.label20 = new System.Windows.Forms.Label(); this.label23 = new System.Windows.Forms.Label(); this.label24 = new System.Windows.Forms.Label(); this.label25 = new System.Windows.Forms.Label(); this.label26 = new System.Windows.Forms.Label(); this.label27 = new System.Windows.Forms.Label(); this.label28 = new System.Windows.Forms.Label(); this.pnlBottom.SuspendLayout(); this.grpReplacable.SuspendLayout(); this.grpNew.SuspendLayout(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(946, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Szakemberek"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Szakemberek összevonása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // pnlBottom // this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 480); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(946, 46); this.pnlBottom.TabIndex = 3; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(847, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(751, 14); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 0; this.btnOk.Text = "Csere"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // grpReplacable // this.grpReplacable.Controls.Add(this.cbxActivate); this.grpReplacable.Controls.Add(this.cmbQualification); this.grpReplacable.Controls.Add(this.txtQualification); this.grpReplacable.Controls.Add(this.txtJob); this.grpReplacable.Controls.Add(this.txtAddressInstitute); this.grpReplacable.Controls.Add(this.txtAddress); this.grpReplacable.Controls.Add(this.txtEmail); this.grpReplacable.Controls.Add(this.txtFax); this.grpReplacable.Controls.Add(this.txtPhone); this.grpReplacable.Controls.Add(this.txtName); this.grpReplacable.Controls.Add(this.txtBiography); this.grpReplacable.Controls.Add(this.txtPublications); this.grpReplacable.Controls.Add(this.txtActivity); this.grpReplacable.Controls.Add(this.txtProfession); this.grpReplacable.Controls.Add(this.txtGraduation); this.grpReplacable.Controls.Add(this.label13); this.grpReplacable.Controls.Add(this.label9); this.grpReplacable.Controls.Add(this.label8); this.grpReplacable.Controls.Add(this.label11); this.grpReplacable.Controls.Add(this.label10); this.grpReplacable.Controls.Add(this.label21); this.grpReplacable.Controls.Add(this.label12); this.grpReplacable.Controls.Add(this.label22); this.grpReplacable.Controls.Add(this.label17); this.grpReplacable.Controls.Add(this.label5); this.grpReplacable.Controls.Add(this.label4); this.grpReplacable.Controls.Add(this.label3); this.grpReplacable.Controls.Add(this.label1); this.grpReplacable.Location = new System.Drawing.Point(14, 55); this.grpReplacable.Name = "grpReplacable"; this.grpReplacable.Size = new System.Drawing.Size(452, 420); this.grpReplacable.TabIndex = 1; this.grpReplacable.TabStop = false; this.grpReplacable.Text = " Megszüntetni kívánt szakember"; // // cbxActivate // this.cbxActivate.Enabled = false; this.cbxActivate.Location = new System.Drawing.Point(154, 388); this.cbxActivate.Name = "cbxActivate"; this.cbxActivate.Size = new System.Drawing.Size(67, 27); this.cbxActivate.TabIndex = 27; this.cbxActivate.Text = "Aktív"; // // cmbQualification // this.cmbQualification.AllowNull = false; this.cmbQualification.BreakSort = false; this.cmbQualification.Location = new System.Drawing.Point(48, 355); this.cmbQualification.Name = "cmbQualification"; this.cmbQualification.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbQualification.Size = new System.Drawing.Size(72, 24); this.cmbQualification.TabIndex = 26; this.cmbQualification.ToolBarUse = false; this.cmbQualification.ValidationErrorMessage = "Érvénytelen karakter!"; this.cmbQualification.Visible = false; // // txtQualification // this.txtQualification.AllowNull = true; this.txtQualification.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtQualification.InvalidCharSet = ""; this.txtQualification.Location = new System.Drawing.Point(154, 175); this.txtQualification.MaxLength = 100; this.txtQualification.Name = "txtQualification"; this.txtQualification.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtQualification.ReadOnly = true; this.txtQualification.Size = new System.Drawing.Size(283, 15); this.txtQualification.TabIndex = 15; this.txtQualification.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtQualification.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtQualification.ValidationMask = ""; this.txtQualification.ValidCharSet = ""; // // txtJob // this.txtJob.AllowNull = true; this.txtJob.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtJob.InvalidCharSet = ""; this.txtJob.Location = new System.Drawing.Point(154, 148); this.txtJob.MaxLength = 100; this.txtJob.Name = "txtJob"; this.txtJob.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJob.ReadOnly = true; this.txtJob.Size = new System.Drawing.Size(283, 15); this.txtJob.TabIndex = 13; this.txtJob.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtJob.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJob.ValidationMask = ""; this.txtJob.ValidCharSet = ""; // // txtAddressInstitute // this.txtAddressInstitute.AllowNull = true; this.txtAddressInstitute.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtAddressInstitute.InvalidCharSet = ""; this.txtAddressInstitute.Location = new System.Drawing.Point(154, 129); this.txtAddressInstitute.MaxLength = 100; this.txtAddressInstitute.Name = "txtAddressInstitute"; this.txtAddressInstitute.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAddressInstitute.ReadOnly = true; this.txtAddressInstitute.Size = new System.Drawing.Size(283, 15); this.txtAddressInstitute.TabIndex = 11; this.txtAddressInstitute.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAddressInstitute.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAddressInstitute.ValidationMask = ""; this.txtAddressInstitute.ValidCharSet = ""; // // txtAddress // this.txtAddress.AllowNull = true; this.txtAddress.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtAddress.InvalidCharSet = ""; this.txtAddress.Location = new System.Drawing.Point(154, 97); this.txtAddress.MaxLength = 100; this.txtAddress.Name = "txtAddress"; this.txtAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAddress.ReadOnly = true; this.txtAddress.Size = new System.Drawing.Size(283, 15); this.txtAddress.TabIndex = 9; this.txtAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAddress.ValidationMask = ""; this.txtAddress.ValidCharSet = ""; // // txtEmail // this.txtEmail.AllowNull = true; this.txtEmail.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtEmail.InvalidCharSet = ""; this.txtEmail.Location = new System.Drawing.Point(154, 78); this.txtEmail.MaxLength = 100; this.txtEmail.Name = "txtEmail"; this.txtEmail.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtEmail.ReadOnly = true; this.txtEmail.Size = new System.Drawing.Size(283, 15); this.txtEmail.TabIndex = 7; this.txtEmail.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtEmail.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtEmail.ValidationMask = ""; this.txtEmail.ValidCharSet = ""; // // txtFax // this.txtFax.AllowNull = true; this.txtFax.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtFax.InvalidCharSet = ""; this.txtFax.Location = new System.Drawing.Point(154, 60); this.txtFax.MaxLength = 100; this.txtFax.Name = "txtFax"; this.txtFax.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFax.ReadOnly = true; this.txtFax.Size = new System.Drawing.Size(283, 15); this.txtFax.TabIndex = 5; this.txtFax.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFax.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFax.ValidationMask = ""; this.txtFax.ValidCharSet = ""; // // txtPhone // this.txtPhone.AllowNull = true; this.txtPhone.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtPhone.InvalidCharSet = ""; this.txtPhone.Location = new System.Drawing.Point(154, 42); this.txtPhone.MaxLength = 100; this.txtPhone.Name = "txtPhone"; this.txtPhone.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPhone.ReadOnly = true; this.txtPhone.Size = new System.Drawing.Size(283, 15); this.txtPhone.TabIndex = 3; this.txtPhone.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPhone.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPhone.ValidationMask = ""; this.txtPhone.ValidCharSet = ""; // // txtName // this.txtName.AllowNull = true; this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtName.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.txtName.InvalidCharSet = ""; this.txtName.Location = new System.Drawing.Point(154, 23); this.txtName.MaxLength = 100; this.txtName.Name = "txtName"; this.txtName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtName.ReadOnly = true; this.txtName.Size = new System.Drawing.Size(283, 19); this.txtName.TabIndex = 1; this.txtName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtName.ValidationMask = ""; this.txtName.ValidCharSet = ""; // // txtBiography // this.txtBiography.AllowNull = true; this.txtBiography.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtBiography.InvalidCharSet = ""; this.txtBiography.Location = new System.Drawing.Point(154, 337); this.txtBiography.MaxLength = 100; this.txtBiography.Multiline = true; this.txtBiography.Name = "txtBiography"; this.txtBiography.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtBiography.ReadOnly = true; this.txtBiography.Size = new System.Drawing.Size(283, 46); this.txtBiography.TabIndex = 25; this.txtBiography.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtBiography.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtBiography.ValidationMask = ""; this.txtBiography.ValidCharSet = ""; // // txtPublications // this.txtPublications.AllowNull = true; this.txtPublications.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPublications.InvalidCharSet = ""; this.txtPublications.Location = new System.Drawing.Point(154, 286); this.txtPublications.MaxLength = 100; this.txtPublications.Multiline = true; this.txtPublications.Name = "txtPublications"; this.txtPublications.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPublications.ReadOnly = true; this.txtPublications.Size = new System.Drawing.Size(283, 46); this.txtPublications.TabIndex = 23; this.txtPublications.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPublications.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPublications.ValidationMask = ""; this.txtPublications.ValidCharSet = ""; // // txtActivity // this.txtActivity.AllowNull = true; this.txtActivity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtActivity.InvalidCharSet = ""; this.txtActivity.Location = new System.Drawing.Point(154, 235); this.txtActivity.MaxLength = 100; this.txtActivity.Multiline = true; this.txtActivity.Name = "txtActivity"; this.txtActivity.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtActivity.ReadOnly = true; this.txtActivity.Size = new System.Drawing.Size(283, 47); this.txtActivity.TabIndex = 21; this.txtActivity.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtActivity.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtActivity.ValidationMask = ""; this.txtActivity.ValidCharSet = ""; // // txtProfession // this.txtProfession.Location = new System.Drawing.Point(154, 217); this.txtProfession.Name = "txtProfession"; this.txtProfession.Size = new System.Drawing.Size(283, 18); this.txtProfession.TabIndex = 19; // // txtGraduation // this.txtGraduation.Location = new System.Drawing.Point(154, 198); this.txtGraduation.Name = "txtGraduation"; this.txtGraduation.Size = new System.Drawing.Size(283, 19); this.txtGraduation.TabIndex = 17; // // label13 // this.label13.Location = new System.Drawing.Point(10, 337); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(134, 18); this.label13.TabIndex = 24; this.label13.Text = "Önéletrajz:"; // // label9 // this.label9.Location = new System.Drawing.Point(10, 286); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(134, 19); this.label9.TabIndex = 22; this.label9.Text = "Publikációk:"; // // label8 // this.label8.Location = new System.Drawing.Point(10, 235); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(144, 19); this.label8.TabIndex = 20; this.label8.Text = "Szakmai tevékenység:"; // // label11 // this.label11.Location = new System.Drawing.Point(10, 217); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(134, 18); this.label11.TabIndex = 18; this.label11.Text = "Szakma:"; // // label10 // this.label10.Location = new System.Drawing.Point(10, 198); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(134, 19); this.label10.TabIndex = 16; this.label10.Text = "Tudományos fokozat:"; // // label21 // this.label21.Location = new System.Drawing.Point(10, 166); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(124, 32); this.label21.TabIndex = 14; this.label21.Text = "Legmagasabb iskolai végzettsége:"; // // label12 // this.label12.Location = new System.Drawing.Point(10, 148); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(100, 18); this.label12.TabIndex = 12; this.label12.Text = "Munkahely:"; // // label22 // this.label22.Location = new System.Drawing.Point(10, 115); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(100, 33); this.label22.TabIndex = 10; this.label22.Text = "Intézményes levelezési cím:"; // // label17 // this.label17.Location = new System.Drawing.Point(10, 60); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(100, 18); this.label17.TabIndex = 4; this.label17.Text = "Fax:"; // // label5 // this.label5.Location = new System.Drawing.Point(10, 97); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(100, 18); this.label5.TabIndex = 8; this.label5.Text = "Cím:"; // // label4 // this.label4.Location = new System.Drawing.Point(10, 42); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(100, 18); this.label4.TabIndex = 2; this.label4.Text = "Telefonszám:"; // // label3 // this.label3.Location = new System.Drawing.Point(10, 78); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(100, 19); this.label3.TabIndex = 6; this.label3.Text = "E-mail cím:"; // // label1 // this.label1.Location = new System.Drawing.Point(10, 23); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(100, 19); this.label1.TabIndex = 0; this.label1.Text = "Név:"; // // grpNew // this.grpNew.Controls.Add(this.txtProfession2); this.grpNew.Controls.Add(this.txtGraduation2); this.grpNew.Controls.Add(this.cbxActivate2); this.grpNew.Controls.Add(this.cmbQualification2); this.grpNew.Controls.Add(this.txtQualification2); this.grpNew.Controls.Add(this.txtJob2); this.grpNew.Controls.Add(this.txtAddressInstitute2); this.grpNew.Controls.Add(this.txtAddress2); this.grpNew.Controls.Add(this.txtEmail2); this.grpNew.Controls.Add(this.txtFax2); this.grpNew.Controls.Add(this.txtPhone2); this.grpNew.Controls.Add(this.txtName2); this.grpNew.Controls.Add(this.txtBiography2); this.grpNew.Controls.Add(this.txtPublications2); this.grpNew.Controls.Add(this.txtActivity2); this.grpNew.Controls.Add(this.label7); this.grpNew.Controls.Add(this.label14); this.grpNew.Controls.Add(this.label15); this.grpNew.Controls.Add(this.label16); this.grpNew.Controls.Add(this.label18); this.grpNew.Controls.Add(this.label19); this.grpNew.Controls.Add(this.label20); this.grpNew.Controls.Add(this.label23); this.grpNew.Controls.Add(this.label24); this.grpNew.Controls.Add(this.label25); this.grpNew.Controls.Add(this.label26); this.grpNew.Controls.Add(this.label27); this.grpNew.Controls.Add(this.label28); this.grpNew.Location = new System.Drawing.Point(480, 55); this.grpNew.Name = "grpNew"; this.grpNew.Size = new System.Drawing.Size(451, 420); this.grpNew.TabIndex = 2; this.grpNew.TabStop = false; this.grpNew.Text = " Új szakember"; // // txtProfession2 // this.txtProfession2.AllowNull = true; this.txtProfession2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtProfession2.InvalidCharSet = ""; this.txtProfession2.Location = new System.Drawing.Point(158, 217); this.txtProfession2.MaxLength = 100; this.txtProfession2.Name = "txtProfession2"; this.txtProfession2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtProfession2.ReadOnly = true; this.txtProfession2.Size = new System.Drawing.Size(284, 15); this.txtProfession2.TabIndex = 19; this.txtProfession2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtProfession2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtProfession2.ValidationMask = ""; this.txtProfession2.ValidCharSet = ""; // // txtGraduation2 // this.txtGraduation2.AllowNull = true; this.txtGraduation2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtGraduation2.InvalidCharSet = ""; this.txtGraduation2.Location = new System.Drawing.Point(158, 198); this.txtGraduation2.MaxLength = 100; this.txtGraduation2.Name = "txtGraduation2"; this.txtGraduation2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtGraduation2.ReadOnly = true; this.txtGraduation2.Size = new System.Drawing.Size(284, 15); this.txtGraduation2.TabIndex = 17; this.txtGraduation2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtGraduation2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtGraduation2.ValidationMask = ""; this.txtGraduation2.ValidCharSet = ""; // // cbxActivate2 // this.cbxActivate2.Enabled = false; this.cbxActivate2.Location = new System.Drawing.Point(156, 388); this.cbxActivate2.Name = "cbxActivate2"; this.cbxActivate2.Size = new System.Drawing.Size(67, 27); this.cbxActivate2.TabIndex = 27; this.cbxActivate2.Text = "Aktív"; // // cmbQualification2 // this.cmbQualification2.AllowNull = false; this.cmbQualification2.BreakSort = false; this.cmbQualification2.Location = new System.Drawing.Point(50, 355); this.cmbQualification2.Name = "cmbQualification2"; this.cmbQualification2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbQualification2.Size = new System.Drawing.Size(72, 24); this.cmbQualification2.TabIndex = 26; this.cmbQualification2.ToolBarUse = false; this.cmbQualification2.ValidationErrorMessage = "Érvénytelen karakter!"; this.cmbQualification2.Visible = false; // // txtQualification2 // this.txtQualification2.AllowNull = true; this.txtQualification2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtQualification2.InvalidCharSet = ""; this.txtQualification2.Location = new System.Drawing.Point(156, 175); this.txtQualification2.MaxLength = 100; this.txtQualification2.Name = "txtQualification2"; this.txtQualification2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtQualification2.ReadOnly = true; this.txtQualification2.Size = new System.Drawing.Size(283, 15); this.txtQualification2.TabIndex = 15; this.txtQualification2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtQualification2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtQualification2.ValidationMask = ""; this.txtQualification2.ValidCharSet = ""; // // txtJob2 // this.txtJob2.AllowNull = true; this.txtJob2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtJob2.InvalidCharSet = ""; this.txtJob2.Location = new System.Drawing.Point(156, 148); this.txtJob2.MaxLength = 100; this.txtJob2.Name = "txtJob2"; this.txtJob2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJob2.ReadOnly = true; this.txtJob2.Size = new System.Drawing.Size(283, 15); this.txtJob2.TabIndex = 13; this.txtJob2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtJob2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJob2.ValidationMask = ""; this.txtJob2.ValidCharSet = ""; // // txtAddressInstitute2 // this.txtAddressInstitute2.AllowNull = true; this.txtAddressInstitute2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtAddressInstitute2.InvalidCharSet = ""; this.txtAddressInstitute2.Location = new System.Drawing.Point(156, 129); this.txtAddressInstitute2.MaxLength = 100; this.txtAddressInstitute2.Name = "txtAddressInstitute2"; this.txtAddressInstitute2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAddressInstitute2.ReadOnly = true; this.txtAddressInstitute2.Size = new System.Drawing.Size(283, 15); this.txtAddressInstitute2.TabIndex = 11; this.txtAddressInstitute2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAddressInstitute2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAddressInstitute2.ValidationMask = ""; this.txtAddressInstitute2.ValidCharSet = ""; // // txtAddress2 // this.txtAddress2.AllowNull = true; this.txtAddress2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtAddress2.InvalidCharSet = ""; this.txtAddress2.Location = new System.Drawing.Point(156, 97); this.txtAddress2.MaxLength = 100; this.txtAddress2.Name = "txtAddress2"; this.txtAddress2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAddress2.ReadOnly = true; this.txtAddress2.Size = new System.Drawing.Size(283, 15); this.txtAddress2.TabIndex = 9; this.txtAddress2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAddress2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAddress2.ValidationMask = ""; this.txtAddress2.ValidCharSet = ""; // // txtEmail2 // this.txtEmail2.AllowNull = true; this.txtEmail2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtEmail2.InvalidCharSet = ""; this.txtEmail2.Location = new System.Drawing.Point(156, 78); this.txtEmail2.MaxLength = 100; this.txtEmail2.Name = "txtEmail2"; this.txtEmail2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtEmail2.ReadOnly = true; this.txtEmail2.Size = new System.Drawing.Size(283, 15); this.txtEmail2.TabIndex = 7; this.txtEmail2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtEmail2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtEmail2.ValidationMask = ""; this.txtEmail2.ValidCharSet = ""; // // txtFax2 // this.txtFax2.AllowNull = true; this.txtFax2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtFax2.InvalidCharSet = ""; this.txtFax2.Location = new System.Drawing.Point(156, 60); this.txtFax2.MaxLength = 100; this.txtFax2.Name = "txtFax2"; this.txtFax2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFax2.ReadOnly = true; this.txtFax2.Size = new System.Drawing.Size(283, 15); this.txtFax2.TabIndex = 5; this.txtFax2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFax2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFax2.ValidationMask = ""; this.txtFax2.ValidCharSet = ""; // // txtPhone2 // this.txtPhone2.AllowNull = true; this.txtPhone2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtPhone2.InvalidCharSet = ""; this.txtPhone2.Location = new System.Drawing.Point(156, 42); this.txtPhone2.MaxLength = 100; this.txtPhone2.Name = "txtPhone2"; this.txtPhone2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPhone2.ReadOnly = true; this.txtPhone2.Size = new System.Drawing.Size(283, 15); this.txtPhone2.TabIndex = 3; this.txtPhone2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPhone2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPhone2.ValidationMask = ""; this.txtPhone2.ValidCharSet = ""; // // txtName2 // this.txtName2.AllowNull = true; this.txtName2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.txtName2.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.txtName2.InvalidCharSet = ""; this.txtName2.Location = new System.Drawing.Point(156, 23); this.txtName2.MaxLength = 100; this.txtName2.Name = "txtName2"; this.txtName2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtName2.ReadOnly = true; this.txtName2.Size = new System.Drawing.Size(283, 19); this.txtName2.TabIndex = 1; this.txtName2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtName2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtName2.ValidationMask = ""; this.txtName2.ValidCharSet = ""; // // txtBiography2 // this.txtBiography2.AllowNull = true; this.txtBiography2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtBiography2.InvalidCharSet = ""; this.txtBiography2.Location = new System.Drawing.Point(156, 337); this.txtBiography2.MaxLength = 100; this.txtBiography2.Multiline = true; this.txtBiography2.Name = "txtBiography2"; this.txtBiography2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtBiography2.ReadOnly = true; this.txtBiography2.Size = new System.Drawing.Size(283, 46); this.txtBiography2.TabIndex = 25; this.txtBiography2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtBiography2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtBiography2.ValidationMask = ""; this.txtBiography2.ValidCharSet = ""; // // txtPublications2 // this.txtPublications2.AllowNull = true; this.txtPublications2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPublications2.InvalidCharSet = ""; this.txtPublications2.Location = new System.Drawing.Point(156, 286); this.txtPublications2.MaxLength = 100; this.txtPublications2.Multiline = true; this.txtPublications2.Name = "txtPublications2"; this.txtPublications2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPublications2.ReadOnly = true; this.txtPublications2.Size = new System.Drawing.Size(283, 46); this.txtPublications2.TabIndex = 23; this.txtPublications2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPublications2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPublications2.ValidationMask = ""; this.txtPublications2.ValidCharSet = ""; // // txtActivity2 // this.txtActivity2.AllowNull = true; this.txtActivity2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtActivity2.InvalidCharSet = ""; this.txtActivity2.Location = new System.Drawing.Point(156, 235); this.txtActivity2.MaxLength = 100; this.txtActivity2.Multiline = true; this.txtActivity2.Name = "txtActivity2"; this.txtActivity2.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtActivity2.ReadOnly = true; this.txtActivity2.Size = new System.Drawing.Size(283, 47); this.txtActivity2.TabIndex = 21; this.txtActivity2.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtActivity2.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtActivity2.ValidationMask = ""; this.txtActivity2.ValidCharSet = ""; // // label7 // this.label7.Location = new System.Drawing.Point(12, 337); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(134, 18); this.label7.TabIndex = 24; this.label7.Text = "Önéletrajz:"; // // label14 // this.label14.Location = new System.Drawing.Point(12, 286); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(134, 19); this.label14.TabIndex = 22; this.label14.Text = "Publikációk:"; // // label15 // this.label15.Location = new System.Drawing.Point(12, 235); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(144, 19); this.label15.TabIndex = 20; this.label15.Text = "Szakmai tevékenység:"; // // label16 // this.label16.Location = new System.Drawing.Point(12, 217); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(134, 18); this.label16.TabIndex = 18; this.label16.Text = "Szakma:"; // // label18 // this.label18.Location = new System.Drawing.Point(12, 198); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(134, 19); this.label18.TabIndex = 16; this.label18.Text = "Tudományos fokozat:"; // // label19 // this.label19.Location = new System.Drawing.Point(12, 166); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(125, 32); this.label19.TabIndex = 14; this.label19.Text = "Legmagasabb iskolai végzettsége:"; // // label20 // this.label20.Location = new System.Drawing.Point(12, 148); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(101, 18); this.label20.TabIndex = 12; this.label20.Text = "Munkahely:"; // // label23 // this.label23.Location = new System.Drawing.Point(12, 115); this.label23.Name = "label23"; this.label23.Size = new System.Drawing.Size(101, 33); this.label23.TabIndex = 10; this.label23.Text = "Intézményes levelezési cím:"; // // label24 // this.label24.Location = new System.Drawing.Point(12, 60); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(101, 18); this.label24.TabIndex = 4; this.label24.Text = "Fax:"; // // label25 // this.label25.Location = new System.Drawing.Point(12, 97); this.label25.Name = "label25"; this.label25.Size = new System.Drawing.Size(101, 18); this.label25.TabIndex = 8; this.label25.Text = "Cím:"; // // label26 // this.label26.Location = new System.Drawing.Point(12, 42); this.label26.Name = "label26"; this.label26.Size = new System.Drawing.Size(101, 18); this.label26.TabIndex = 2; this.label26.Text = "Telefonszám:"; // // label27 // this.label27.Location = new System.Drawing.Point(12, 78); this.label27.Name = "label27"; this.label27.Size = new System.Drawing.Size(101, 19); this.label27.TabIndex = 6; this.label27.Text = "E-mail cím:"; // // label28 // this.label28.Location = new System.Drawing.Point(12, 23); this.label28.Name = "label28"; this.label28.Size = new System.Drawing.Size(101, 19); this.label28.TabIndex = 0; this.label28.Text = "Név:"; // // frmExpertReplace // this.AcceptButton = this.btnOk; this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(946, 526); this.Controls.Add(this.grpNew); this.Controls.Add(this.grpReplacable); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.pHeader); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Name = "frmExpertReplace"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmExpertReplace_Load); this.pnlBottom.ResumeLayout(false); this.grpReplacable.ResumeLayout(false); this.grpReplacable.PerformLayout(); this.grpNew.ResumeLayout(false); this.grpNew.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.pnlBottom = new System.Windows.Forms.Panel(); this.cbxModifyData = new System.Windows.Forms.CheckBox(); this.btnAccept = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.btnReject = new System.Windows.Forms.Button(); this.txtLoginName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label1 = new System.Windows.Forms.Label(); this.txtUserName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label2 = new System.Windows.Forms.Label(); this.txtEmail = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label3 = new System.Windows.Forms.Label(); this.txtPhone = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label4 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.txtPostCode = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtCity = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label6 = new System.Windows.Forms.Label(); this.txtAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label7 = new System.Windows.Forms.Label(); this.txtOrganisation = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label8 = new System.Windows.Forms.Label(); this.cmbRight = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label9 = new System.Windows.Forms.Label(); this.txtSentDate = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label10 = new System.Windows.Forms.Label(); this.label12 = new System.Windows.Forms.Label(); this.rbtMan = new System.Windows.Forms.RadioButton(); this.rbtWoman = new System.Windows.Forms.RadioButton(); this.label13 = new System.Windows.Forms.Label(); this.txtBirthYear = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label14 = new System.Windows.Forms.Label(); this.txtCountry = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.cmbQualification = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label15 = new System.Windows.Forms.Label(); this.label16 = new System.Windows.Forms.Label(); this.cbxNewsmail = new System.Windows.Forms.CheckBox(); this.label17 = new System.Windows.Forms.Label(); this.txtStatus = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label11 = new System.Windows.Forms.Label(); this.txtRejectComment = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label18 = new System.Windows.Forms.Label(); this.txtReasonOfRegistration = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label19 = new System.Windows.Forms.Label(); this.txtDecidedDate = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label20 = new System.Windows.Forms.Label(); this.txtDecidedBy = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.pnlBottom.SuspendLayout(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(872, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Regisztrálandó felhasználók"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Regisztráció elbírálása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // pnlBottom // this.pnlBottom.Controls.Add(this.cbxModifyData); this.pnlBottom.Controls.Add(this.btnAccept); this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnReject); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 562); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(872, 46); this.pnlBottom.TabIndex = 42; // // cbxModifyData // this.cbxModifyData.Location = new System.Drawing.Point(422, 9); this.cbxModifyData.Name = "cbxModifyData"; this.cbxModifyData.Size = new System.Drawing.Size(154, 28); this.cbxModifyData.TabIndex = 0; this.cbxModifyData.Text = "Adatok módosítása"; this.cbxModifyData.CheckedChanged += new System.EventHandler(this.cbxModifyData_CheckedChanged); // // btnAccept // this.btnAccept.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnAccept.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnAccept.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnAccept.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnAccept.Location = new System.Drawing.Point(582, 14); this.btnAccept.Name = "btnAccept"; this.btnAccept.Size = new System.Drawing.Size(84, 23); this.btnAccept.TabIndex = 1; this.btnAccept.Text = "Elfogad"; this.btnAccept.Click += new System.EventHandler(this.btnAccept_Click); // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(774, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 3; this.btnCancel.Text = "Mégse"; // // btnReject // this.btnReject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnReject.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnReject.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnReject.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnReject.Location = new System.Drawing.Point(678, 14); this.btnReject.Name = "btnReject"; this.btnReject.Size = new System.Drawing.Size(84, 23); this.btnReject.TabIndex = 2; this.btnReject.Text = "Elutasít"; this.btnReject.Click += new System.EventHandler(this.btnReject_Click); // // txtLoginName // this.txtLoginName.AllowNull = false; this.txtLoginName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtLoginName.InvalidCharSet = ""; this.txtLoginName.Location = new System.Drawing.Point(158, 51); this.txtLoginName.MaxLength = 50; this.txtLoginName.Name = "txtLoginName"; this.txtLoginName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtLoginName.ReadOnly = true; this.txtLoginName.Size = new System.Drawing.Size(264, 22); this.txtLoginName.TabIndex = 2; this.txtLoginName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtLoginName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtLoginName.ValidationMask = ""; this.txtLoginName.ValidCharSet = ""; // // label1 // this.label1.Location = new System.Drawing.Point(14, 51); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(125, 22); this.label1.TabIndex = 1; this.label1.Text = "Bejelentkezési név:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtUserName // this.txtUserName.AllowNull = false; this.txtUserName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserName.InvalidCharSet = ""; this.txtUserName.Location = new System.Drawing.Point(158, 81); this.txtUserName.MaxLength = 100; this.txtUserName.Name = "txtUserName"; this.txtUserName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserName.Size = new System.Drawing.Size(264, 22); this.txtUserName.TabIndex = 4; this.txtUserName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserName.ValidationMask = ""; this.txtUserName.ValidCharSet = ""; // // label2 // this.label2.Location = new System.Drawing.Point(14, 81); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(125, 22); this.label2.TabIndex = 3; this.label2.Text = "Teljes név:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtEmail // this.txtEmail.AllowNull = false; this.txtEmail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtEmail.InvalidCharSet = ""; this.txtEmail.Location = new System.Drawing.Point(158, 197); this.txtEmail.MaxLength = 250; this.txtEmail.Name = "txtEmail"; this.txtEmail.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtEmail.Size = new System.Drawing.Size(264, 22); this.txtEmail.TabIndex = 13; this.txtEmail.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtEmail.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtEmail.ValidationMask = ""; this.txtEmail.ValidCharSet = ""; // // label3 // this.label3.Location = new System.Drawing.Point(14, 201); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(125, 22); this.label3.TabIndex = 12; this.label3.Text = "E-mail cím:"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtPhone // this.txtPhone.AllowNull = true; this.txtPhone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPhone.InvalidCharSet = ""; this.txtPhone.Location = new System.Drawing.Point(158, 167); this.txtPhone.MaxLength = 20; this.txtPhone.Name = "txtPhone"; this.txtPhone.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPhone.Size = new System.Drawing.Size(264, 22); this.txtPhone.TabIndex = 11; this.txtPhone.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPhone.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPhone.ValidationMask = ""; this.txtPhone.ValidCharSet = ""; // // label4 // this.label4.Location = new System.Drawing.Point(14, 171); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(125, 22); this.label4.TabIndex = 10; this.label4.Text = "Telefonszám:"; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label5 // this.label5.Location = new System.Drawing.Point(14, 231); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(125, 22); this.label5.TabIndex = 14; this.label5.Text = "Irányítószám:"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtPostCode // this.txtPostCode.AllowNull = true; this.txtPostCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPostCode.InvalidCharSet = ""; this.txtPostCode.Location = new System.Drawing.Point(158, 227); this.txtPostCode.MaxLength = 10; this.txtPostCode.Name = "txtPostCode"; this.txtPostCode.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPostCode.Size = new System.Drawing.Size(96, 22); this.txtPostCode.TabIndex = 15; this.txtPostCode.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPostCode.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPostCode.ValidationMask = ""; this.txtPostCode.ValidCharSet = ""; // // txtCity // this.txtCity.AllowNull = true; this.txtCity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCity.InvalidCharSet = ""; this.txtCity.Location = new System.Drawing.Point(158, 257); this.txtCity.MaxLength = 100; this.txtCity.Name = "txtCity"; this.txtCity.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCity.Size = new System.Drawing.Size(264, 22); this.txtCity.TabIndex = 17; this.txtCity.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCity.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCity.ValidationMask = ""; this.txtCity.ValidCharSet = ""; // // label6 // this.label6.Location = new System.Drawing.Point(14, 261); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(125, 22); this.label6.TabIndex = 16; this.label6.Text = "Település:"; this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtAddress // this.txtAddress.AllowNull = true; this.txtAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtAddress.InvalidCharSet = ""; this.txtAddress.Location = new System.Drawing.Point(158, 287); this.txtAddress.MaxLength = 100; this.txtAddress.Name = "txtAddress"; this.txtAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAddress.Size = new System.Drawing.Size(264, 22); this.txtAddress.TabIndex = 19; this.txtAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAddress.ValidationMask = ""; this.txtAddress.ValidCharSet = ""; // // label7 // this.label7.Location = new System.Drawing.Point(14, 291); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(125, 22); this.label7.TabIndex = 18; this.label7.Text = "Utca, házszám:"; this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrganisation // this.txtOrganisation.AllowNull = true; this.txtOrganisation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrganisation.InvalidCharSet = ""; this.txtOrganisation.Location = new System.Drawing.Point(586, 51); this.txtOrganisation.MaxLength = 1000; this.txtOrganisation.Name = "txtOrganisation"; this.txtOrganisation.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrganisation.ReadOnly = true; this.txtOrganisation.Size = new System.Drawing.Size(264, 22); this.txtOrganisation.TabIndex = 29; this.txtOrganisation.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrganisation.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrganisation.ValidationMask = ""; this.txtOrganisation.ValidCharSet = ""; // // label8 // this.label8.Location = new System.Drawing.Point(442, 51); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(124, 22); this.label8.TabIndex = 28; this.label8.Text = "Szervezet:"; this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cmbRight // this.cmbRight.AllowNull = false; this.cmbRight.BreakSort = false; this.cmbRight.Enabled = false; this.cmbRight.Location = new System.Drawing.Point(586, 81); this.cmbRight.Name = "cmbRight"; this.cmbRight.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbRight.Size = new System.Drawing.Size(264, 24); this.cmbRight.TabIndex = 31; this.cmbRight.ToolBarUse = false; this.cmbRight.ValidationErrorMessage = "Érvénytelen karakter!"; // // label9 // this.label9.Location = new System.Drawing.Point(442, 81); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(124, 22); this.label9.TabIndex = 30; this.label9.Text = "Jogosultság:"; this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtSentDate // this.txtSentDate.AllowNull = true; this.txtSentDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSentDate.InvalidCharSet = ""; this.txtSentDate.Location = new System.Drawing.Point(586, 112); this.txtSentDate.MaxLength = 100; this.txtSentDate.Name = "txtSentDate"; this.txtSentDate.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSentDate.ReadOnly = true; this.txtSentDate.Size = new System.Drawing.Size(168, 22); this.txtSentDate.TabIndex = 33; this.txtSentDate.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtSentDate.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSentDate.ValidationMask = ""; this.txtSentDate.ValidCharSet = ""; // // label10 // this.label10.Location = new System.Drawing.Point(442, 111); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(124, 22); this.label10.TabIndex = 32; this.label10.Text = "Küldés dátuma:"; this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label12 // this.label12.Location = new System.Drawing.Point(14, 111); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(125, 22); this.label12.TabIndex = 5; this.label12.Text = "Neme:"; this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // rbtMan // this.rbtMan.Enabled = false; this.rbtMan.Location = new System.Drawing.Point(163, 111); this.rbtMan.Name = "rbtMan"; this.rbtMan.Size = new System.Drawing.Size(58, 18); this.rbtMan.TabIndex = 6; this.rbtMan.Text = "Férfi"; // // rbtWoman // this.rbtWoman.Enabled = false; this.rbtWoman.Location = new System.Drawing.Point(235, 111); this.rbtWoman.Name = "rbtWoman"; this.rbtWoman.Size = new System.Drawing.Size(58, 18); this.rbtWoman.TabIndex = 7; this.rbtWoman.Text = "Nõ"; // // label13 // this.label13.Location = new System.Drawing.Point(14, 141); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(125, 22); this.label13.TabIndex = 8; this.label13.Text = "Születési év:"; this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtBirthYear // this.txtBirthYear.AllowNull = false; this.txtBirthYear.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtBirthYear.InvalidCharSet = ""; this.txtBirthYear.Location = new System.Drawing.Point(158, 137); this.txtBirthYear.MaxLength = 4; this.txtBirthYear.Name = "txtBirthYear"; this.txtBirthYear.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtBirthYear.Size = new System.Drawing.Size(96, 22); this.txtBirthYear.TabIndex = 9; this.txtBirthYear.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtBirthYear.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtBirthYear.ValidationMask = ""; this.txtBirthYear.ValidCharSet = ",0123456789"; // // label14 // this.label14.Location = new System.Drawing.Point(14, 321); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(125, 22); this.label14.TabIndex = 20; this.label14.Text = "Ország:"; this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtCountry // this.txtCountry.AllowNull = true; this.txtCountry.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCountry.InvalidCharSet = ""; this.txtCountry.Location = new System.Drawing.Point(158, 317); this.txtCountry.MaxLength = 100; this.txtCountry.Name = "txtCountry"; this.txtCountry.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCountry.Size = new System.Drawing.Size(264, 22); this.txtCountry.TabIndex = 21; this.txtCountry.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCountry.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCountry.ValidationMask = ""; this.txtCountry.ValidCharSet = ""; // // cmbQualification // this.cmbQualification.AllowNull = false; this.cmbQualification.BreakSort = false; this.cmbQualification.Enabled = false; this.cmbQualification.Location = new System.Drawing.Point(158, 347); this.cmbQualification.Name = "cmbQualification"; this.cmbQualification.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbQualification.Size = new System.Drawing.Size(264, 24); this.cmbQualification.TabIndex = 23; this.cmbQualification.ToolBarUse = false; this.cmbQualification.ValidationErrorMessage = "Érvénytelen karakter!"; // // label15 // this.label15.Location = new System.Drawing.Point(14, 345); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(137, 30); this.label15.TabIndex = 22; this.label15.Text = "Legmagasabb iskolai végzettsége:"; this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label16 // this.label16.Location = new System.Drawing.Point(14, 378); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(125, 22); this.label16.TabIndex = 24; this.label16.Text = "Kér hírlevelet:"; this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cbxNewsmail // this.cbxNewsmail.Enabled = false; this.cbxNewsmail.Location = new System.Drawing.Point(158, 378); this.cbxNewsmail.Name = "cbxNewsmail"; this.cbxNewsmail.Size = new System.Drawing.Size(125, 23); this.cbxNewsmail.TabIndex = 25; // // label17 // this.label17.Location = new System.Drawing.Point(442, 141); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(124, 22); this.label17.TabIndex = 34; this.label17.Text = "Regisztráció státusza:"; this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtStatus // this.txtStatus.AllowNull = true; this.txtStatus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtStatus.InvalidCharSet = ""; this.txtStatus.Location = new System.Drawing.Point(586, 142); this.txtStatus.MaxLength = 100; this.txtStatus.Name = "txtStatus"; this.txtStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtStatus.ReadOnly = true; this.txtStatus.Size = new System.Drawing.Size(168, 22); this.txtStatus.TabIndex = 35; this.txtStatus.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtStatus.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtStatus.ValidationMask = ""; this.txtStatus.ValidCharSet = ""; // // label11 // this.label11.Location = new System.Drawing.Point(442, 171); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(136, 22); this.label11.TabIndex = 36; this.label11.Text = "Elutasítás indoklása:"; this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtRejectComment // this.txtRejectComment.AllowNull = true; this.txtRejectComment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtRejectComment.InvalidCharSet = ""; this.txtRejectComment.Location = new System.Drawing.Point(586, 172); this.txtRejectComment.MaxLength = 1000; this.txtRejectComment.Multiline = true; this.txtRejectComment.Name = "txtRejectComment"; this.txtRejectComment.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtRejectComment.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtRejectComment.Size = new System.Drawing.Size(264, 69); this.txtRejectComment.TabIndex = 37; this.txtRejectComment.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtRejectComment.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtRejectComment.ValidationMask = ""; this.txtRejectComment.ValidCharSet = ""; // // label18 // this.label18.Location = new System.Drawing.Point(14, 411); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(125, 43); this.label18.TabIndex = 26; this.label18.Text = "Adatbázis használatának célja:"; this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtReasonOfRegistration // this.txtReasonOfRegistration.AllowNull = true; this.txtReasonOfRegistration.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtReasonOfRegistration.InvalidCharSet = ""; this.txtReasonOfRegistration.Location = new System.Drawing.Point(158, 409); this.txtReasonOfRegistration.MaxLength = 1000; this.txtReasonOfRegistration.Multiline = true; this.txtReasonOfRegistration.Name = "txtReasonOfRegistration"; this.txtReasonOfRegistration.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtReasonOfRegistration.Size = new System.Drawing.Size(264, 69); this.txtReasonOfRegistration.TabIndex = 27; this.txtReasonOfRegistration.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtReasonOfRegistration.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtReasonOfRegistration.ValidationMask = ""; this.txtReasonOfRegistration.ValidCharSet = ""; // // label19 // this.label19.Location = new System.Drawing.Point(442, 249); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(124, 22); this.label19.TabIndex = 38; this.label19.Text = "Elbírálás dátuma:"; this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtDecidedDate // this.txtDecidedDate.AllowNull = true; this.txtDecidedDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDecidedDate.InvalidCharSet = ""; this.txtDecidedDate.Location = new System.Drawing.Point(586, 249); this.txtDecidedDate.MaxLength = 100; this.txtDecidedDate.Name = "txtDecidedDate"; this.txtDecidedDate.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDecidedDate.ReadOnly = true; this.txtDecidedDate.Size = new System.Drawing.Size(168, 22); this.txtDecidedDate.TabIndex = 39; this.txtDecidedDate.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDecidedDate.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDecidedDate.ValidationMask = ""; this.txtDecidedDate.ValidCharSet = ""; // // label20 // this.label20.Location = new System.Drawing.Point(442, 279); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(124, 22); this.label20.TabIndex = 40; this.label20.Text = "Elbírálta:"; this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtDecidedBy // this.txtDecidedBy.AllowNull = true; this.txtDecidedBy.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDecidedBy.InvalidCharSet = ""; this.txtDecidedBy.Location = new System.Drawing.Point(586, 279); this.txtDecidedBy.MaxLength = 100; this.txtDecidedBy.Name = "txtDecidedBy"; this.txtDecidedBy.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDecidedBy.ReadOnly = true; this.txtDecidedBy.Size = new System.Drawing.Size(264, 22); this.txtDecidedBy.TabIndex = 41; this.txtDecidedBy.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDecidedBy.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDecidedBy.ValidationMask = ""; this.txtDecidedBy.ValidCharSet = ""; // // frmRegisterUserEdit // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(872, 608); this.Controls.Add(this.label20); this.Controls.Add(this.txtDecidedBy); this.Controls.Add(this.txtDecidedDate); this.Controls.Add(this.txtReasonOfRegistration); this.Controls.Add(this.txtRejectComment); this.Controls.Add(this.txtStatus); this.Controls.Add(this.txtCountry); this.Controls.Add(this.txtBirthYear); this.Controls.Add(this.txtSentDate); this.Controls.Add(this.txtOrganisation); this.Controls.Add(this.txtAddress); this.Controls.Add(this.txtCity); this.Controls.Add(this.txtPostCode); this.Controls.Add(this.txtPhone); this.Controls.Add(this.txtEmail); this.Controls.Add(this.txtUserName); this.Controls.Add(this.txtLoginName); this.Controls.Add(this.label19); this.Controls.Add(this.label18); this.Controls.Add(this.label11); this.Controls.Add(this.label17); this.Controls.Add(this.cbxNewsmail); this.Controls.Add(this.label16); this.Controls.Add(this.label15); this.Controls.Add(this.cmbQualification); this.Controls.Add(this.label14); this.Controls.Add(this.label13); this.Controls.Add(this.rbtWoman); this.Controls.Add(this.rbtMan); this.Controls.Add(this.label12); this.Controls.Add(this.label10); this.Controls.Add(this.label9); this.Controls.Add(this.cmbRight); this.Controls.Add(this.label8); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.pHeader); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmRegisterUserEdit"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmRegisterUserEdit_Load); this.pnlBottom.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProgramSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbModify = new System.Windows.Forms.ToolBarButton(); this.tbbInactivate = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.tbbExport = new System.Windows.Forms.ToolBarButton(); this.pnlFilter = new System.Windows.Forms.Panel(); this.cmbStatus = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label4 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.cmbCategory = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label3 = new System.Windows.Forms.Label(); this.cmbOrganisation = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label1 = new System.Windows.Forms.Label(); this.txtName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colProgramName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colCategory = new System.Windows.Forms.DataGridTextBoxColumn(); this.colOrganisationName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colActive = new System.Windows.Forms.DataGridBoolColumn(); this.colName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colRegion = new System.Windows.Forms.DataGridTextBoxColumn(); this.colActiv = new System.Windows.Forms.DataGridBoolColumn(); this.csvSaveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.pnlFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(593, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Programok"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Programok adatainak karbantartása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); this.imgToolbar.Images.SetKeyName(5, ""); // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbModify, this.tbbInactivate, this.tbbSeparator2, this.tbbRefresh, this.tbbExport}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(593, 28); this.tlbMain.TabIndex = 1; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbModify // this.tbbModify.ImageIndex = 1; this.tbbModify.Name = "tbbModify"; this.tbbModify.ToolTipText = "Program adatainak módosítása"; // // tbbInactivate // this.tbbInactivate.ImageIndex = 2; this.tbbInactivate.Name = "tbbInactivate"; this.tbbInactivate.ToolTipText = "Inaktiválás/aktiválás"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 3; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // tbbExport // this.tbbExport.ImageIndex = 5; this.tbbExport.Name = "tbbExport"; this.tbbExport.ToolTipText = "Lista exportálása"; // // pnlFilter // this.pnlFilter.Controls.Add(this.cmbStatus); this.pnlFilter.Controls.Add(this.label4); this.pnlFilter.Controls.Add(this.label2); this.pnlFilter.Controls.Add(this.cmbCategory); this.pnlFilter.Controls.Add(this.label3); this.pnlFilter.Controls.Add(this.cmbOrganisation); this.pnlFilter.Controls.Add(this.label1); this.pnlFilter.Controls.Add(this.txtName); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(593, 70); this.pnlFilter.TabIndex = 2; // // cmbStatus // this.cmbStatus.AllowNull = true; this.cmbStatus.BreakSort = false; this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatus.Location = new System.Drawing.Point(403, 37); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatus.Size = new System.Drawing.Size(173, 24); this.cmbStatus.TabIndex = 7; this.cmbStatus.ToolBarUse = false; this.cmbStatus.ValidationErrorMessage = "Érvénytelen karakter!"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(326, 42); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(55, 17); this.label4.TabIndex = 6; this.label4.Text = "Állapot:"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(326, 15); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(73, 17); this.label2.TabIndex = 2; this.label2.Text = "Kategória:"; // // cmbCategory // this.cmbCategory.AllowNull = true; this.cmbCategory.BreakSort = false; this.cmbCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbCategory.Location = new System.Drawing.Point(403, 9); this.cmbCategory.Name = "cmbCategory"; this.cmbCategory.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbCategory.Size = new System.Drawing.Size(173, 24); this.cmbCategory.TabIndex = 3; this.cmbCategory.ToolBarUse = false; this.cmbCategory.ValidationErrorMessage = "Érvénytelen karakter!"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(19, 42); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(75, 17); this.label3.TabIndex = 4; this.label3.Text = "Szervezet:"; // // cmbOrganisation // this.cmbOrganisation.AllowNull = true; this.cmbOrganisation.BreakSort = false; this.cmbOrganisation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrganisation.Location = new System.Drawing.Point(115, 37); this.cmbOrganisation.Name = "cmbOrganisation"; this.cmbOrganisation.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrganisation.Size = new System.Drawing.Size(192, 24); this.cmbOrganisation.TabIndex = 5; this.cmbOrganisation.ToolBarUse = false; this.cmbOrganisation.ValidationErrorMessage = "Érvénytelen karakter!"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(19, 14); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(93, 17); this.label1.TabIndex = 0; this.label1.Text = "Program név:"; // // txtName // this.txtName.AllowNull = true; this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtName.InvalidCharSet = ""; this.txtName.Location = new System.Drawing.Point(115, 9); this.txtName.MaxLength = 50; this.txtName.Name = "txtName"; this.txtName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtName.Size = new System.Drawing.Size(192, 22); this.txtName.TabIndex = 1; this.txtName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtName.ValidationMask = ""; this.txtName.ValidCharSet = ""; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 144); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(593, 199); this.dtgMain.TabIndex = 3; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colProgramName, this.colCategory, this.colOrganisationName, this.colActive}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // colProgramName // this.colProgramName.Format = ""; this.colProgramName.FormatInfo = null; this.colProgramName.HeaderText = "Program név"; this.colProgramName.MappingName = "Name"; this.colProgramName.Width = 250; // // colCategory // this.colCategory.Format = ""; this.colCategory.FormatInfo = null; this.colCategory.HeaderText = "Kategória"; this.colCategory.MappingName = "ProgramCategoryName"; this.colCategory.Width = 120; // // colOrganisationName // this.colOrganisationName.Format = ""; this.colOrganisationName.FormatInfo = null; this.colOrganisationName.HeaderText = "Szervezet"; this.colOrganisationName.MappingName = "OrganisationName"; this.colOrganisationName.Width = 180; // // colActive // this.colActive.HeaderText = "Aktív"; this.colActive.MappingName = "IsActive"; this.colActive.Width = 75; // // colName // this.colName.Format = ""; this.colName.FormatInfo = null; this.colName.Width = -1; // // colRegion // this.colRegion.Format = ""; this.colRegion.FormatInfo = null; this.colRegion.Width = -1; // // colActiv // this.colActiv.Width = -1; // // csvSaveFileDialog // this.csvSaveFileDialog.DefaultExt = "csv"; this.csvSaveFileDialog.Filter = "CSV files|*.csv|All files|*.*"; // // frmProgramSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(593, 343); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmProgramSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmProgramSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.infoBarLite1 = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.cmbKefCategory = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.txtTitle = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtSubTitle = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.pnlBottom = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.label6 = new System.Windows.Forms.Label(); this.cbxActivate = new System.Windows.Forms.CheckBox(); this.txtLink = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.tabControl = new System.Windows.Forms.TabControl(); this.tabPageData = new System.Windows.Forms.TabPage(); this.grpRank = new System.Windows.Forms.GroupBox(); this.lvRank = new System.Windows.Forms.ListView(); this.hdID = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.hdDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.hdCategory = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.hdSort = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.btnDown = new System.Windows.Forms.Button(); this.btnUp = new System.Windows.Forms.Button(); this.lblRank = new System.Windows.Forms.Label(); this.cbxManual = new System.Windows.Forms.CheckBox(); this.txtDescription = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label5 = new System.Windows.Forms.Label(); this.tabPageFile = new System.Windows.Forms.TabPage(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.lvRankDoc = new System.Windows.Forms.ListView(); this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); this.btnDownDoc = new System.Windows.Forms.Button(); this.btnUpDoc = new System.Windows.Forms.Button(); this.label4 = new System.Windows.Forms.Label(); this.txtFileDescriptionPreview = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtFileName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label9 = new System.Windows.Forms.Label(); this.btnDelete = new System.Windows.Forms.Button(); this.btnNew = new System.Windows.Forms.Button(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.dataGridTextBoxColumn1 = new System.Windows.Forms.DataGridTextBoxColumn(); this.dataGridTextBoxColumn2 = new System.Windows.Forms.DataGridTextBoxColumn(); this.txtFileDescription = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label8 = new System.Windows.Forms.Label(); this.btnDownloadUrl = new System.Windows.Forms.Button(); this.txtUrl = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label7 = new System.Windows.Forms.Label(); this.pnlBottom.SuspendLayout(); this.tabControl.SuspendLayout(); this.tabPageData.SuspendLayout(); this.grpRank.SuspendLayout(); this.tabPageFile.SuspendLayout(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // infoBarLite1 // this.infoBarLite1.BackColor = System.Drawing.SystemColors.Window; this.infoBarLite1.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.infoBarLite1.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.infoBarLite1.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.infoBarLite1.Dock = System.Windows.Forms.DockStyle.Top; this.infoBarLite1.GradientEndColor = System.Drawing.Color.White; this.infoBarLite1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.infoBarLite1.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.infoBarLite1.Image = null; this.infoBarLite1.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.infoBarLite1.ImageOffsetX = 2; this.infoBarLite1.ImageOffsetY = 0; this.infoBarLite1.Location = new System.Drawing.Point(0, 0); this.infoBarLite1.Name = "infoBarLite1"; this.infoBarLite1.Size = new System.Drawing.Size(871, 55); this.infoBarLite1.TabIndex = 0; this.infoBarLite1.Text1 = "KEF Web"; this.infoBarLite1.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.infoBarLite1.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.infoBarLite1.Text1OffsetX = 0; this.infoBarLite1.Text1OffsetY = 0; this.infoBarLite1.Text2 = "Rögzítünk egy adott kategóriához tartozó új elemet"; this.infoBarLite1.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.infoBarLite1.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.infoBarLite1.Text2OffsetX = 20; this.infoBarLite1.Text2OffsetY = 0; // // cmbKefCategory // this.cmbKefCategory.AllowNull = true; this.cmbKefCategory.BreakSort = false; this.cmbKefCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbKefCategory.Location = new System.Drawing.Point(134, 9); this.cmbKefCategory.Name = "cmbKefCategory"; this.cmbKefCategory.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbKefCategory.Size = new System.Drawing.Size(308, 24); this.cmbKefCategory.TabIndex = 1; this.cmbKefCategory.ToolBarUse = false; this.cmbKefCategory.ValidationErrorMessage = "Érvénytelen karakter!"; this.cmbKefCategory.SelectedIndexChanged += new System.EventHandler(this.cmbKefCategory_SelectedIndexChanged); // // label1 // this.label1.Location = new System.Drawing.Point(19, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(77, 19); this.label1.TabIndex = 7; this.label1.Text = "Kategória :"; // // label2 // this.label2.Location = new System.Drawing.Point(19, 37); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(48, 18); this.label2.TabIndex = 8; this.label2.Text = "Cím :"; // // label3 // this.label3.Location = new System.Drawing.Point(19, 92); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(87, 28); this.label3.TabIndex = 9; this.label3.Text = "Alcím/ Rövid leírás :"; // // txtTitle // this.txtTitle.AllowNull = true; this.txtTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtTitle.InvalidCharSet = ""; this.txtTitle.Location = new System.Drawing.Point(134, 37); this.txtTitle.MaxLength = 250; this.txtTitle.Multiline = true; this.txtTitle.Name = "txtTitle"; this.txtTitle.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtTitle.ReadOnly = true; this.txtTitle.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtTitle.Size = new System.Drawing.Size(576, 46); this.txtTitle.TabIndex = 2; this.txtTitle.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtTitle.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtTitle.ValidationMask = ""; this.txtTitle.ValidCharSet = ""; // // txtSubTitle // this.txtSubTitle.AllowNull = true; this.txtSubTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSubTitle.InvalidCharSet = ""; this.txtSubTitle.Location = new System.Drawing.Point(134, 92); this.txtSubTitle.MaxLength = 500; this.txtSubTitle.Multiline = true; this.txtSubTitle.Name = "txtSubTitle"; this.txtSubTitle.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSubTitle.ReadOnly = true; this.txtSubTitle.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtSubTitle.Size = new System.Drawing.Size(576, 46); this.txtSubTitle.TabIndex = 3; this.txtSubTitle.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtSubTitle.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSubTitle.ValidationMask = ""; this.txtSubTitle.ValidCharSet = ""; // // pnlBottom // this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 575); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(871, 54); this.pnlBottom.TabIndex = 1; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(773, 23); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(677, 23); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 0; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // label6 // this.label6.Location = new System.Drawing.Point(19, 226); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(48, 19); this.label6.TabIndex = 41; this.label6.Text = "Link : "; // // cbxActivate // this.cbxActivate.Checked = true; this.cbxActivate.CheckState = System.Windows.Forms.CheckState.Checked; this.cbxActivate.Enabled = false; this.cbxActivate.Location = new System.Drawing.Point(134, 260); this.cbxActivate.Name = "cbxActivate"; this.cbxActivate.Size = new System.Drawing.Size(68, 18); this.cbxActivate.TabIndex = 6; this.cbxActivate.Text = "Aktív"; // // txtLink // this.txtLink.AllowNull = true; this.txtLink.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtLink.InvalidCharSet = ""; this.txtLink.Location = new System.Drawing.Point(134, 226); this.txtLink.Name = "txtLink"; this.txtLink.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtLink.ReadOnly = true; this.txtLink.Size = new System.Drawing.Size(576, 22); this.txtLink.TabIndex = 5; this.txtLink.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtLink.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtLink.ValidationMask = ""; this.txtLink.ValidCharSet = ""; // // tabControl // this.tabControl.Controls.Add(this.tabPageData); this.tabControl.Controls.Add(this.tabPageFile); this.tabControl.Location = new System.Drawing.Point(0, 55); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(874, 505); this.tabControl.TabIndex = 0; // // tabPageData // this.tabPageData.Controls.Add(this.grpRank); this.tabPageData.Controls.Add(this.cbxManual); this.tabPageData.Controls.Add(this.label2); this.tabPageData.Controls.Add(this.label3); this.tabPageData.Controls.Add(this.txtLink); this.tabPageData.Controls.Add(this.txtTitle); this.tabPageData.Controls.Add(this.txtSubTitle); this.tabPageData.Controls.Add(this.txtDescription); this.tabPageData.Controls.Add(this.label6); this.tabPageData.Controls.Add(this.label5); this.tabPageData.Controls.Add(this.cbxActivate); this.tabPageData.Controls.Add(this.cmbKefCategory); this.tabPageData.Controls.Add(this.label1); this.tabPageData.Location = new System.Drawing.Point(4, 25); this.tabPageData.Name = "tabPageData"; this.tabPageData.Size = new System.Drawing.Size(866, 476); this.tabPageData.TabIndex = 0; this.tabPageData.Text = "Oldal adatok"; // // grpRank // this.grpRank.Controls.Add(this.lvRank); this.grpRank.Controls.Add(this.btnDown); this.grpRank.Controls.Add(this.btnUp); this.grpRank.Controls.Add(this.lblRank); this.grpRank.Location = new System.Drawing.Point(4, 307); this.grpRank.Name = "grpRank"; this.grpRank.Size = new System.Drawing.Size(856, 164); this.grpRank.TabIndex = 2; this.grpRank.TabStop = false; // // lvRank // this.lvRank.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lvRank.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.hdID, this.hdDescription, this.hdCategory, this.hdSort}); this.lvRank.FullRowSelect = true; this.lvRank.GridLines = true; this.lvRank.HideSelection = false; this.lvRank.HoverSelection = true; this.lvRank.Location = new System.Drawing.Point(128, 15); this.lvRank.MultiSelect = false; this.lvRank.Name = "lvRank"; this.lvRank.Size = new System.Drawing.Size(656, 142); this.lvRank.Sorting = System.Windows.Forms.SortOrder.Ascending; this.lvRank.TabIndex = 47; this.lvRank.UseCompatibleStateImageBehavior = false; this.lvRank.View = System.Windows.Forms.View.Details; // // hdID // this.hdID.Text = "ID"; this.hdID.Width = 0; // // hdDescription // this.hdDescription.Text = "Cím"; this.hdDescription.Width = 250; // // hdCategory // this.hdCategory.Text = "Kategória"; this.hdCategory.Width = 200; // // hdSort // this.hdSort.Text = "Sorrend"; this.hdSort.Width = 70; // // btnDown // this.btnDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnDown.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDown.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDown.Location = new System.Drawing.Point(791, 43); this.btnDown.Name = "btnDown"; this.btnDown.Size = new System.Drawing.Size(57, 23); this.btnDown.TabIndex = 49; this.btnDown.Text = "Le"; this.btnDown.Click += new System.EventHandler(this.btnDown_Click); // // btnUp // this.btnUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnUp.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnUp.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnUp.Location = new System.Drawing.Point(791, 15); this.btnUp.Name = "btnUp"; this.btnUp.Size = new System.Drawing.Size(57, 23); this.btnUp.TabIndex = 48; this.btnUp.Text = "Fel"; this.btnUp.Click += new System.EventHandler(this.btnUp_Click); // // lblRank // this.lblRank.Location = new System.Drawing.Point(16, 15); this.lblRank.Name = "lblRank"; this.lblRank.Size = new System.Drawing.Size(79, 23); this.lblRank.TabIndex = 46; this.lblRank.Text = "Sorrend:"; // // cbxManual // this.cbxManual.Location = new System.Drawing.Point(134, 282); this.cbxManual.Name = "cbxManual"; this.cbxManual.Size = new System.Drawing.Size(116, 18); this.cbxManual.TabIndex = 7; this.cbxManual.Text = "KEF kézikönyv"; this.cbxManual.Visible = false; // // txtDescription // this.txtDescription.AllowNull = true; this.txtDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDescription.InvalidCharSet = ""; this.txtDescription.Location = new System.Drawing.Point(134, 148); this.txtDescription.Multiline = true; this.txtDescription.Name = "txtDescription"; this.txtDescription.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDescription.ReadOnly = true; this.txtDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtDescription.Size = new System.Drawing.Size(576, 69); this.txtDescription.TabIndex = 4; this.txtDescription.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDescription.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDescription.ValidationMask = ""; this.txtDescription.ValidCharSet = ""; // // label5 // this.label5.Location = new System.Drawing.Point(19, 148); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(115, 18); this.label5.TabIndex = 11; this.label5.Text = "Részletes leírás :"; // // tabPageFile // this.tabPageFile.Controls.Add(this.groupBox1); this.tabPageFile.Controls.Add(this.txtFileDescriptionPreview); this.tabPageFile.Controls.Add(this.txtFileName); this.tabPageFile.Controls.Add(this.label9); this.tabPageFile.Controls.Add(this.btnDelete); this.tabPageFile.Controls.Add(this.btnNew); this.tabPageFile.Controls.Add(this.dtgMain); this.tabPageFile.Controls.Add(this.txtFileDescription); this.tabPageFile.Controls.Add(this.label8); this.tabPageFile.Controls.Add(this.btnDownloadUrl); this.tabPageFile.Controls.Add(this.txtUrl); this.tabPageFile.Controls.Add(this.label7); this.tabPageFile.Location = new System.Drawing.Point(4, 25); this.tabPageFile.Name = "tabPageFile"; this.tabPageFile.Size = new System.Drawing.Size(866, 476); this.tabPageFile.TabIndex = 1; this.tabPageFile.Text = "Csatolt fájlok"; // // groupBox1 // this.groupBox1.Controls.Add(this.lvRankDoc); this.groupBox1.Controls.Add(this.btnDownDoc); this.groupBox1.Controls.Add(this.btnUpDoc); this.groupBox1.Controls.Add(this.label4); this.groupBox1.Location = new System.Drawing.Point(4, 306); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(856, 164); this.groupBox1.TabIndex = 18; this.groupBox1.TabStop = false; // // lvRankDoc // this.lvRankDoc.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lvRankDoc.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2, this.columnHeader3, this.columnHeader4}); this.lvRankDoc.FullRowSelect = true; this.lvRankDoc.GridLines = true; this.lvRankDoc.HideSelection = false; this.lvRankDoc.HoverSelection = true; this.lvRankDoc.Location = new System.Drawing.Point(102, 15); this.lvRankDoc.MultiSelect = false; this.lvRankDoc.Name = "lvRankDoc"; this.lvRankDoc.Size = new System.Drawing.Size(655, 142); this.lvRankDoc.Sorting = System.Windows.Forms.SortOrder.Ascending; this.lvRankDoc.TabIndex = 47; this.lvRankDoc.UseCompatibleStateImageBehavior = false; this.lvRankDoc.View = System.Windows.Forms.View.Details; // // columnHeader1 // this.columnHeader1.Text = "ID"; this.columnHeader1.Width = 0; // // columnHeader2 // this.columnHeader2.Text = "Cím"; this.columnHeader2.Width = 250; // // columnHeader3 // this.columnHeader3.Text = "Kategória"; this.columnHeader3.Width = 200; // // columnHeader4 // this.columnHeader4.Text = "Sorrend"; this.columnHeader4.Width = 70; // // btnDownDoc // this.btnDownDoc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnDownDoc.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDownDoc.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDownDoc.Location = new System.Drawing.Point(791, 43); this.btnDownDoc.Name = "btnDownDoc"; this.btnDownDoc.Size = new System.Drawing.Size(57, 23); this.btnDownDoc.TabIndex = 49; this.btnDownDoc.Text = "Le"; this.btnDownDoc.Click += new System.EventHandler(this.btnDown_ClickDoc); // // btnUpDoc // this.btnUpDoc.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnUpDoc.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnUpDoc.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnUpDoc.Location = new System.Drawing.Point(791, 15); this.btnUpDoc.Name = "btnUpDoc"; this.btnUpDoc.Size = new System.Drawing.Size(57, 23); this.btnUpDoc.TabIndex = 48; this.btnUpDoc.Text = "Fel"; this.btnUpDoc.Click += new System.EventHandler(this.btnUp_ClickDoc); // // label4 // this.label4.Location = new System.Drawing.Point(16, 15); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(79, 23); this.label4.TabIndex = 46; this.label4.Text = "Sorrend:"; // // txtFileDescriptionPreview // this.txtFileDescriptionPreview.AllowNull = true; this.txtFileDescriptionPreview.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFileDescriptionPreview.InvalidCharSet = ""; this.txtFileDescriptionPreview.Location = new System.Drawing.Point(605, 28); this.txtFileDescriptionPreview.Multiline = true; this.txtFileDescriptionPreview.Name = "txtFileDescriptionPreview"; this.txtFileDescriptionPreview.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFileDescriptionPreview.ReadOnly = true; this.txtFileDescriptionPreview.Size = new System.Drawing.Size(221, 120); this.txtFileDescriptionPreview.TabIndex = 8; this.txtFileDescriptionPreview.TabStop = false; this.txtFileDescriptionPreview.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFileDescriptionPreview.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFileDescriptionPreview.ValidationMask = ""; this.txtFileDescriptionPreview.ValidCharSet = ""; // // txtFileName // this.txtFileName.AllowNull = false; this.txtFileName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFileName.InvalidCharSet = ""; this.txtFileName.Location = new System.Drawing.Point(106, 65); this.txtFileName.Name = "txtFileName"; this.txtFileName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFileName.Size = new System.Drawing.Size(480, 22); this.txtFileName.TabIndex = 3; this.txtFileName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFileName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFileName.ValidationMask = ""; this.txtFileName.ValidCharSet = ""; // // label9 // this.label9.Location = new System.Drawing.Point(10, 65); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(76, 18); this.label9.TabIndex = 17; this.label9.Text = "Név :"; // // btnDelete // this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDelete.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDelete.Location = new System.Drawing.Point(605, 190); this.btnDelete.Name = "btnDelete"; this.btnDelete.Size = new System.Drawing.Size(91, 23); this.btnDelete.TabIndex = 7; this.btnDelete.Text = "Törlés"; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // btnNew // this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnNew.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnNew.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnNew.Location = new System.Drawing.Point(605, 153); this.btnNew.Name = "btnNew"; this.btnNew.Size = new System.Drawing.Size(91, 24); this.btnNew.TabIndex = 6; this.btnNew.Text = "Új"; this.btnNew.Click += new System.EventHandler(this.btnNew_Click); // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(106, 157); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(480, 142); this.dtgMain.TabIndex = 5; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.CurrentCellChanged += new System.EventHandler(this.dtgMain_CurrentCellChanged); this.dtgMain.Click += new System.EventHandler(this.dtgMain_Click); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.dataGridTextBoxColumn1, this.dataGridTextBoxColumn2}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // dataGridTextBoxColumn1 // this.dataGridTextBoxColumn1.Format = ""; this.dataGridTextBoxColumn1.FormatInfo = null; this.dataGridTextBoxColumn1.HeaderText = "Letöltés neve"; this.dataGridTextBoxColumn1.MappingName = "Name"; this.dataGridTextBoxColumn1.Width = 150; // // dataGridTextBoxColumn2 // this.dataGridTextBoxColumn2.Format = ""; this.dataGridTextBoxColumn2.FormatInfo = null; this.dataGridTextBoxColumn2.HeaderText = "Útvonal"; this.dataGridTextBoxColumn2.MappingName = "Path"; this.dataGridTextBoxColumn2.Width = 140; // // txtFileDescription // this.txtFileDescription.AllowNull = false; this.txtFileDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFileDescription.InvalidCharSet = ""; this.txtFileDescription.Location = new System.Drawing.Point(106, 102); this.txtFileDescription.Multiline = true; this.txtFileDescription.Name = "txtFileDescription"; this.txtFileDescription.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFileDescription.Size = new System.Drawing.Size(480, 46); this.txtFileDescription.TabIndex = 4; this.txtFileDescription.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFileDescription.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFileDescription.ValidationMask = ""; this.txtFileDescription.ValidCharSet = ""; // // label8 // this.label8.Location = new System.Drawing.Point(10, 102); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(86, 18); this.label8.TabIndex = 8; this.label8.Text = "Rövid leírás :"; // // btnDownloadUrl // this.btnDownloadUrl.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDownloadUrl.Location = new System.Drawing.Point(490, 28); this.btnDownloadUrl.Name = "btnDownloadUrl"; this.btnDownloadUrl.Size = new System.Drawing.Size(28, 26); this.btnDownloadUrl.TabIndex = 2; this.btnDownloadUrl.Text = "..."; this.btnDownloadUrl.Click += new System.EventHandler(this.btnDownloadUrl_Click); // // txtUrl // this.txtUrl.AllowNull = false; this.txtUrl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUrl.InvalidCharSet = ""; this.txtUrl.Location = new System.Drawing.Point(106, 28); this.txtUrl.MaxLength = 100; this.txtUrl.Name = "txtUrl"; this.txtUrl.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUrl.Size = new System.Drawing.Size(355, 22); this.txtUrl.TabIndex = 1; this.txtUrl.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUrl.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUrl.ValidationMask = ""; this.txtUrl.ValidCharSet = ""; // // label7 // this.label7.Location = new System.Drawing.Point(10, 30); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(76, 18); this.label7.TabIndex = 4; this.label7.Text = "File :"; // // frmKefWebDataEdit // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(871, 629); this.Controls.Add(this.tabControl); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.infoBarLite1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmKefWebDataEdit"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmKefWebDataEdit_Load); this.pnlBottom.ResumeLayout(false); this.tabControl.ResumeLayout(false); this.tabPageData.ResumeLayout(false); this.tabPageData.PerformLayout(); this.grpRank.ResumeLayout(false); this.tabPageFile.ResumeLayout(false); this.tabPageFile.PerformLayout(); this.groupBox1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSystemLogSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbModify = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.pnlFilter = new System.Windows.Forms.Panel(); this.txtLoginName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label4 = new System.Windows.Forms.Label(); this.dtpTo = new System.Windows.Forms.DateTimePicker(); this.dtpFrom = new System.Windows.Forms.DateTimePicker(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.cmbFunctions = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label1 = new System.Windows.Forms.Label(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colEventDate = new System.Windows.Forms.DataGridTextBoxColumn(); this.colEventCategory = new System.Windows.Forms.DataGridTextBoxColumn(); this.colSeverity = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colLoginName = new System.Windows.Forms.DataGridTextBoxColumn(); this.pnlFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(603, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Rendszernapló"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Rendszeresemények listája, események megtekintése"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbModify, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(603, 28); this.tlbMain.TabIndex = 1; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbModify // this.tbbModify.ImageIndex = 1; this.tbbModify.Name = "tbbModify"; this.tbbModify.ToolTipText = "Megtekintés"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 2; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // pnlFilter // this.pnlFilter.Controls.Add(this.txtLoginName); this.pnlFilter.Controls.Add(this.label4); this.pnlFilter.Controls.Add(this.dtpTo); this.pnlFilter.Controls.Add(this.dtpFrom); this.pnlFilter.Controls.Add(this.label2); this.pnlFilter.Controls.Add(this.label3); this.pnlFilter.Controls.Add(this.cmbFunctions); this.pnlFilter.Controls.Add(this.label1); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(603, 97); this.pnlFilter.TabIndex = 2; // // txtLoginName // this.txtLoginName.AllowNull = true; this.txtLoginName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtLoginName.InvalidCharSet = ""; this.txtLoginName.Location = new System.Drawing.Point(143, 37); this.txtLoginName.MaxLength = 50; this.txtLoginName.Name = "txtLoginName"; this.txtLoginName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtLoginName.Size = new System.Drawing.Size(274, 22); this.txtLoginName.TabIndex = 3; this.txtLoginName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtLoginName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtLoginName.ValidationMask = ""; this.txtLoginName.ValidCharSet = ""; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(269, 69); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(13, 17); this.label4.TabIndex = 6; this.label4.Text = "-"; // // dtpTo // this.dtpTo.Checked = false; this.dtpTo.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dtpTo.Location = new System.Drawing.Point(283, 65); this.dtpTo.Name = "dtpTo"; this.dtpTo.ShowCheckBox = true; this.dtpTo.Size = new System.Drawing.Size(130, 22); this.dtpTo.TabIndex = 7; // // dtpFrom // this.dtpFrom.Checked = false; this.dtpFrom.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dtpFrom.Location = new System.Drawing.Point(139, 65); this.dtpFrom.Name = "dtpFrom"; this.dtpFrom.ShowCheckBox = true; this.dtpFrom.Size = new System.Drawing.Size(130, 22); this.dtpFrom.TabIndex = 5; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(10, 69); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(53, 17); this.label2.TabIndex = 4; this.label2.Text = "Dátum:"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(10, 14); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(133, 17); this.label3.TabIndex = 0; this.label3.Text = "Esemény kategória:"; // // cmbFunctions // this.cmbFunctions.AllowNull = true; this.cmbFunctions.BreakSort = false; this.cmbFunctions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbFunctions.Location = new System.Drawing.Point(143, 9); this.cmbFunctions.Name = "cmbFunctions"; this.cmbFunctions.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbFunctions.Size = new System.Drawing.Size(394, 24); this.cmbFunctions.TabIndex = 1; this.cmbFunctions.ToolBarUse = false; this.cmbFunctions.ValidationErrorMessage = "Érvénytelen karakter!"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(10, 42); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(74, 17); this.label1.TabIndex = 2; this.label1.Text = "Login név:"; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 171); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(603, 137); this.dtgMain.TabIndex = 3; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colEventDate, this.colEventCategory, this.colSeverity, this.colLoginName}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // colEventDate // this.colEventDate.Format = ""; this.colEventDate.FormatInfo = null; this.colEventDate.HeaderText = "Dátum"; this.colEventDate.MappingName = "TimeStamp"; this.colEventDate.Width = 110; // // colEventCategory // this.colEventCategory.Format = ""; this.colEventCategory.FormatInfo = null; this.colEventCategory.HeaderText = "Kategória"; this.colEventCategory.MappingName = "MethodName"; this.colEventCategory.Width = 200; // // colSeverity // this.colSeverity.Format = ""; this.colSeverity.FormatInfo = null; this.colSeverity.HeaderText = "Eredmény"; this.colSeverity.MappingName = "Severity"; this.colSeverity.Width = 75; // // colLoginName // this.colLoginName.Format = ""; this.colLoginName.FormatInfo = null; this.colLoginName.HeaderText = "Felhasználó"; this.colLoginName.MappingName = "PrincipalName"; this.colLoginName.Width = 75; // // frmSystemLogSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(603, 308); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmSystemLogSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmSystemLogSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmNewsEdit)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.pnlBottom = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.label17 = new System.Windows.Forms.Label(); this.txtAbstract = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label9 = new System.Windows.Forms.Label(); this.txtPictureUrl = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label8 = new System.Windows.Forms.Label(); this.txtTitle = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.cbxVisibleForVisitor = new System.Windows.Forms.CheckBox(); this.btnPictureUrl = new System.Windows.Forms.Button(); this.txtNewsBody = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label1 = new System.Windows.Forms.Label(); this.cbxVisibleForRegistered = new System.Windows.Forms.CheckBox(); this.cbxActivate = new System.Windows.Forms.CheckBox(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.tabControl1 = new System.Windows.Forms.TabControl(); this.tabPageBase = new System.Windows.Forms.TabPage(); this.cmbCategory = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.lblCategory = new System.Windows.Forms.Label(); this.cbxActual = new System.Windows.Forms.CheckBox(); this.btnDeleteBasePicture = new System.Windows.Forms.Button(); this.pbxPictureBase = new System.Windows.Forms.PictureBox(); this.tabPagePicture = new System.Windows.Forms.TabPage(); this.pbxView = new System.Windows.Forms.PictureBox(); this.txtUrlOther = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.btnPictureUrlOther = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colTitle = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colPictureUrl = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.label5 = new System.Windows.Forms.Label(); this.txtPictureTitle = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.btnDelete = new System.Windows.Forms.Button(); this.btnNew = new System.Windows.Forms.Button(); this.tebPageAttachment = new System.Windows.Forms.TabPage(); this.btnActivate = new System.Windows.Forms.Button(); this.lblDescription = new System.Windows.Forms.Label(); this.txtDescription = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtFilePath = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.btnFile = new System.Windows.Forms.Button(); this.lblFilePath = new System.Windows.Forms.Label(); this.lblFileTitle = new System.Windows.Forms.Label(); this.txtFileTitle = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.btnDeleteFile = new System.Windows.Forms.Button(); this.btnNewFile = new System.Windows.Forms.Button(); this.dtgFiles = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection2 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colID = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colName = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colPath = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colSize = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colDesc = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActive = new System.Windows.Forms.DataGridBoolColumn(); this.txtPictureUrlOther = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.pnlBottom.SuspendLayout(); this.tabControl1.SuspendLayout(); this.tabPageBase.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pbxPictureBase)).BeginInit(); this.tabPagePicture.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pbxView)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.tebPageAttachment.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgFiles)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(626, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Hírek, információk"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Hírek adatainak módosítása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // pnlBottom // this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 524); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(626, 52); this.pnlBottom.TabIndex = 2; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(528, 18); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 24); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(432, 18); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 24); this.btnOk.TabIndex = 0; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // label17 // this.label17.Location = new System.Drawing.Point(14, 78); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(125, 19); this.label17.TabIndex = 5; this.label17.Text = "Rövid összefoglaló:"; // // txtAbstract // this.txtAbstract.AllowNull = false; this.txtAbstract.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtAbstract.InvalidCharSet = ""; this.txtAbstract.Location = new System.Drawing.Point(144, 74); this.txtAbstract.MaxLength = 4000; this.txtAbstract.Multiline = true; this.txtAbstract.Name = "txtAbstract"; this.txtAbstract.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAbstract.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtAbstract.Size = new System.Drawing.Size(442, 92); this.txtAbstract.TabIndex = 6; this.txtAbstract.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAbstract.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAbstract.ValidationMask = ""; this.txtAbstract.ValidCharSet = ""; // // label9 // this.label9.Location = new System.Drawing.Point(14, 46); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(125, 19); this.label9.TabIndex = 2; this.label9.Text = "Kép:"; // // txtPictureUrl // this.txtPictureUrl.AllowNull = true; this.txtPictureUrl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPictureUrl.InvalidCharSet = ""; this.txtPictureUrl.Location = new System.Drawing.Point(144, 42); this.txtPictureUrl.MaxLength = 250; this.txtPictureUrl.Name = "txtPictureUrl"; this.txtPictureUrl.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPictureUrl.ReadOnly = true; this.txtPictureUrl.Size = new System.Drawing.Size(350, 22); this.txtPictureUrl.TabIndex = 3; this.txtPictureUrl.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPictureUrl.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPictureUrl.ValidationMask = ""; this.txtPictureUrl.ValidCharSet = ""; // // label8 // this.label8.Location = new System.Drawing.Point(14, 14); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(125, 18); this.label8.TabIndex = 0; this.label8.Text = "Cím:"; // // txtTitle // this.txtTitle.AllowNull = false; this.txtTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtTitle.InvalidCharSet = ""; this.txtTitle.Location = new System.Drawing.Point(144, 9); this.txtTitle.MaxLength = 250; this.txtTitle.Name = "txtTitle"; this.txtTitle.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtTitle.Size = new System.Drawing.Size(442, 22); this.txtTitle.TabIndex = 1; this.txtTitle.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtTitle.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtTitle.ValidationMask = ""; this.txtTitle.ValidCharSet = ""; // // cbxVisibleForVisitor // this.cbxVisibleForVisitor.Location = new System.Drawing.Point(144, 332); this.cbxVisibleForVisitor.Name = "cbxVisibleForVisitor"; this.cbxVisibleForVisitor.Size = new System.Drawing.Size(322, 28); this.cbxVisibleForVisitor.TabIndex = 11; this.cbxVisibleForVisitor.Text = "Látható a látogatók számára"; // // btnPictureUrl // this.btnPictureUrl.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnPictureUrl.Location = new System.Drawing.Point(499, 42); this.btnPictureUrl.Name = "btnPictureUrl"; this.btnPictureUrl.Size = new System.Drawing.Size(29, 23); this.btnPictureUrl.TabIndex = 4; this.btnPictureUrl.Text = "..."; this.btnPictureUrl.Click += new System.EventHandler(this.btnPictureUrl_Click); // // txtNewsBody // this.txtNewsBody.AllowNull = false; this.txtNewsBody.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtNewsBody.InvalidCharSet = ""; this.txtNewsBody.Location = new System.Drawing.Point(144, 175); this.txtNewsBody.Multiline = true; this.txtNewsBody.Name = "txtNewsBody"; this.txtNewsBody.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtNewsBody.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtNewsBody.Size = new System.Drawing.Size(442, 111); this.txtNewsBody.TabIndex = 8; this.txtNewsBody.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtNewsBody.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtNewsBody.ValidationMask = ""; this.txtNewsBody.ValidCharSet = ""; // // label1 // this.label1.Location = new System.Drawing.Point(14, 175); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(125, 19); this.label1.TabIndex = 7; this.label1.Text = "Szöveg:"; // // cbxVisibleForRegistered // this.cbxVisibleForRegistered.Location = new System.Drawing.Point(144, 360); this.cbxVisibleForRegistered.Name = "cbxVisibleForRegistered"; this.cbxVisibleForRegistered.Size = new System.Drawing.Size(322, 28); this.cbxVisibleForRegistered.TabIndex = 12; this.cbxVisibleForRegistered.Text = "Látható a regisztrált felhasználók számára"; // // cbxActivate // this.cbxActivate.Checked = true; this.cbxActivate.CheckState = System.Windows.Forms.CheckState.Checked; this.cbxActivate.Location = new System.Drawing.Point(144, 388); this.cbxActivate.Name = "cbxActivate"; this.cbxActivate.Size = new System.Drawing.Size(125, 23); this.cbxActivate.TabIndex = 13; this.cbxActivate.Text = "Aktív"; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); // // tabControl1 // this.tabControl1.Controls.Add(this.tabPageBase); this.tabControl1.Controls.Add(this.tabPagePicture); this.tabControl1.Controls.Add(this.tebPageAttachment); this.tabControl1.Location = new System.Drawing.Point(0, 46); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(614, 476); this.tabControl1.TabIndex = 1; // // tabPageBase // this.tabPageBase.Controls.Add(this.cmbCategory); this.tabPageBase.Controls.Add(this.lblCategory); this.tabPageBase.Controls.Add(this.cbxActual); this.tabPageBase.Controls.Add(this.btnDeleteBasePicture); this.tabPageBase.Controls.Add(this.pbxPictureBase); this.tabPageBase.Controls.Add(this.txtTitle); this.tabPageBase.Controls.Add(this.cbxVisibleForVisitor); this.tabPageBase.Controls.Add(this.txtNewsBody); this.tabPageBase.Controls.Add(this.label1); this.tabPageBase.Controls.Add(this.cbxVisibleForRegistered); this.tabPageBase.Controls.Add(this.cbxActivate); this.tabPageBase.Controls.Add(this.btnPictureUrl); this.tabPageBase.Controls.Add(this.label17); this.tabPageBase.Controls.Add(this.txtAbstract); this.tabPageBase.Controls.Add(this.label9); this.tabPageBase.Controls.Add(this.txtPictureUrl); this.tabPageBase.Controls.Add(this.label8); this.tabPageBase.Location = new System.Drawing.Point(4, 25); this.tabPageBase.Name = "tabPageBase"; this.tabPageBase.Size = new System.Drawing.Size(606, 447); this.tabPageBase.TabIndex = 0; this.tabPageBase.Text = "Hír adatai"; // // cmbCategory // this.cmbCategory.AllowNull = false; this.cmbCategory.BreakSort = false; this.cmbCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbCategory.Items.AddRange(new object[] { "Kiadvány"}); this.cmbCategory.Location = new System.Drawing.Point(144, 295); this.cmbCategory.Name = "cmbCategory"; this.cmbCategory.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbCategory.Size = new System.Drawing.Size(442, 24); this.cmbCategory.TabIndex = 10; this.cmbCategory.ToolBarUse = false; this.cmbCategory.ValidationErrorMessage = "Érvénytelen karakter!"; // // lblCategory // this.lblCategory.Location = new System.Drawing.Point(14, 295); this.lblCategory.Name = "lblCategory"; this.lblCategory.Size = new System.Drawing.Size(125, 23); this.lblCategory.TabIndex = 9; this.lblCategory.Text = "Kategória:"; // // cbxActual // this.cbxActual.Checked = true; this.cbxActual.CheckState = System.Windows.Forms.CheckState.Checked; this.cbxActual.Location = new System.Drawing.Point(144, 415); this.cbxActual.Name = "cbxActual"; this.cbxActual.Size = new System.Drawing.Size(120, 19); this.cbxActual.TabIndex = 14; this.cbxActual.Text = "Aktuális"; // // btnDeleteBasePicture // this.btnDeleteBasePicture.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDeleteBasePicture.Location = new System.Drawing.Point(533, 42); this.btnDeleteBasePicture.Name = "btnDeleteBasePicture"; this.btnDeleteBasePicture.Size = new System.Drawing.Size(53, 23); this.btnDeleteBasePicture.TabIndex = 14; this.btnDeleteBasePicture.Text = "Töröl"; this.btnDeleteBasePicture.Click += new System.EventHandler(this.btnDeleteBasePicture_Click); // // pbxPictureBase // this.pbxPictureBase.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pbxPictureBase.Location = new System.Drawing.Point(494, 332); this.pbxPictureBase.Name = "pbxPictureBase"; this.pbxPictureBase.Size = new System.Drawing.Size(92, 83); this.pbxPictureBase.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pbxPictureBase.TabIndex = 13; this.pbxPictureBase.TabStop = false; // // tabPagePicture // this.tabPagePicture.Controls.Add(this.pbxView); this.tabPagePicture.Controls.Add(this.txtUrlOther); this.tabPagePicture.Controls.Add(this.btnPictureUrlOther); this.tabPagePicture.Controls.Add(this.label2); this.tabPagePicture.Controls.Add(this.dtgMain); this.tabPagePicture.Controls.Add(this.label5); this.tabPagePicture.Controls.Add(this.txtPictureTitle); this.tabPagePicture.Controls.Add(this.btnDelete); this.tabPagePicture.Controls.Add(this.btnNew); this.tabPagePicture.Location = new System.Drawing.Point(4, 25); this.tabPagePicture.Name = "tabPagePicture"; this.tabPagePicture.Size = new System.Drawing.Size(606, 447); this.tabPagePicture.TabIndex = 1; this.tabPagePicture.Text = "További képek"; // // pbxView // this.pbxView.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.pbxView.Location = new System.Drawing.Point(500, 74); this.pbxView.Name = "pbxView"; this.pbxView.Size = new System.Drawing.Size(91, 83); this.pbxView.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pbxView.TabIndex = 11; this.pbxView.TabStop = false; // // txtUrlOther // this.txtUrlOther.AllowNull = true; this.txtUrlOther.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUrlOther.InvalidCharSet = ""; this.txtUrlOther.Location = new System.Drawing.Point(96, 14); this.txtUrlOther.MaxLength = 100; this.txtUrlOther.Name = "txtUrlOther"; this.txtUrlOther.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUrlOther.Size = new System.Drawing.Size(365, 22); this.txtUrlOther.TabIndex = 1; this.txtUrlOther.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUrlOther.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUrlOther.ValidationMask = ""; this.txtUrlOther.ValidCharSet = ""; // // btnPictureUrlOther // this.btnPictureUrlOther.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnPictureUrlOther.Location = new System.Drawing.Point(466, 14); this.btnPictureUrlOther.Name = "btnPictureUrlOther"; this.btnPictureUrlOther.Size = new System.Drawing.Size(28, 23); this.btnPictureUrlOther.TabIndex = 2; this.btnPictureUrlOther.Text = "..."; this.btnPictureUrlOther.Click += new System.EventHandler(this.btnPictureUrlOther_Click); // // label2 // this.label2.Location = new System.Drawing.Point(14, 18); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(77, 19); this.label2.TabIndex = 0; this.label2.Text = "Kép:"; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(14, 74); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(480, 360); this.dtgMain.TabIndex = 5; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.CurrentCellChanged += new System.EventHandler(this.dtgMain_CurrentCellChanged); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); this.dtgMain.Enter += new System.EventHandler(this.dtgMain_Enter); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colTitle, this.colPictureUrl}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colTitle // this.colTitle.Format = ""; this.colTitle.FormatInfo = null; this.colTitle.HeaderText = "Képaláírás"; this.colTitle.MappingName = "Title"; this.colTitle.Width = 200; // // colPictureUrl // this.colPictureUrl.Format = ""; this.colPictureUrl.FormatInfo = null; this.colPictureUrl.HeaderText = "Kép"; this.colPictureUrl.MappingName = "PictureUrl"; this.colPictureUrl.Width = 185; // // label5 // this.label5.Location = new System.Drawing.Point(14, 46); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(77, 19); this.label5.TabIndex = 3; this.label5.Text = "Képaláírás:"; // // txtPictureTitle // this.txtPictureTitle.AllowNull = true; this.txtPictureTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPictureTitle.InvalidCharSet = ""; this.txtPictureTitle.Location = new System.Drawing.Point(96, 42); this.txtPictureTitle.MaxLength = 250; this.txtPictureTitle.Name = "txtPictureTitle"; this.txtPictureTitle.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPictureTitle.Size = new System.Drawing.Size(398, 22); this.txtPictureTitle.TabIndex = 4; this.txtPictureTitle.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPictureTitle.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPictureTitle.ValidationMask = ""; this.txtPictureTitle.ValidCharSet = ""; // // btnDelete // this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDelete.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDelete.Location = new System.Drawing.Point(500, 196); this.btnDelete.Name = "btnDelete"; this.btnDelete.Size = new System.Drawing.Size(91, 24); this.btnDelete.TabIndex = 7; this.btnDelete.Text = "Törlés"; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // btnNew // this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnNew.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnNew.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnNew.Location = new System.Drawing.Point(500, 167); this.btnNew.Name = "btnNew"; this.btnNew.Size = new System.Drawing.Size(91, 23); this.btnNew.TabIndex = 6; this.btnNew.Text = "Új"; this.btnNew.Click += new System.EventHandler(this.btnNew_Click); // // tebPageAttachment // this.tebPageAttachment.Controls.Add(this.btnActivate); this.tebPageAttachment.Controls.Add(this.lblDescription); this.tebPageAttachment.Controls.Add(this.txtDescription); this.tebPageAttachment.Controls.Add(this.txtFilePath); this.tebPageAttachment.Controls.Add(this.btnFile); this.tebPageAttachment.Controls.Add(this.lblFilePath); this.tebPageAttachment.Controls.Add(this.lblFileTitle); this.tebPageAttachment.Controls.Add(this.txtFileTitle); this.tebPageAttachment.Controls.Add(this.btnDeleteFile); this.tebPageAttachment.Controls.Add(this.btnNewFile); this.tebPageAttachment.Controls.Add(this.dtgFiles); this.tebPageAttachment.Location = new System.Drawing.Point(4, 25); this.tebPageAttachment.Name = "tebPageAttachment"; this.tebPageAttachment.Size = new System.Drawing.Size(606, 447); this.tebPageAttachment.TabIndex = 2; this.tebPageAttachment.Text = "Csatolt fálok"; // // btnActivate // this.btnActivate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnActivate.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnActivate.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnActivate.Location = new System.Drawing.Point(394, 403); this.btnActivate.Name = "btnActivate"; this.btnActivate.Size = new System.Drawing.Size(91, 23); this.btnActivate.TabIndex = 23; this.btnActivate.Text = "Aktiválás"; this.btnActivate.Click += new System.EventHandler(this.btnActivate_Click); // // lblDescription // this.lblDescription.Location = new System.Drawing.Point(14, 65); this.lblDescription.Name = "lblDescription"; this.lblDescription.Size = new System.Drawing.Size(130, 23); this.lblDescription.TabIndex = 20; this.lblDescription.Text = "Leírás:"; // // txtDescription // this.txtDescription.AllowNull = true; this.txtDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDescription.InvalidCharSet = ""; this.txtDescription.Location = new System.Drawing.Point(144, 65); this.txtDescription.MaxLength = 250; this.txtDescription.Multiline = true; this.txtDescription.Name = "txtDescription"; this.txtDescription.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDescription.Size = new System.Drawing.Size(437, 69); this.txtDescription.TabIndex = 21; this.txtDescription.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDescription.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDescription.ValidationMask = ""; this.txtDescription.ValidCharSet = ""; // // txtFilePath // this.txtFilePath.AllowNull = true; this.txtFilePath.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFilePath.InvalidCharSet = ""; this.txtFilePath.Location = new System.Drawing.Point(144, 9); this.txtFilePath.MaxLength = 100; this.txtFilePath.Name = "txtFilePath"; this.txtFilePath.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFilePath.ReadOnly = true; this.txtFilePath.Size = new System.Drawing.Size(403, 22); this.txtFilePath.TabIndex = 16; this.txtFilePath.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFilePath.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFilePath.ValidationMask = ""; this.txtFilePath.ValidCharSet = ""; // // btnFile // this.btnFile.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnFile.Location = new System.Drawing.Point(552, 9); this.btnFile.Name = "btnFile"; this.btnFile.Size = new System.Drawing.Size(29, 23); this.btnFile.TabIndex = 17; this.btnFile.Text = "..."; this.btnFile.Click += new System.EventHandler(this.btnFileUrl_Click); // // lblFilePath // this.lblFilePath.Location = new System.Drawing.Point(14, 9); this.lblFilePath.Name = "lblFilePath"; this.lblFilePath.Size = new System.Drawing.Size(125, 23); this.lblFilePath.TabIndex = 15; this.lblFilePath.Text = "Fájl:"; // // lblFileTitle // this.lblFileTitle.Location = new System.Drawing.Point(14, 37); this.lblFileTitle.Name = "lblFileTitle"; this.lblFileTitle.Size = new System.Drawing.Size(130, 23); this.lblFileTitle.TabIndex = 18; this.lblFileTitle.Text = "Megjelenítendõ név:"; // // txtFileTitle // this.txtFileTitle.AllowNull = false; this.txtFileTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFileTitle.InvalidCharSet = ""; this.txtFileTitle.Location = new System.Drawing.Point(144, 37); this.txtFileTitle.MaxLength = 250; this.txtFileTitle.Name = "txtFileTitle"; this.txtFileTitle.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtFileTitle.Size = new System.Drawing.Size(437, 22); this.txtFileTitle.TabIndex = 19; this.txtFileTitle.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtFileTitle.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtFileTitle.ValidationMask = ""; this.txtFileTitle.ValidCharSet = ""; // // btnDeleteFile // this.btnDeleteFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDeleteFile.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDeleteFile.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDeleteFile.Location = new System.Drawing.Point(490, 403); this.btnDeleteFile.Name = "btnDeleteFile"; this.btnDeleteFile.Size = new System.Drawing.Size(91, 23); this.btnDeleteFile.TabIndex = 24; this.btnDeleteFile.Text = "Törlés"; this.btnDeleteFile.Click += new System.EventHandler(this.btnDeleteFile_Click); // // btnNewFile // this.btnNewFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnNewFile.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnNewFile.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnNewFile.Location = new System.Drawing.Point(298, 403); this.btnNewFile.Name = "btnNewFile"; this.btnNewFile.Size = new System.Drawing.Size(91, 23); this.btnNewFile.TabIndex = 22; this.btnNewFile.Text = "Új"; this.btnNewFile.Click += new System.EventHandler(this.btnNewFile_Click); // // dtgFiles // this.dtgFiles.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgFiles.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgFiles.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgFiles.CaptionVisible = false; this.dtgFiles.DataMember = ""; this.dtgFiles.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgFiles.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgFiles.Location = new System.Drawing.Point(14, 143); this.dtgFiles.Name = "dtgFiles"; this.dtgFiles.ReadOnly = true; this.dtgFiles.RowHeaderWidth = 3; this.dtgFiles.Size = new System.Drawing.Size(567, 249); this.dtgFiles.TabIndex = 25; this.dtgFiles.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection2}); // // customStylesCollection2 // this.customStylesCollection2.DataGrid = this.dtgFiles; this.customStylesCollection2.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colID, this.colName, this.colPath, this.colSize, this.colDesc, this.colActive}); this.customStylesCollection2.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colID // this.colID.Format = ""; this.colID.FormatInfo = null; this.colID.HeaderText = "Azonosító"; this.colID.MappingName = "ID"; this.colID.Width = 0; // // colName // this.colName.Format = ""; this.colName.FormatInfo = null; this.colName.HeaderText = "Fájlnév"; this.colName.MappingName = "Name"; this.colName.Width = 75; // // colPath // this.colPath.Format = ""; this.colPath.FormatInfo = null; this.colPath.HeaderText = "Útvonal"; this.colPath.MappingName = "Path"; this.colPath.Width = 75; // // colSize // this.colSize.Format = "### ### ### Byte"; this.colSize.FormatInfo = null; this.colSize.HeaderText = "Méret"; this.colSize.MappingName = "FileSize"; this.colSize.Width = 75; // // colDesc // this.colDesc.Format = ""; this.colDesc.FormatInfo = null; this.colDesc.HeaderText = "Leírás"; this.colDesc.MappingName = "Description"; this.colDesc.Width = 130; // // colActive // this.colActive.HeaderText = "Aktív?"; this.colActive.MappingName = "IsActive"; this.colActive.NullValue = null; this.colActive.Width = 75; // // txtPictureUrlOther // this.txtPictureUrlOther.AllowNull = true; this.txtPictureUrlOther.InvalidCharSet = ""; this.txtPictureUrlOther.Location = new System.Drawing.Point(0, 0); this.txtPictureUrlOther.Name = "txtPictureUrlOther"; this.txtPictureUrlOther.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPictureUrlOther.Size = new System.Drawing.Size(100, 22); this.txtPictureUrlOther.TabIndex = 0; this.txtPictureUrlOther.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPictureUrlOther.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPictureUrlOther.ValidationMask = ""; this.txtPictureUrlOther.ValidCharSet = ""; // // frmNewsEdit // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(626, 576); this.Controls.Add(this.tabControl1); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.pHeader); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmNewsEdit"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmNewsEdit_Load); this.pnlBottom.ResumeLayout(false); this.tabControl1.ResumeLayout(false); this.tabPageBase.ResumeLayout(false); this.tabPageBase.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pbxPictureBase)).EndInit(); this.tabPagePicture.ResumeLayout(false); this.tabPagePicture.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pbxView)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.tebPageAttachment.ResumeLayout(false); this.tebPageAttachment.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgFiles)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmContinuativeSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbNew = new System.Windows.Forms.ToolBarButton(); this.tbbModify = new System.Windows.Forms.ToolBarButton(); this.tbbInactivate = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.pnlFilter = new System.Windows.Forms.Panel(); this.cmbStatus = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.lblActive = new System.Windows.Forms.Label(); this.lblContinuativeName = new System.Windows.Forms.Label(); this.txtContinuativeName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtTargetGroup = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.lblTargetGroup = new System.Windows.Forms.Label(); this.lblPersonName = new System.Windows.Forms.Label(); this.txtPersonName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colID = new System.Windows.Forms.DataGridTextBoxColumn(); this.colContinuativeName = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colPersonName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colTargetGroup = new System.Windows.Forms.DataGridTextBoxColumn(); this.colWhere = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colDateTo = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colOuterLink = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActive = new System.Windows.Forms.DataGridBoolColumn(); this.pnlFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(609, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Továbbképzési lehetõségek ajánlásai"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Továbbképzési lehetõségek ajánlásainak karbantartása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbNew, this.tbbModify, this.tbbInactivate, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(609, 28); this.tlbMain.TabIndex = 1; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbNew // this.tbbNew.ImageIndex = 0; this.tbbNew.Name = "tbbNew"; this.tbbNew.ToolTipText = "Új továbbképzési lehetõség"; // // tbbModify // this.tbbModify.ImageIndex = 1; this.tbbModify.Name = "tbbModify"; this.tbbModify.ToolTipText = "Továbbképzési lehetõség módosítása"; // // tbbInactivate // this.tbbInactivate.ImageIndex = 2; this.tbbInactivate.Name = "tbbInactivate"; this.tbbInactivate.ToolTipText = "Inaktiválás/aktiválás"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 3; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); this.imgToolbar.Images.SetKeyName(5, ""); // // pnlFilter // this.pnlFilter.Controls.Add(this.cmbStatus); this.pnlFilter.Controls.Add(this.lblActive); this.pnlFilter.Controls.Add(this.lblContinuativeName); this.pnlFilter.Controls.Add(this.txtContinuativeName); this.pnlFilter.Controls.Add(this.txtTargetGroup); this.pnlFilter.Controls.Add(this.lblTargetGroup); this.pnlFilter.Controls.Add(this.lblPersonName); this.pnlFilter.Controls.Add(this.txtPersonName); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(609, 97); this.pnlFilter.TabIndex = 2; // // cmbStatus // this.cmbStatus.AllowNull = true; this.cmbStatus.BreakSort = false; this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatus.Location = new System.Drawing.Point(398, 65); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatus.Size = new System.Drawing.Size(192, 24); this.cmbStatus.TabIndex = 3; this.cmbStatus.ToolBarUse = false; this.cmbStatus.ValidationErrorMessage = "Érvénytelen karakter!"; // // lblActive // this.lblActive.AutoSize = true; this.lblActive.Location = new System.Drawing.Point(341, 69); this.lblActive.Name = "lblActive"; this.lblActive.Size = new System.Drawing.Size(55, 17); this.lblActive.TabIndex = 17; this.lblActive.Text = "Állapot:"; // // lblContinuativeName // this.lblContinuativeName.Location = new System.Drawing.Point(10, 14); this.lblContinuativeName.Name = "lblContinuativeName"; this.lblContinuativeName.Size = new System.Drawing.Size(105, 18); this.lblContinuativeName.TabIndex = 16; this.lblContinuativeName.Text = "Megnevezés:"; // // txtContinuativeName // this.txtContinuativeName.AllowNull = true; this.txtContinuativeName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtContinuativeName.InvalidCharSet = ""; this.txtContinuativeName.Location = new System.Drawing.Point(120, 9); this.txtContinuativeName.MaxLength = 50; this.txtContinuativeName.Name = "txtContinuativeName"; this.txtContinuativeName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtContinuativeName.Size = new System.Drawing.Size(470, 22); this.txtContinuativeName.TabIndex = 0; this.txtContinuativeName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtContinuativeName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtContinuativeName.ValidationMask = ""; this.txtContinuativeName.ValidCharSet = ""; // // txtTargetGroup // this.txtTargetGroup.AllowNull = true; this.txtTargetGroup.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtTargetGroup.InvalidCharSet = ""; this.txtTargetGroup.Location = new System.Drawing.Point(120, 65); this.txtTargetGroup.MaxLength = 50; this.txtTargetGroup.Name = "txtTargetGroup"; this.txtTargetGroup.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtTargetGroup.Size = new System.Drawing.Size(211, 22); this.txtTargetGroup.TabIndex = 2; this.txtTargetGroup.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtTargetGroup.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtTargetGroup.ValidationMask = ""; this.txtTargetGroup.ValidCharSet = ""; // // lblTargetGroup // this.lblTargetGroup.Location = new System.Drawing.Point(10, 69); this.lblTargetGroup.Name = "lblTargetGroup"; this.lblTargetGroup.Size = new System.Drawing.Size(105, 19); this.lblTargetGroup.TabIndex = 13; this.lblTargetGroup.Text = "Célcsoport:"; // // lblPersonName // this.lblPersonName.Location = new System.Drawing.Point(10, 42); this.lblPersonName.Name = "lblPersonName"; this.lblPersonName.Size = new System.Drawing.Size(105, 18); this.lblPersonName.TabIndex = 12; this.lblPersonName.Text = "Felelõs:"; // // txtPersonName // this.txtPersonName.AllowNull = true; this.txtPersonName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPersonName.InvalidCharSet = ""; this.txtPersonName.Location = new System.Drawing.Point(120, 37); this.txtPersonName.MaxLength = 50; this.txtPersonName.Name = "txtPersonName"; this.txtPersonName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPersonName.Size = new System.Drawing.Size(470, 22); this.txtPersonName.TabIndex = 1; this.txtPersonName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPersonName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPersonName.ValidationMask = ""; this.txtPersonName.ValidCharSet = ""; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 171); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 15; this.dtgMain.Size = new System.Drawing.Size(609, 219); this.dtgMain.TabIndex = 3; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colID, this.colContinuativeName, this.colPersonName, this.colTargetGroup, this.colWhere, this.colDateTo, this.colOuterLink, this.colActive}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // colID // this.colID.Format = ""; this.colID.FormatInfo = null; this.colID.HeaderText = "ID"; this.colID.MappingName = " ID"; this.colID.Width = 0; // // colContinuativeName // this.colContinuativeName.Format = ""; this.colContinuativeName.FormatInfo = null; this.colContinuativeName.HeaderText = "Megnevezés"; this.colContinuativeName.MappingName = "ContinuativeName"; this.colContinuativeName.Width = 120; // // colPersonName // this.colPersonName.Format = ""; this.colPersonName.FormatInfo = null; this.colPersonName.HeaderText = "Felelõs"; this.colPersonName.MappingName = "PersonName"; this.colPersonName.Width = 75; // // colTargetGroup // this.colTargetGroup.Format = ""; this.colTargetGroup.FormatInfo = null; this.colTargetGroup.HeaderText = "Célcsoport"; this.colTargetGroup.MappingName = "TargetGrop"; this.colTargetGroup.Width = 75; // // colWhere // this.colWhere.Format = ""; this.colWhere.FormatInfo = null; this.colWhere.HeaderText = "Hol"; this.colWhere.MappingName = "Where"; this.colWhere.Width = 75; // // colDateTo // this.colDateTo.Format = ""; this.colDateTo.FormatInfo = null; this.colDateTo.HeaderText = "Idõtartam"; this.colDateTo.MappingName = "DateTo"; this.colDateTo.Width = 75; // // colOuterLink // this.colOuterLink.Format = ""; this.colOuterLink.FormatInfo = null; this.colOuterLink.HeaderText = "Link (Official)"; this.colOuterLink.MappingName = "OuterLink"; this.colOuterLink.Width = 75; // // colActive // this.colActive.HeaderText = "Aktív?"; this.colActive.MappingName = "IsActive"; this.colActive.Width = 75; // // frmContinuativeSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(609, 390); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmContinuativeSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmContinuativeSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDocumentSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbNew = new System.Windows.Forms.ToolBarButton(); this.tbbModify = new System.Windows.Forms.ToolBarButton(); this.tbbInactivate = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.pnlFilter = new System.Windows.Forms.Panel(); this.txtPublishYear = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.lblPublishYear = new System.Windows.Forms.Label(); this.txtPublisherName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.lblPublisherName = new System.Windows.Forms.Label(); this.cmbStatus = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.lblActive = new System.Windows.Forms.Label(); this.txtLink = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.lblLink = new System.Windows.Forms.Label(); this.cmbCategoryRef = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.lblCategoryRef = new System.Windows.Forms.Label(); this.txtCommAuthor = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtCommTitle = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.lblCommAuthor = new System.Windows.Forms.Label(); this.lblCommName = new System.Windows.Forms.Label(); this.cmbSubType = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.lblSubType = new System.Windows.Forms.Label(); this.lblLanguage = new System.Windows.Forms.Label(); this.cmbLanguage = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.txtAuthor = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.lblAuthor = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.txtTitle = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colID = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colTitle = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colAuthor = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colLanguageName = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colCategoryName = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colSubTypeName = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colLink = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colCommTitle = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colCommAuthor = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colModifiedDate = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colVisibleForVisitor = new System.Windows.Forms.DataGridBoolColumn(); this.colVisibleForRegistered = new System.Windows.Forms.DataGridBoolColumn(); this.colIsActive = new System.Windows.Forms.DataGridBoolColumn(); this.pnlFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(602, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Monitorozás, értékelés"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Monitoroás, értékelés dokumentumainak, linkjeinek karbantartása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbNew, this.tbbModify, this.tbbInactivate, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(602, 28); this.tlbMain.TabIndex = 1; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbNew // this.tbbNew.ImageIndex = 0; this.tbbNew.Name = "tbbNew"; this.tbbNew.ToolTipText = "Új kiadvány"; // // tbbModify // this.tbbModify.ImageIndex = 1; this.tbbModify.Name = "tbbModify"; this.tbbModify.ToolTipText = "Kiadvány módosítása"; // // tbbInactivate // this.tbbInactivate.ImageIndex = 2; this.tbbInactivate.Name = "tbbInactivate"; this.tbbInactivate.ToolTipText = "Inaktiválás/aktiválás"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 3; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); this.imgToolbar.Images.SetKeyName(5, ""); // // pnlFilter // this.pnlFilter.Controls.Add(this.txtPublishYear); this.pnlFilter.Controls.Add(this.lblPublishYear); this.pnlFilter.Controls.Add(this.txtPublisherName); this.pnlFilter.Controls.Add(this.lblPublisherName); this.pnlFilter.Controls.Add(this.cmbStatus); this.pnlFilter.Controls.Add(this.lblActive); this.pnlFilter.Controls.Add(this.txtLink); this.pnlFilter.Controls.Add(this.lblLink); this.pnlFilter.Controls.Add(this.cmbCategoryRef); this.pnlFilter.Controls.Add(this.lblCategoryRef); this.pnlFilter.Controls.Add(this.txtCommAuthor); this.pnlFilter.Controls.Add(this.txtCommTitle); this.pnlFilter.Controls.Add(this.lblCommAuthor); this.pnlFilter.Controls.Add(this.lblCommName); this.pnlFilter.Controls.Add(this.cmbSubType); this.pnlFilter.Controls.Add(this.lblSubType); this.pnlFilter.Controls.Add(this.lblLanguage); this.pnlFilter.Controls.Add(this.cmbLanguage); this.pnlFilter.Controls.Add(this.txtAuthor); this.pnlFilter.Controls.Add(this.lblAuthor); this.pnlFilter.Controls.Add(this.label8); this.pnlFilter.Controls.Add(this.txtTitle); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(602, 284); this.pnlFilter.TabIndex = 2; // // txtPublishYear // this.txtPublishYear.AllowNull = true; this.txtPublishYear.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPublishYear.InvalidCharSet = ""; this.txtPublishYear.Location = new System.Drawing.Point(120, 255); this.txtPublishYear.MaxLength = 4; this.txtPublishYear.Name = "txtPublishYear"; this.txtPublishYear.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPublishYear.Size = new System.Drawing.Size(82, 22); this.txtPublishYear.TabIndex = 10; this.txtPublishYear.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPublishYear.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPublishYear.ValidationMask = ""; this.txtPublishYear.ValidCharSet = "0123456789"; // // lblPublishYear // this.lblPublishYear.Location = new System.Drawing.Point(10, 258); this.lblPublishYear.Name = "lblPublishYear"; this.lblPublishYear.Size = new System.Drawing.Size(105, 24); this.lblPublishYear.TabIndex = 50; this.lblPublishYear.Text = "Kiadás éve:"; // // txtPublisherName // this.txtPublisherName.AllowNull = true; this.txtPublisherName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPublisherName.InvalidCharSet = ""; this.txtPublisherName.Location = new System.Drawing.Point(120, 227); this.txtPublisherName.MaxLength = 50; this.txtPublisherName.Name = "txtPublisherName"; this.txtPublisherName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPublisherName.Size = new System.Drawing.Size(470, 22); this.txtPublisherName.TabIndex = 9; this.txtPublisherName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPublisherName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPublisherName.ValidationMask = ""; this.txtPublisherName.ValidCharSet = ""; // // lblPublisherName // this.lblPublisherName.Location = new System.Drawing.Point(10, 231); this.lblPublisherName.Name = "lblPublisherName"; this.lblPublisherName.Size = new System.Drawing.Size(105, 23); this.lblPublisherName.TabIndex = 49; this.lblPublisherName.Text = "Kiadó:"; // // cmbStatus // this.cmbStatus.AllowNull = true; this.cmbStatus.BreakSort = false; this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatus.Location = new System.Drawing.Point(442, 89); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatus.Size = new System.Drawing.Size(148, 24); this.cmbStatus.TabIndex = 4; this.cmbStatus.ToolBarUse = false; this.cmbStatus.ValidationErrorMessage = "Érvénytelen karakter!"; // // lblActive // this.lblActive.AutoSize = true; this.lblActive.Location = new System.Drawing.Point(384, 92); this.lblActive.Name = "lblActive"; this.lblActive.Size = new System.Drawing.Size(55, 17); this.lblActive.TabIndex = 46; this.lblActive.Text = "Állapot:"; // // txtLink // this.txtLink.AllowNull = true; this.txtLink.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtLink.InvalidCharSet = ""; this.txtLink.Location = new System.Drawing.Point(120, 36); this.txtLink.MaxLength = 250; this.txtLink.Name = "txtLink"; this.txtLink.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtLink.Size = new System.Drawing.Size(470, 22); this.txtLink.TabIndex = 1; this.txtLink.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtLink.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtLink.ValidationMask = ""; this.txtLink.ValidCharSet = ""; // // lblLink // this.lblLink.Location = new System.Drawing.Point(10, 37); this.lblLink.Name = "lblLink"; this.lblLink.Size = new System.Drawing.Size(105, 23); this.lblLink.TabIndex = 45; this.lblLink.Text = "Link:"; // // cmbCategoryRef // this.cmbCategoryRef.AllowNull = true; this.cmbCategoryRef.BreakSort = false; this.cmbCategoryRef.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbCategoryRef.Items.AddRange(new object[] { "Magyar"}); this.cmbCategoryRef.Location = new System.Drawing.Point(120, 117); this.cmbCategoryRef.Name = "cmbCategoryRef"; this.cmbCategoryRef.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbCategoryRef.Size = new System.Drawing.Size(341, 24); this.cmbCategoryRef.TabIndex = 5; this.cmbCategoryRef.ToolBarUse = false; this.cmbCategoryRef.ValidationErrorMessage = "Érvénytelen karakter!"; // // lblCategoryRef // this.lblCategoryRef.Location = new System.Drawing.Point(10, 120); this.lblCategoryRef.Name = "lblCategoryRef"; this.lblCategoryRef.Size = new System.Drawing.Size(105, 23); this.lblCategoryRef.TabIndex = 43; this.lblCategoryRef.Text = "Kategória:"; // // txtCommAuthor // this.txtCommAuthor.AllowNull = true; this.txtCommAuthor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCommAuthor.InvalidCharSet = ""; this.txtCommAuthor.Location = new System.Drawing.Point(120, 200); this.txtCommAuthor.MaxLength = 50; this.txtCommAuthor.Name = "txtCommAuthor"; this.txtCommAuthor.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCommAuthor.Size = new System.Drawing.Size(470, 22); this.txtCommAuthor.TabIndex = 8; this.txtCommAuthor.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCommAuthor.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCommAuthor.ValidationMask = ""; this.txtCommAuthor.ValidCharSet = ""; // // txtCommTitle // this.txtCommTitle.AllowNull = true; this.txtCommTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCommTitle.InvalidCharSet = ""; this.txtCommTitle.Location = new System.Drawing.Point(120, 172); this.txtCommTitle.MaxLength = 50; this.txtCommTitle.Name = "txtCommTitle"; this.txtCommTitle.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCommTitle.Size = new System.Drawing.Size(470, 22); this.txtCommTitle.TabIndex = 7; this.txtCommTitle.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCommTitle.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCommTitle.ValidationMask = ""; this.txtCommTitle.ValidCharSet = ""; // // lblCommAuthor // this.lblCommAuthor.Location = new System.Drawing.Point(10, 203); this.lblCommAuthor.Name = "lblCommAuthor"; this.lblCommAuthor.Size = new System.Drawing.Size(105, 23); this.lblCommAuthor.TabIndex = 40; this.lblCommAuthor.Text = "Ajánló szerzõ:"; // // lblCommName // this.lblCommName.Location = new System.Drawing.Point(10, 175); this.lblCommName.Name = "lblCommName"; this.lblCommName.Size = new System.Drawing.Size(105, 23); this.lblCommName.TabIndex = 39; this.lblCommName.Text = "Ajánló cím:"; // // cmbSubType // this.cmbSubType.AllowNull = true; this.cmbSubType.BreakSort = false; this.cmbSubType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbSubType.Items.AddRange(new object[] { "Kiadvány"}); this.cmbSubType.Location = new System.Drawing.Point(120, 144); this.cmbSubType.Name = "cmbSubType"; this.cmbSubType.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbSubType.Size = new System.Drawing.Size(341, 24); this.cmbSubType.TabIndex = 6; this.cmbSubType.ToolBarUse = false; this.cmbSubType.ValidationErrorMessage = "Érvénytelen karakter!"; // // lblSubType // this.lblSubType.Location = new System.Drawing.Point(10, 148); this.lblSubType.Name = "lblSubType"; this.lblSubType.Size = new System.Drawing.Size(105, 23); this.lblSubType.TabIndex = 37; this.lblSubType.Text = "Típus:"; // // lblLanguage // this.lblLanguage.Location = new System.Drawing.Point(10, 92); this.lblLanguage.Name = "lblLanguage"; this.lblLanguage.Size = new System.Drawing.Size(105, 23); this.lblLanguage.TabIndex = 36; this.lblLanguage.Text = "Nyelv:"; // // cmbLanguage // this.cmbLanguage.AllowNull = true; this.cmbLanguage.BreakSort = false; this.cmbLanguage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbLanguage.Items.AddRange(new object[] { "Magyar"}); this.cmbLanguage.Location = new System.Drawing.Point(120, 89); this.cmbLanguage.Name = "cmbLanguage"; this.cmbLanguage.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbLanguage.Size = new System.Drawing.Size(254, 24); this.cmbLanguage.TabIndex = 3; this.cmbLanguage.ToolBarUse = false; this.cmbLanguage.ValidationErrorMessage = "Érvénytelen karakter!"; // // txtAuthor // this.txtAuthor.AllowNull = true; this.txtAuthor.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtAuthor.InvalidCharSet = ""; this.txtAuthor.Location = new System.Drawing.Point(120, 62); this.txtAuthor.MaxLength = 250; this.txtAuthor.Name = "txtAuthor"; this.txtAuthor.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAuthor.Size = new System.Drawing.Size(254, 22); this.txtAuthor.TabIndex = 2; this.txtAuthor.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAuthor.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAuthor.ValidationMask = ""; this.txtAuthor.ValidCharSet = ""; // // lblAuthor // this.lblAuthor.Location = new System.Drawing.Point(10, 65); this.lblAuthor.Name = "lblAuthor"; this.lblAuthor.Size = new System.Drawing.Size(105, 23); this.lblAuthor.TabIndex = 29; this.lblAuthor.Text = "Szerzõ:"; // // label8 // this.label8.Location = new System.Drawing.Point(10, 14); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(105, 18); this.label8.TabIndex = 12; this.label8.Text = "Cím:"; // // txtTitle // this.txtTitle.AllowNull = true; this.txtTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtTitle.InvalidCharSet = ""; this.txtTitle.Location = new System.Drawing.Point(120, 9); this.txtTitle.MaxLength = 50; this.txtTitle.Name = "txtTitle"; this.txtTitle.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtTitle.Size = new System.Drawing.Size(470, 22); this.txtTitle.TabIndex = 0; this.txtTitle.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtTitle.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtTitle.ValidationMask = ""; this.txtTitle.ValidCharSet = ""; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 358); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 15; this.dtgMain.Size = new System.Drawing.Size(602, 225); this.dtgMain.TabIndex = 0; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colID, this.colTitle, this.colAuthor, this.colLanguageName, this.colCategoryName, this.colSubTypeName, this.colLink, this.colCommTitle, this.colCommAuthor, this.colModifiedDate, this.colVisibleForVisitor, this.colVisibleForRegistered, this.colIsActive}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.MappingName = "Table"; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // colID // this.colID.Format = ""; this.colID.FormatInfo = null; this.colID.HeaderText = "ID"; this.colID.MappingName = "uID"; this.colID.Width = 0; // // colTitle // this.colTitle.Format = ""; this.colTitle.FormatInfo = null; this.colTitle.HeaderText = "Cím"; this.colTitle.MappingName = "cTitle"; this.colTitle.Width = 60; // // colAuthor // this.colAuthor.Format = ""; this.colAuthor.FormatInfo = null; this.colAuthor.HeaderText = "Szerzõ"; this.colAuthor.MappingName = "cAuthor"; this.colAuthor.Width = 60; // // colLanguageName // this.colLanguageName.Format = ""; this.colLanguageName.FormatInfo = null; this.colLanguageName.HeaderText = "Nyelv"; this.colLanguageName.MappingName = "cLanguageName"; this.colLanguageName.Width = 60; // // colCategoryName // this.colCategoryName.Format = ""; this.colCategoryName.FormatInfo = null; this.colCategoryName.HeaderText = "Kategória"; this.colCategoryName.MappingName = "cCategoryName"; this.colCategoryName.Width = 75; // // colSubTypeName // this.colSubTypeName.Format = ""; this.colSubTypeName.FormatInfo = null; this.colSubTypeName.HeaderText = "Típus"; this.colSubTypeName.MappingName = "cSubTypeName"; this.colSubTypeName.Width = 60; // // colLink // this.colLink.Format = ""; this.colLink.FormatInfo = null; this.colLink.HeaderText = "Link"; this.colLink.MappingName = "cLink"; this.colLink.Width = 120; // // colCommTitle // this.colCommTitle.Format = ""; this.colCommTitle.FormatInfo = null; this.colCommTitle.HeaderText = "Ajánló cím"; this.colCommTitle.MappingName = "cCommTitle"; this.colCommTitle.Width = 75; // // colCommAuthor // this.colCommAuthor.Format = ""; this.colCommAuthor.FormatInfo = null; this.colCommAuthor.HeaderText = "Ajánló szerzõ"; this.colCommAuthor.MappingName = "cCommAuthor"; this.colCommAuthor.Width = 75; // // colModifiedDate // this.colModifiedDate.Format = ""; this.colModifiedDate.FormatInfo = null; this.colModifiedDate.HeaderText = "Utolsó módosítás"; this.colModifiedDate.MappingName = "dModifiedDate"; this.colModifiedDate.Width = 105; // // colVisibleForVisitor // this.colVisibleForVisitor.HeaderText = "Látogató"; this.colVisibleForVisitor.MappingName = "bVisibleForVisitor"; this.colVisibleForVisitor.NullValue = null; this.colVisibleForVisitor.Width = 50; // // colVisibleForRegistered // this.colVisibleForRegistered.HeaderText = "Felhasználó"; this.colVisibleForRegistered.MappingName = "bVisibleForRegistered"; this.colVisibleForRegistered.NullValue = null; this.colVisibleForRegistered.Width = 70; // // colIsActive // this.colIsActive.HeaderText = "Aktív?"; this.colIsActive.MappingName = "bIsActive"; this.colIsActive.Width = 50; // // frmDocumentSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(602, 583); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmDocumentSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmDocumentSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmForumItemSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbModify = new System.Windows.Forms.ToolBarButton(); this.tbbInactivate = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.pnlFilter = new System.Windows.Forms.Panel(); this.dtpSentTo = new System.Windows.Forms.DateTimePicker(); this.label1 = new System.Windows.Forms.Label(); this.dtpSentFrom = new System.Windows.Forms.DateTimePicker(); this.cmbStatus = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.cmbForumGroup = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colThread = new System.Windows.Forms.DataGridTextBoxColumn(); this.colItem = new System.Windows.Forms.DataGridTextBoxColumn(); this.colCreator = new System.Windows.Forms.DataGridTextBoxColumn(); this.colCreatedDate = new System.Windows.Forms.DataGridTextBoxColumn(); this.colModerated = new System.Windows.Forms.DataGridBoolColumn(); this.pnlFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(678, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Fórum hozzászólások"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Hozzászólások megtekintése, moderálás"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbModify, this.tbbInactivate, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(678, 28); this.tlbMain.TabIndex = 1; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbModify // this.tbbModify.ImageIndex = 1; this.tbbModify.Name = "tbbModify"; this.tbbModify.ToolTipText = "Hozzászólás módosítása"; // // tbbInactivate // this.tbbInactivate.ImageIndex = 2; this.tbbInactivate.Name = "tbbInactivate"; this.tbbInactivate.ToolTipText = "Hozzászólás moderálása"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 3; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // pnlFilter // this.pnlFilter.Controls.Add(this.dtpSentTo); this.pnlFilter.Controls.Add(this.label1); this.pnlFilter.Controls.Add(this.dtpSentFrom); this.pnlFilter.Controls.Add(this.cmbStatus); this.pnlFilter.Controls.Add(this.label4); this.pnlFilter.Controls.Add(this.label3); this.pnlFilter.Controls.Add(this.cmbForumGroup); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(678, 70); this.pnlFilter.TabIndex = 2; // // dtpSentTo // this.dtpSentTo.Checked = false; this.dtpSentTo.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dtpSentTo.Location = new System.Drawing.Point(530, 38); this.dtpSentTo.Name = "dtpSentTo"; this.dtpSentTo.ShowCheckBox = true; this.dtpSentTo.Size = new System.Drawing.Size(130, 22); this.dtpSentTo.TabIndex = 3; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(276, 42); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(106, 17); this.label1.TabIndex = 6; this.label1.Text = "Küldés dátuma:"; // // dtpSentFrom // this.dtpSentFrom.Checked = false; this.dtpSentFrom.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.dtpSentFrom.Location = new System.Drawing.Point(386, 38); this.dtpSentFrom.Name = "dtpSentFrom"; this.dtpSentFrom.ShowCheckBox = true; this.dtpSentFrom.Size = new System.Drawing.Size(130, 22); this.dtpSentFrom.TabIndex = 2; // // cmbStatus // this.cmbStatus.AllowNull = true; this.cmbStatus.BreakSort = false; this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatus.Location = new System.Drawing.Point(139, 37); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatus.Size = new System.Drawing.Size(120, 24); this.cmbStatus.TabIndex = 1; this.cmbStatus.ToolBarUse = false; this.cmbStatus.ValidationErrorMessage = "Érvénytelen karakter!"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(10, 42); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(132, 17); this.label4.TabIndex = 2; this.label4.Text = "Moderálás állapota:"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(10, 14); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(87, 17); this.label3.TabIndex = 0; this.label3.Text = "Fórum téma:"; // // cmbForumGroup // this.cmbForumGroup.AllowNull = true; this.cmbForumGroup.BreakSort = false; this.cmbForumGroup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbForumGroup.Location = new System.Drawing.Point(139, 9); this.cmbForumGroup.Name = "cmbForumGroup"; this.cmbForumGroup.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbForumGroup.Size = new System.Drawing.Size(521, 24); this.cmbForumGroup.TabIndex = 0; this.cmbForumGroup.ToolBarUse = false; this.cmbForumGroup.ValidationErrorMessage = "Érvénytelen karakter!"; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 144); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(678, 122); this.dtgMain.TabIndex = 3; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colThread, this.colItem, this.colCreator, this.colCreatedDate, this.colModerated}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // colThread // this.colThread.Format = ""; this.colThread.FormatInfo = null; this.colThread.HeaderText = "Fórum szál"; this.colThread.MappingName = "ForumThreadName"; this.colThread.Width = 75; // // colItem // this.colItem.Format = ""; this.colItem.FormatInfo = null; this.colItem.HeaderText = "Hozzászólás"; this.colItem.MappingName = "ItemText"; this.colItem.Width = 300; // // colCreator // this.colCreator.Format = ""; this.colCreator.FormatInfo = null; this.colCreator.HeaderText = "Felszólaló"; this.colCreator.MappingName = "CreatedBy"; this.colCreator.Width = 75; // // colCreatedDate // this.colCreatedDate.Format = ""; this.colCreatedDate.FormatInfo = null; this.colCreatedDate.HeaderText = "Hozzászólás dátuma"; this.colCreatedDate.MappingName = "CreatedDate"; this.colCreatedDate.Width = 75; // // colModerated // this.colModerated.HeaderText = "Moderált"; this.colModerated.MappingName = "IsModerated"; this.colModerated.Width = 75; // // frmForumItemSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(678, 266); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmForumItemSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmForumItemSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.pnlBottom = new System.Windows.Forms.Panel(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.tabControl = new System.Windows.Forms.TabControl(); this.tabUserData = new System.Windows.Forms.TabPage(); this.txtReasonOfRegistration = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtJob = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtProfession = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtGraduation = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtCountry = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtBirthYear = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtCity = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtPostCode = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtPhone = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtEmail = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtUserName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtLoginName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.cbxLockedOut = new System.Windows.Forms.CheckBox(); this.label13 = new System.Windows.Forms.Label(); this.cbxNewsmail = new System.Windows.Forms.CheckBox(); this.label12 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.label10 = new System.Windows.Forms.Label(); this.lblQualificationCaption = new System.Windows.Forms.Label(); this.cmbQualification = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label20 = new System.Windows.Forms.Label(); this.label19 = new System.Windows.Forms.Label(); this.rbtWoman = new System.Windows.Forms.RadioButton(); this.rbtMan = new System.Windows.Forms.RadioButton(); this.label18 = new System.Windows.Forms.Label(); this.cbxActivate = new System.Windows.Forms.CheckBox(); this.label7 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.tabUserRights = new System.Windows.Forms.TabPage(); this.btnDelete = new System.Windows.Forms.Button(); this.btnInsert = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.cmbOrganisation = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.cmbRight = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label9 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.btnSave = new System.Windows.Forms.Button(); this.dtgOrgUser = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colUserLogin = new System.Windows.Forms.DataGridTextBoxColumn(); this.colOrganisationName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colRight = new System.Windows.Forms.DataGridTextBoxColumn(); this.pnlBottom.SuspendLayout(); this.tabControl.SuspendLayout(); this.tabUserData.SuspendLayout(); this.tabUserRights.SuspendLayout(); this.groupBox1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgOrgUser)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(870, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Felhasználók"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Regisztrált felhasználó adatainak módosítása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // pnlBottom // this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 560); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(870, 45); this.pnlBottom.TabIndex = 39; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(771, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 1; this.btnCancel.Text = "Mégse"; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(675, 14); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 0; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // tabControl // this.tabControl.Controls.Add(this.tabUserData); this.tabControl.Controls.Add(this.tabUserRights); this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControl.Location = new System.Drawing.Point(0, 46); this.tabControl.Name = "tabControl"; this.tabControl.SelectedIndex = 0; this.tabControl.Size = new System.Drawing.Size(870, 514); this.tabControl.TabIndex = 40; this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged); // // tabUserData // this.tabUserData.Controls.Add(this.txtReasonOfRegistration); this.tabUserData.Controls.Add(this.txtJob); this.tabUserData.Controls.Add(this.txtProfession); this.tabUserData.Controls.Add(this.txtGraduation); this.tabUserData.Controls.Add(this.txtCountry); this.tabUserData.Controls.Add(this.txtBirthYear); this.tabUserData.Controls.Add(this.txtAddress); this.tabUserData.Controls.Add(this.txtCity); this.tabUserData.Controls.Add(this.txtPostCode); this.tabUserData.Controls.Add(this.txtPhone); this.tabUserData.Controls.Add(this.txtEmail); this.tabUserData.Controls.Add(this.txtUserName); this.tabUserData.Controls.Add(this.txtLoginName); this.tabUserData.Controls.Add(this.cbxLockedOut); this.tabUserData.Controls.Add(this.label13); this.tabUserData.Controls.Add(this.cbxNewsmail); this.tabUserData.Controls.Add(this.label12); this.tabUserData.Controls.Add(this.label11); this.tabUserData.Controls.Add(this.label10); this.tabUserData.Controls.Add(this.lblQualificationCaption); this.tabUserData.Controls.Add(this.cmbQualification); this.tabUserData.Controls.Add(this.label20); this.tabUserData.Controls.Add(this.label19); this.tabUserData.Controls.Add(this.rbtWoman); this.tabUserData.Controls.Add(this.rbtMan); this.tabUserData.Controls.Add(this.label18); this.tabUserData.Controls.Add(this.cbxActivate); this.tabUserData.Controls.Add(this.label7); this.tabUserData.Controls.Add(this.label6); this.tabUserData.Controls.Add(this.label5); this.tabUserData.Controls.Add(this.label4); this.tabUserData.Controls.Add(this.label3); this.tabUserData.Controls.Add(this.label2); this.tabUserData.Controls.Add(this.label1); this.tabUserData.Location = new System.Drawing.Point(4, 25); this.tabUserData.Name = "tabUserData"; this.tabUserData.Size = new System.Drawing.Size(862, 485); this.tabUserData.TabIndex = 0; this.tabUserData.Text = "Felhasználói adatok"; // // txtReasonOfRegistration // this.txtReasonOfRegistration.AllowNull = false; this.txtReasonOfRegistration.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtReasonOfRegistration.InvalidCharSet = ""; this.txtReasonOfRegistration.Location = new System.Drawing.Point(576, 338); this.txtReasonOfRegistration.MaxLength = 1000; this.txtReasonOfRegistration.Multiline = true; this.txtReasonOfRegistration.Name = "txtReasonOfRegistration"; this.txtReasonOfRegistration.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtReasonOfRegistration.ReadOnly = true; this.txtReasonOfRegistration.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtReasonOfRegistration.Size = new System.Drawing.Size(264, 69); this.txtReasonOfRegistration.TabIndex = 72; this.txtReasonOfRegistration.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtReasonOfRegistration.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtReasonOfRegistration.ValidationMask = ""; this.txtReasonOfRegistration.ValidCharSet = ""; // // txtJob // this.txtJob.AllowNull = true; this.txtJob.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtJob.InvalidCharSet = ""; this.txtJob.Location = new System.Drawing.Point(576, 261); this.txtJob.MaxLength = 1000; this.txtJob.Multiline = true; this.txtJob.Name = "txtJob"; this.txtJob.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtJob.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtJob.Size = new System.Drawing.Size(264, 69); this.txtJob.TabIndex = 70; this.txtJob.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtJob.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtJob.ValidationMask = ""; this.txtJob.ValidCharSet = ""; // // txtProfession // this.txtProfession.AllowNull = true; this.txtProfession.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtProfession.InvalidCharSet = ""; this.txtProfession.Location = new System.Drawing.Point(576, 183); this.txtProfession.MaxLength = 1000; this.txtProfession.Multiline = true; this.txtProfession.Name = "txtProfession"; this.txtProfession.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtProfession.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtProfession.Size = new System.Drawing.Size(264, 70); this.txtProfession.TabIndex = 68; this.txtProfession.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtProfession.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtProfession.ValidationMask = ""; this.txtProfession.ValidCharSet = ""; // // txtGraduation // this.txtGraduation.AllowNull = true; this.txtGraduation.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtGraduation.InvalidCharSet = ""; this.txtGraduation.Location = new System.Drawing.Point(576, 107); this.txtGraduation.MaxLength = 1000; this.txtGraduation.Multiline = true; this.txtGraduation.Name = "txtGraduation"; this.txtGraduation.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtGraduation.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtGraduation.Size = new System.Drawing.Size(264, 70); this.txtGraduation.TabIndex = 66; this.txtGraduation.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtGraduation.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtGraduation.ValidationMask = ""; this.txtGraduation.ValidCharSet = ""; // // txtCountry // this.txtCountry.AllowNull = true; this.txtCountry.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCountry.InvalidCharSet = ""; this.txtCountry.Location = new System.Drawing.Point(144, 228); this.txtCountry.MaxLength = 100; this.txtCountry.Name = "txtCountry"; this.txtCountry.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCountry.Size = new System.Drawing.Size(264, 22); this.txtCountry.TabIndex = 54; this.txtCountry.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCountry.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCountry.ValidationMask = ""; this.txtCountry.ValidCharSet = ""; // // txtBirthYear // this.txtBirthYear.AllowNull = false; this.txtBirthYear.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtBirthYear.InvalidCharSet = ""; this.txtBirthYear.Location = new System.Drawing.Point(576, 46); this.txtBirthYear.MaxLength = 4; this.txtBirthYear.Name = "txtBirthYear"; this.txtBirthYear.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtBirthYear.Size = new System.Drawing.Size(96, 22); this.txtBirthYear.TabIndex = 62; this.txtBirthYear.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtBirthYear.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtBirthYear.ValidationMask = ""; this.txtBirthYear.ValidCharSet = ",0123456789"; // // txtAddress // this.txtAddress.AllowNull = true; this.txtAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtAddress.InvalidCharSet = ""; this.txtAddress.Location = new System.Drawing.Point(144, 198); this.txtAddress.MaxLength = 100; this.txtAddress.Name = "txtAddress"; this.txtAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtAddress.Size = new System.Drawing.Size(264, 22); this.txtAddress.TabIndex = 52; this.txtAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtAddress.ValidationMask = ""; this.txtAddress.ValidCharSet = ""; // // txtCity // this.txtCity.AllowNull = true; this.txtCity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCity.InvalidCharSet = ""; this.txtCity.Location = new System.Drawing.Point(144, 168); this.txtCity.MaxLength = 100; this.txtCity.Name = "txtCity"; this.txtCity.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCity.Size = new System.Drawing.Size(264, 22); this.txtCity.TabIndex = 50; this.txtCity.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCity.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCity.ValidationMask = ""; this.txtCity.ValidCharSet = ""; // // txtPostCode // this.txtPostCode.AllowNull = true; this.txtPostCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPostCode.InvalidCharSet = ""; this.txtPostCode.Location = new System.Drawing.Point(144, 138); this.txtPostCode.MaxLength = 10; this.txtPostCode.Name = "txtPostCode"; this.txtPostCode.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPostCode.Size = new System.Drawing.Size(96, 22); this.txtPostCode.TabIndex = 48; this.txtPostCode.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPostCode.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPostCode.ValidationMask = ""; this.txtPostCode.ValidCharSet = ""; // // txtPhone // this.txtPhone.AllowNull = true; this.txtPhone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtPhone.InvalidCharSet = ""; this.txtPhone.Location = new System.Drawing.Point(144, 78); this.txtPhone.MaxLength = 20; this.txtPhone.Name = "txtPhone"; this.txtPhone.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtPhone.Size = new System.Drawing.Size(264, 22); this.txtPhone.TabIndex = 44; this.txtPhone.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtPhone.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtPhone.ValidationMask = ""; this.txtPhone.ValidCharSet = ""; // // txtEmail // this.txtEmail.AllowNull = false; this.txtEmail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtEmail.InvalidCharSet = ""; this.txtEmail.Location = new System.Drawing.Point(144, 108); this.txtEmail.MaxLength = 250; this.txtEmail.Name = "txtEmail"; this.txtEmail.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtEmail.Size = new System.Drawing.Size(264, 22); this.txtEmail.TabIndex = 46; this.txtEmail.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtEmail.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtEmail.ValidationMask = ""; this.txtEmail.ValidCharSet = ""; // // txtUserName // this.txtUserName.AllowNull = false; this.txtUserName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserName.InvalidCharSet = ""; this.txtUserName.Location = new System.Drawing.Point(144, 48); this.txtUserName.MaxLength = 100; this.txtUserName.Name = "txtUserName"; this.txtUserName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserName.Size = new System.Drawing.Size(264, 22); this.txtUserName.TabIndex = 42; this.txtUserName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserName.ValidationMask = ""; this.txtUserName.ValidCharSet = ""; // // txtLoginName // this.txtLoginName.AllowNull = false; this.txtLoginName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtLoginName.InvalidCharSet = ""; this.txtLoginName.Location = new System.Drawing.Point(144, 18); this.txtLoginName.MaxLength = 50; this.txtLoginName.Name = "txtLoginName"; this.txtLoginName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtLoginName.ReadOnly = true; this.txtLoginName.Size = new System.Drawing.Size(264, 22); this.txtLoginName.TabIndex = 40; this.txtLoginName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtLoginName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtLoginName.ValidationMask = ""; this.txtLoginName.ValidCharSet = ""; // // cbxLockedOut // this.cbxLockedOut.Enabled = false; this.cbxLockedOut.Location = new System.Drawing.Point(144, 318); this.cbxLockedOut.Name = "cbxLockedOut"; this.cbxLockedOut.Size = new System.Drawing.Size(125, 29); this.cbxLockedOut.TabIndex = 57; this.cbxLockedOut.Text = "Letiltott"; // // label13 // this.label13.Location = new System.Drawing.Point(442, 338); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(124, 51); this.label13.TabIndex = 71; this.label13.Text = "Adatbázis használatának célja:"; this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cbxNewsmail // this.cbxNewsmail.Location = new System.Drawing.Point(144, 268); this.cbxNewsmail.Name = "cbxNewsmail"; this.cbxNewsmail.Size = new System.Drawing.Size(120, 23); this.cbxNewsmail.TabIndex = 55; this.cbxNewsmail.Text = "Kér hírlevelet"; // // label12 // this.label12.Location = new System.Drawing.Point(442, 263); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(124, 22); this.label12.TabIndex = 69; this.label12.Text = "Munkahely:"; this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label11 // this.label11.Location = new System.Drawing.Point(442, 183); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(124, 24); this.label11.TabIndex = 67; this.label11.Text = "Szakma:"; this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label10 // this.label10.Location = new System.Drawing.Point(442, 108); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(124, 30); this.label10.TabIndex = 65; this.label10.Text = "Tudományos fokozat:"; this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // lblQualificationCaption // this.lblQualificationCaption.Location = new System.Drawing.Point(442, 78); this.lblQualificationCaption.Name = "lblQualificationCaption"; this.lblQualificationCaption.Size = new System.Drawing.Size(124, 30); this.lblQualificationCaption.TabIndex = 63; this.lblQualificationCaption.Text = "Legmagasabb iskolai végz."; this.lblQualificationCaption.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cmbQualification // this.cmbQualification.AllowNull = false; this.cmbQualification.BreakSort = false; this.cmbQualification.Location = new System.Drawing.Point(576, 76); this.cmbQualification.Name = "cmbQualification"; this.cmbQualification.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbQualification.Size = new System.Drawing.Size(264, 24); this.cmbQualification.TabIndex = 64; this.cmbQualification.ToolBarUse = false; this.cmbQualification.ValidationErrorMessage = "Érvénytelen karakter!"; // // label20 // this.label20.Location = new System.Drawing.Point(19, 228); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(125, 22); this.label20.TabIndex = 53; this.label20.Text = "Ország:"; this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label19 // this.label19.Location = new System.Drawing.Point(442, 48); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(124, 22); this.label19.TabIndex = 61; this.label19.Text = "Születési év:"; this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // rbtWoman // this.rbtWoman.Location = new System.Drawing.Point(653, 18); this.rbtWoman.Name = "rbtWoman"; this.rbtWoman.Size = new System.Drawing.Size(57, 19); this.rbtWoman.TabIndex = 60; this.rbtWoman.Text = "Nõ"; // // rbtMan // this.rbtMan.Location = new System.Drawing.Point(576, 18); this.rbtMan.Name = "rbtMan"; this.rbtMan.Size = new System.Drawing.Size(58, 19); this.rbtMan.TabIndex = 59; this.rbtMan.Text = "Férfi"; // // label18 // this.label18.Location = new System.Drawing.Point(442, 18); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(124, 22); this.label18.TabIndex = 58; this.label18.Text = "Neme:"; this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cbxActivate // this.cbxActivate.Location = new System.Drawing.Point(144, 291); this.cbxActivate.Name = "cbxActivate"; this.cbxActivate.Size = new System.Drawing.Size(125, 27); this.cbxActivate.TabIndex = 56; this.cbxActivate.Text = "Aktív"; // // label7 // this.label7.Location = new System.Drawing.Point(19, 198); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(125, 22); this.label7.TabIndex = 51; this.label7.Text = "Utca, házszám:"; this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label6 // this.label6.Location = new System.Drawing.Point(19, 168); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(125, 22); this.label6.TabIndex = 49; this.label6.Text = "Település:"; this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label5 // this.label5.Location = new System.Drawing.Point(19, 138); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(125, 22); this.label5.TabIndex = 47; this.label5.Text = "Irányítószám:"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label4 // this.label4.Location = new System.Drawing.Point(19, 78); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(125, 22); this.label4.TabIndex = 43; this.label4.Text = "Telefonszám:"; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label3 // this.label3.Location = new System.Drawing.Point(19, 108); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(125, 22); this.label3.TabIndex = 45; this.label3.Text = "E-mail cím:"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label2 // this.label2.Location = new System.Drawing.Point(19, 48); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(125, 22); this.label2.TabIndex = 41; this.label2.Text = "Teljes név:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label1 // this.label1.Location = new System.Drawing.Point(19, 18); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(125, 22); this.label1.TabIndex = 39; this.label1.Text = "Bejelentkezési név:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // tabUserRights // this.tabUserRights.Controls.Add(this.btnDelete); this.tabUserRights.Controls.Add(this.btnInsert); this.tabUserRights.Controls.Add(this.groupBox1); this.tabUserRights.Controls.Add(this.dtgOrgUser); this.tabUserRights.Location = new System.Drawing.Point(4, 25); this.tabUserRights.Name = "tabUserRights"; this.tabUserRights.Size = new System.Drawing.Size(862, 485); this.tabUserRights.TabIndex = 1; this.tabUserRights.Text = "Felhasználói jogok"; // // btnDelete // this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnDelete.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnDelete.Location = new System.Drawing.Point(757, 105); this.btnDelete.Name = "btnDelete"; this.btnDelete.Size = new System.Drawing.Size(84, 23); this.btnDelete.TabIndex = 9; this.btnDelete.Text = "Törlés"; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // btnInsert // this.btnInsert.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnInsert.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnInsert.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnInsert.Location = new System.Drawing.Point(757, 68); this.btnInsert.Name = "btnInsert"; this.btnInsert.Size = new System.Drawing.Size(84, 23); this.btnInsert.TabIndex = 7; this.btnInsert.Text = "Új"; this.btnInsert.Click += new System.EventHandler(this.btnInsert_Click); // // groupBox1 // this.groupBox1.Controls.Add(this.cmbOrganisation); this.groupBox1.Controls.Add(this.cmbRight); this.groupBox1.Controls.Add(this.label9); this.groupBox1.Controls.Add(this.label8); this.groupBox1.Controls.Add(this.btnSave); this.groupBox1.Location = new System.Drawing.Point(10, 305); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(720, 110); this.groupBox1.TabIndex = 6; this.groupBox1.TabStop = false; this.groupBox1.Text = "Jogosultság"; // // cmbOrganisation // this.cmbOrganisation.AllowNull = false; this.cmbOrganisation.BreakSort = false; this.cmbOrganisation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrganisation.Enabled = false; this.cmbOrganisation.Location = new System.Drawing.Point(106, 28); this.cmbOrganisation.Name = "cmbOrganisation"; this.cmbOrganisation.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrganisation.Size = new System.Drawing.Size(470, 24); this.cmbOrganisation.TabIndex = 9; this.cmbOrganisation.ToolBarUse = false; this.cmbOrganisation.ValidationErrorMessage = "Érvénytelen karakter!"; // // cmbRight // this.cmbRight.AllowNull = false; this.cmbRight.BreakSort = false; this.cmbRight.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbRight.Location = new System.Drawing.Point(106, 60); this.cmbRight.Name = "cmbRight"; this.cmbRight.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbRight.Size = new System.Drawing.Size(278, 24); this.cmbRight.TabIndex = 8; this.cmbRight.ToolBarUse = false; this.cmbRight.ValidationErrorMessage = "Érvénytelen karakter!"; // // label9 // this.label9.Location = new System.Drawing.Point(10, 60); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(86, 18); this.label9.TabIndex = 1; this.label9.Text = "Jogosultság:"; this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label8 // this.label8.Location = new System.Drawing.Point(10, 28); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(76, 18); this.label8.TabIndex = 0; this.label8.Text = "Szervezet:"; this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // btnSave // this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnSave.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnSave.Location = new System.Drawing.Point(624, 28); this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(84, 23); this.btnSave.TabIndex = 5; this.btnSave.Text = "Mentés"; this.btnSave.Click += new System.EventHandler(this.btnSave_Click); // // dtgOrgUser // this.dtgOrgUser.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgOrgUser.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgOrgUser.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgOrgUser.CaptionVisible = false; this.dtgOrgUser.DataMember = ""; this.dtgOrgUser.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgOrgUser.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgOrgUser.Location = new System.Drawing.Point(10, 9); this.dtgOrgUser.Name = "dtgOrgUser"; this.dtgOrgUser.ReadOnly = true; this.dtgOrgUser.RowHeaderWidth = 3; this.dtgOrgUser.Size = new System.Drawing.Size(720, 296); this.dtgOrgUser.TabIndex = 4; this.dtgOrgUser.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgOrgUser.CurrentCellChanged += new System.EventHandler(this.dtgOrgUser_CurrentCellChanged); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgOrgUser; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colUserLogin, this.colOrganisationName, this.colRight}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.MappingName = "Table"; // // colUserLogin // this.colUserLogin.Format = ""; this.colUserLogin.FormatInfo = null; this.colUserLogin.HeaderText = "Felhasználó"; this.colUserLogin.MappingName = "cLoginNameRef"; this.colUserLogin.Width = 75; // // colOrganisationName // this.colOrganisationName.Format = ""; this.colOrganisationName.FormatInfo = null; this.colOrganisationName.HeaderText = "Szervezet neve"; this.colOrganisationName.MappingName = "cName"; this.colOrganisationName.Width = 200; // // colRight // this.colRight.Format = ""; this.colRight.FormatInfo = null; this.colRight.HeaderText = "Jogosultság"; this.colRight.MappingName = "cRight"; this.colRight.Width = 150; // // frmUserEdit // this.AcceptButton = this.btnOk; this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(870, 605); this.Controls.Add(this.tabControl); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.pHeader); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmUserEdit"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmUserEdit_Load); this.pnlBottom.ResumeLayout(false); this.tabControl.ResumeLayout(false); this.tabUserData.ResumeLayout(false); this.tabUserData.PerformLayout(); this.tabUserRights.ResumeLayout(false); this.groupBox1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dtgOrgUser)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDesignerDrogSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbNew = new System.Windows.Forms.ToolBarButton(); this.tbbModify = new System.Windows.Forms.ToolBarButton(); this.tbbInactivate = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.pnlFilter = new System.Windows.Forms.Panel(); this.cmbCategoryRef = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.lblCategoryRef = new System.Windows.Forms.Label(); this.cmbActual = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.cmbStatus = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label4 = new System.Windows.Forms.Label(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colTitle = new System.Windows.Forms.DataGridTextBoxColumn(); this.colAuthor = new System.Windows.Forms.DataGridTextBoxColumn(); this.colSource = new System.Windows.Forms.DataGridTextBoxColumn(); this.colCategory = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActive = new System.Windows.Forms.DataGridBoolColumn(); this.colIsActual = new System.Windows.Forms.DataGridBoolColumn(); this.pnlFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(800, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Designer drogok"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "A Designer drogok portálon megjelenõ elemek szerkeszétse"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbNew, this.tbbModify, this.tbbInactivate, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(800, 28); this.tlbMain.TabIndex = 1; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbNew // this.tbbNew.ImageIndex = 0; this.tbbNew.Name = "tbbNew"; this.tbbNew.ToolTipText = "Új hír"; // // tbbModify // this.tbbModify.ImageIndex = 1; this.tbbModify.Name = "tbbModify"; this.tbbModify.ToolTipText = "Hír módosítása"; // // tbbInactivate // this.tbbInactivate.ImageIndex = 2; this.tbbInactivate.Name = "tbbInactivate"; this.tbbInactivate.ToolTipText = "Inaktiválás/aktiválás"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 3; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // pnlFilter // this.pnlFilter.Controls.Add(this.cmbCategoryRef); this.pnlFilter.Controls.Add(this.lblCategoryRef); this.pnlFilter.Controls.Add(this.cmbActual); this.pnlFilter.Controls.Add(this.cmbStatus); this.pnlFilter.Controls.Add(this.label4); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(800, 80); this.pnlFilter.TabIndex = 2; // // cmbCategoryRef // this.cmbCategoryRef.AllowNull = true; this.cmbCategoryRef.BreakSort = false; this.cmbCategoryRef.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbCategoryRef.Items.AddRange(new object[] { "Magyar"}); this.cmbCategoryRef.Location = new System.Drawing.Point(101, 34); this.cmbCategoryRef.Name = "cmbCategoryRef"; this.cmbCategoryRef.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbCategoryRef.Size = new System.Drawing.Size(341, 24); this.cmbCategoryRef.TabIndex = 44; this.cmbCategoryRef.ToolBarUse = false; this.cmbCategoryRef.ValidationErrorMessage = "Érvénytelen karakter!"; // // lblCategoryRef // this.lblCategoryRef.Location = new System.Drawing.Point(9, 39); this.lblCategoryRef.Name = "lblCategoryRef"; this.lblCategoryRef.Size = new System.Drawing.Size(86, 23); this.lblCategoryRef.TabIndex = 45; this.lblCategoryRef.Text = "Kategória:"; // // cmbActual // this.cmbActual.AllowNull = true; this.cmbActual.BreakSort = false; this.cmbActual.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbActual.Location = new System.Drawing.Point(303, 6); this.cmbActual.Name = "cmbActual"; this.cmbActual.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbActual.Size = new System.Drawing.Size(139, 24); this.cmbActual.TabIndex = 7; this.cmbActual.ToolBarUse = false; this.cmbActual.ValidationErrorMessage = "Érvénytelen karakter!"; // // cmbStatus // this.cmbStatus.AllowNull = true; this.cmbStatus.BreakSort = false; this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatus.Location = new System.Drawing.Point(101, 6); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatus.Size = new System.Drawing.Size(139, 24); this.cmbStatus.TabIndex = 5; this.cmbStatus.ToolBarUse = false; this.cmbStatus.ValidationErrorMessage = "Érvénytelen karakter!"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(9, 11); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(55, 17); this.label4.TabIndex = 4; this.label4.Text = "Állapot:"; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 154); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(800, 155); this.dtgMain.TabIndex = 3; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.Navigate += new System.Windows.Forms.NavigateEventHandler(this.dtgMain_Navigate); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colTitle, this.colAuthor, this.colSource, this.colCategory, this.colActive, this.colIsActual}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.MappingName = "Table"; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // colTitle // this.colTitle.Format = ""; this.colTitle.FormatInfo = null; this.colTitle.HeaderText = "Cím"; this.colTitle.MappingName = "cTitle"; this.colTitle.Width = 200; // // colVisibleForVisitor // this.colAuthor.HeaderText = "Szerzõ"; this.colAuthor.MappingName = "cAuthor"; this.colAuthor.Width = 100; // // colVisibleForRegistered // this.colSource.HeaderText = "Forrás"; this.colSource.MappingName = "cSource"; this.colSource.Width = 100; // // colCategory // this.colCategory.Format = ""; this.colCategory.FormatInfo = null; this.colCategory.HeaderText = "Kategória"; this.colCategory.MappingName = "cCategoryName"; this.colCategory.Width = 135; // // colActive // this.colActive.HeaderText = "Aktív"; this.colActive.MappingName = "bIsActive"; this.colActive.Width = 75; // // colIsActual // this.colIsActual.HeaderText = "Aktuális"; this.colIsActual.MappingName = "bIsActual"; this.colIsActual.Width = 75; // // frmDesignerDrogSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(800, 309); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmDesignerDrogSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmDesignerDrogsSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmForumGroupSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbNew = new System.Windows.Forms.ToolBarButton(); this.tbbModify = new System.Windows.Forms.ToolBarButton(); this.tbbInactivate = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.pnlFilter = new System.Windows.Forms.Panel(); this.cmbStatus = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.cmbVisibleForRegistered = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.cmbVisibleForVisitor = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label2 = new System.Windows.Forms.Label(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colVisibleForVisitor = new System.Windows.Forms.DataGridBoolColumn(); this.colVisibleForRegistered = new System.Windows.Forms.DataGridBoolColumn(); this.colActive = new System.Windows.Forms.DataGridBoolColumn(); this.toolBarButton1 = new System.Windows.Forms.ToolBarButton(); this.pnlFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(607, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Fórum témák"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Fórum témák szerkesztése"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbNew, this.tbbModify, this.tbbInactivate, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(607, 28); this.tlbMain.TabIndex = 1; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbNew // this.tbbNew.ImageIndex = 0; this.tbbNew.Name = "tbbNew"; this.tbbNew.ToolTipText = "Új fórum téma"; // // tbbModify // this.tbbModify.ImageIndex = 1; this.tbbModify.Name = "tbbModify"; this.tbbModify.ToolTipText = "Fórum téma módosítása"; // // tbbInactivate // this.tbbInactivate.ImageIndex = 2; this.tbbInactivate.Name = "tbbInactivate"; this.tbbInactivate.ToolTipText = "Fórum téma törlése"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 3; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // pnlFilter // this.pnlFilter.Controls.Add(this.cmbStatus); this.pnlFilter.Controls.Add(this.label4); this.pnlFilter.Controls.Add(this.label3); this.pnlFilter.Controls.Add(this.cmbVisibleForRegistered); this.pnlFilter.Controls.Add(this.cmbVisibleForVisitor); this.pnlFilter.Controls.Add(this.label2); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(607, 79); this.pnlFilter.TabIndex = 2; // // cmbStatus // this.cmbStatus.AllowNull = true; this.cmbStatus.BreakSort = false; this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatus.Location = new System.Drawing.Point(449, 9); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatus.Size = new System.Drawing.Size(139, 24); this.cmbStatus.TabIndex = 2; this.cmbStatus.ToolBarUse = false; this.cmbStatus.ValidationErrorMessage = "Érvénytelen karakter!"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(391, 14); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(55, 17); this.label4.TabIndex = 4; this.label4.Text = "Állapot:"; // // label3 // this.label3.Location = new System.Drawing.Point(17, 37); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(206, 32); this.label3.TabIndex = 2; this.label3.Text = "Látható a regisztrált felhasználók számára:"; // // cmbVisibleForRegistered // this.cmbVisibleForRegistered.AllowNull = true; this.cmbVisibleForRegistered.BreakSort = false; this.cmbVisibleForRegistered.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbVisibleForRegistered.Location = new System.Drawing.Point(223, 42); this.cmbVisibleForRegistered.Name = "cmbVisibleForRegistered"; this.cmbVisibleForRegistered.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbVisibleForRegistered.Size = new System.Drawing.Size(139, 24); this.cmbVisibleForRegistered.TabIndex = 1; this.cmbVisibleForRegistered.ToolBarUse = false; this.cmbVisibleForRegistered.ValidationErrorMessage = "Érvénytelen karakter!"; // // cmbVisibleForVisitor // this.cmbVisibleForVisitor.AllowNull = true; this.cmbVisibleForVisitor.BreakSort = false; this.cmbVisibleForVisitor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbVisibleForVisitor.Location = new System.Drawing.Point(223, 9); this.cmbVisibleForVisitor.Name = "cmbVisibleForVisitor"; this.cmbVisibleForVisitor.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbVisibleForVisitor.Size = new System.Drawing.Size(139, 24); this.cmbVisibleForVisitor.TabIndex = 0; this.cmbVisibleForVisitor.ToolBarUse = false; this.cmbVisibleForVisitor.ValidationErrorMessage = "Érvénytelen karakter!"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(17, 14); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(192, 17); this.label2.TabIndex = 0; this.label2.Text = "Látható a látogatók számára:"; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 153); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(607, 113); this.dtgMain.TabIndex = 3; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colName, this.colVisibleForVisitor, this.colVisibleForRegistered, this.colActive}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // colName // this.colName.Format = ""; this.colName.FormatInfo = null; this.colName.HeaderText = "Téma neve"; this.colName.MappingName = "Name"; this.colName.Width = 350; // // colVisibleForVisitor // this.colVisibleForVisitor.HeaderText = "Látogató"; this.colVisibleForVisitor.MappingName = "VisibleForVisitor"; this.colVisibleForVisitor.Width = 75; // // colVisibleForRegistered // this.colVisibleForRegistered.HeaderText = "Felhasználó"; this.colVisibleForRegistered.MappingName = "VisibleForRegistered"; this.colVisibleForRegistered.Width = 75; // // colActive // this.colActive.HeaderText = "Aktív"; this.colActive.MappingName = "IsActive"; this.colActive.Width = 75; // // toolBarButton1 // this.toolBarButton1.ImageIndex = 1; this.toolBarButton1.Name = "toolBarButton1"; this.toolBarButton1.Text = "Fórum téma módosítása"; // // frmForumGroupSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(607, 266); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmForumGroupSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmForumGroupSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPendingQuestionFormSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbDecide = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.pnlFilter = new System.Windows.Forms.Panel(); this.label4 = new System.Windows.Forms.Label(); this.cmbProgram = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label3 = new System.Windows.Forms.Label(); this.cmbOrganisation = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label1 = new System.Windows.Forms.Label(); this.cmbCategory = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.cmbStatusFilter = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label2 = new System.Windows.Forms.Label(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colStatus = new System.Windows.Forms.DataGridTextBoxColumn(); this.colTemplateName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colOrganisationName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colProgramName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colCategory = new System.Windows.Forms.DataGridTextBoxColumn(); this.colSentDate = new System.Windows.Forms.DataGridTextBoxColumn(); this.pnlFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(611, 46); this.pHeader.TabIndex = 2; this.pHeader.Text1 = "Elbírálandó kérdõívek"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Elbírálásra váró kérdõívek listája, illetve a korábbi bírálatok eredménye"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbDecide, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(611, 28); this.tlbMain.TabIndex = 3; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbDecide // this.tbbDecide.ImageIndex = 1; this.tbbDecide.Name = "tbbDecide"; this.tbbDecide.ToolTipText = "Regisztráció jóváhagyása"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 2; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // pnlFilter // this.pnlFilter.Controls.Add(this.label4); this.pnlFilter.Controls.Add(this.cmbProgram); this.pnlFilter.Controls.Add(this.label3); this.pnlFilter.Controls.Add(this.cmbOrganisation); this.pnlFilter.Controls.Add(this.label1); this.pnlFilter.Controls.Add(this.cmbCategory); this.pnlFilter.Controls.Add(this.cmbStatusFilter); this.pnlFilter.Controls.Add(this.label2); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(611, 70); this.pnlFilter.TabIndex = 59; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(336, 43); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(66, 17); this.label4.TabIndex = 64; this.label4.Text = "Program:"; // // cmbProgram // this.cmbProgram.AllowNull = true; this.cmbProgram.BreakSort = false; this.cmbProgram.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbProgram.Location = new System.Drawing.Point(413, 37); this.cmbProgram.Name = "cmbProgram"; this.cmbProgram.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbProgram.Size = new System.Drawing.Size(173, 24); this.cmbProgram.TabIndex = 63; this.cmbProgram.ToolBarUse = false; this.cmbProgram.ValidationErrorMessage = "Érvénytelen karakter!"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(10, 43); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(75, 17); this.label3.TabIndex = 62; this.label3.Text = "Szervezet:"; // // cmbOrganisation // this.cmbOrganisation.AllowNull = true; this.cmbOrganisation.BreakSort = false; this.cmbOrganisation.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbOrganisation.Location = new System.Drawing.Point(86, 37); this.cmbOrganisation.Name = "cmbOrganisation"; this.cmbOrganisation.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrganisation.Size = new System.Drawing.Size(221, 24); this.cmbOrganisation.TabIndex = 61; this.cmbOrganisation.ToolBarUse = false; this.cmbOrganisation.ValidationErrorMessage = "Érvénytelen karakter!"; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(336, 15); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(73, 17); this.label1.TabIndex = 60; this.label1.Text = "Kategória:"; // // cmbCategory // this.cmbCategory.AllowNull = false; this.cmbCategory.BreakSort = false; this.cmbCategory.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbCategory.Location = new System.Drawing.Point(413, 9); this.cmbCategory.Name = "cmbCategory"; this.cmbCategory.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbCategory.Size = new System.Drawing.Size(173, 24); this.cmbCategory.TabIndex = 59; this.cmbCategory.ToolBarUse = false; this.cmbCategory.ValidationErrorMessage = "Érvénytelen karakter!"; this.cmbCategory.SelectedIndexChanged += new System.EventHandler(this.cmbCategory_SelectedIndexChanged); // // cmbStatusFilter // this.cmbStatusFilter.AllowNull = true; this.cmbStatusFilter.BreakSort = false; this.cmbStatusFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatusFilter.Location = new System.Drawing.Point(86, 9); this.cmbStatusFilter.Name = "cmbStatusFilter"; this.cmbStatusFilter.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatusFilter.Size = new System.Drawing.Size(221, 24); this.cmbStatusFilter.TabIndex = 58; this.cmbStatusFilter.ToolBarUse = false; this.cmbStatusFilter.ValidationErrorMessage = "Érvénytelen karakter!"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(10, 15); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(59, 17); this.label2.TabIndex = 57; this.label2.Text = "Státusz:"; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 144); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(611, 216); this.dtgMain.TabIndex = 60; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colStatus, this.colTemplateName, this.colOrganisationName, this.colProgramName, this.colCategory, this.colSentDate}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection1.RowHeaderWidth = 3; this.customStylesCollection1.SelectionBackColor = System.Drawing.SystemColors.Highlight; // // colStatus // this.colStatus.Format = ""; this.colStatus.FormatInfo = null; this.colStatus.HeaderText = "Státusz"; this.colStatus.MappingName = "StatusName"; this.colStatus.Width = 75; // // colTemplateName // this.colTemplateName.Format = ""; this.colTemplateName.FormatInfo = null; this.colTemplateName.HeaderText = "Kérdõív"; this.colTemplateName.MappingName = "TemplateName"; this.colTemplateName.Width = 130; // // colOrganisationName // this.colOrganisationName.Format = ""; this.colOrganisationName.FormatInfo = null; this.colOrganisationName.HeaderText = "Szervezet"; this.colOrganisationName.MappingName = "OrganisationName"; this.colOrganisationName.Width = 140; // // colProgramName // this.colProgramName.Format = ""; this.colProgramName.FormatInfo = null; this.colProgramName.HeaderText = "Program"; this.colProgramName.MappingName = "ProgramName"; this.colProgramName.Width = 140; // // colCategory // this.colCategory.Format = ""; this.colCategory.FormatInfo = null; this.colCategory.HeaderText = "Kategória"; this.colCategory.MappingName = "CategoryName"; // // colSentDate // this.colSentDate.Format = ""; this.colSentDate.FormatInfo = null; this.colSentDate.HeaderText = "Küldés dátuma"; this.colSentDate.MappingName = "SentDate"; this.colSentDate.Width = 120; // // frmPendingQuestionFormSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(611, 360); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmPendingQuestionFormSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmPendingQuestionFormSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmThesaurusSelect)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.tlbMain = new System.Windows.Forms.ToolBar(); this.tbbSeparator1 = new System.Windows.Forms.ToolBarButton(); this.tbbNew = new System.Windows.Forms.ToolBarButton(); this.tbbModify = new System.Windows.Forms.ToolBarButton(); this.tbbInactivate = new System.Windows.Forms.ToolBarButton(); this.tbbSeparator2 = new System.Windows.Forms.ToolBarButton(); this.tbbRefresh = new System.Windows.Forms.ToolBarButton(); this.imgToolbar = new System.Windows.Forms.ImageList(this.components); this.pnlFilter = new System.Windows.Forms.Panel(); this.txtKeyword = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label1 = new System.Windows.Forms.Label(); this.cmbStatus = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label4 = new System.Windows.Forms.Label(); this.dtgMain = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colKeyword = new Ndi.HelpDesk.UI.Controls.DataGridFullSelectColumn(); this.colActive = new System.Windows.Forms.DataGridBoolColumn(); this.pnlFilter.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(603, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Tezaurusz"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Kulcsszavak karbantartása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // tlbMain // this.tlbMain.Appearance = System.Windows.Forms.ToolBarAppearance.Flat; this.tlbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] { this.tbbSeparator1, this.tbbNew, this.tbbModify, this.tbbInactivate, this.tbbSeparator2, this.tbbRefresh}); this.tlbMain.DropDownArrows = true; this.tlbMain.ImageList = this.imgToolbar; this.tlbMain.Location = new System.Drawing.Point(0, 46); this.tlbMain.Name = "tlbMain"; this.tlbMain.ShowToolTips = true; this.tlbMain.Size = new System.Drawing.Size(603, 28); this.tlbMain.TabIndex = 1; this.tlbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tlbMain_ButtonClick); // // tbbSeparator1 // this.tbbSeparator1.Name = "tbbSeparator1"; this.tbbSeparator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbNew // this.tbbNew.ImageIndex = 0; this.tbbNew.Name = "tbbNew"; this.tbbNew.ToolTipText = "Új kulcsszó létrehozása"; // // tbbModify // this.tbbModify.ImageIndex = 1; this.tbbModify.Name = "tbbModify"; this.tbbModify.ToolTipText = "Program adatainak módosítása"; // // tbbInactivate // this.tbbInactivate.ImageIndex = 2; this.tbbInactivate.Name = "tbbInactivate"; this.tbbInactivate.ToolTipText = "Inaktiválás/aktiválás"; // // tbbSeparator2 // this.tbbSeparator2.Name = "tbbSeparator2"; this.tbbSeparator2.Style = System.Windows.Forms.ToolBarButtonStyle.Separator; // // tbbRefresh // this.tbbRefresh.ImageIndex = 3; this.tbbRefresh.Name = "tbbRefresh"; this.tbbRefresh.ToolTipText = "Lista frissítése/szûrés"; // // imgToolbar // this.imgToolbar.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgToolbar.ImageStream"))); this.imgToolbar.TransparentColor = System.Drawing.Color.Transparent; this.imgToolbar.Images.SetKeyName(0, ""); this.imgToolbar.Images.SetKeyName(1, ""); this.imgToolbar.Images.SetKeyName(2, ""); this.imgToolbar.Images.SetKeyName(3, ""); this.imgToolbar.Images.SetKeyName(4, ""); // // pnlFilter // this.pnlFilter.Controls.Add(this.txtKeyword); this.pnlFilter.Controls.Add(this.label1); this.pnlFilter.Controls.Add(this.cmbStatus); this.pnlFilter.Controls.Add(this.label4); this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top; this.pnlFilter.Location = new System.Drawing.Point(0, 74); this.pnlFilter.Name = "pnlFilter"; this.pnlFilter.Size = new System.Drawing.Size(603, 42); this.pnlFilter.TabIndex = 2; // // txtKeyword // this.txtKeyword.AllowNull = true; this.txtKeyword.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtKeyword.InvalidCharSet = ""; this.txtKeyword.Location = new System.Drawing.Point(96, 9); this.txtKeyword.MaxLength = 100; this.txtKeyword.Name = "txtKeyword"; this.txtKeyword.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtKeyword.Size = new System.Drawing.Size(204, 22); this.txtKeyword.TabIndex = 1; this.txtKeyword.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtKeyword.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtKeyword.ValidationMask = ""; this.txtKeyword.ValidCharSet = ""; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(19, 14); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(71, 17); this.label1.TabIndex = 0; this.label1.Text = "Vezérszó:"; // // cmbStatus // this.cmbStatus.AllowNull = true; this.cmbStatus.BreakSort = false; this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStatus.Location = new System.Drawing.Point(413, 9); this.cmbStatus.Name = "cmbStatus"; this.cmbStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbStatus.Size = new System.Drawing.Size(173, 24); this.cmbStatus.TabIndex = 3; this.cmbStatus.ToolBarUse = false; this.cmbStatus.ValidationErrorMessage = "Érvénytelen karakter!"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(350, 14); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(55, 17); this.label4.TabIndex = 2; this.label4.Text = "Állapot:"; // // dtgMain // this.dtgMain.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgMain.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgMain.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgMain.CaptionVisible = false; this.dtgMain.DataMember = ""; this.dtgMain.Dock = System.Windows.Forms.DockStyle.Fill; this.dtgMain.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgMain.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgMain.Location = new System.Drawing.Point(0, 116); this.dtgMain.Name = "dtgMain"; this.dtgMain.ReadOnly = true; this.dtgMain.RowHeaderWidth = 3; this.dtgMain.Size = new System.Drawing.Size(603, 185); this.dtgMain.TabIndex = 3; this.dtgMain.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgMain.DoubleClick += new System.EventHandler(this.dtgMain_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgMain; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colKeyword, this.colActive}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colKeyword // this.colKeyword.Format = ""; this.colKeyword.FormatInfo = null; this.colKeyword.HeaderText = "Vezérszó"; this.colKeyword.MappingName = "Keyword"; this.colKeyword.Width = 300; // // colActive // this.colActive.HeaderText = "Aktív"; this.colActive.MappingName = "IsActive"; this.colActive.Width = 75; // // frmThesaurusSelect // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(603, 301); this.Controls.Add(this.dtgMain); this.Controls.Add(this.pnlFilter); this.Controls.Add(this.tlbMain); this.Controls.Add(this.pHeader); this.Name = "frmThesaurusSelect"; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmThesaurusSelect_Load); this.pnlFilter.ResumeLayout(false); this.pnlFilter.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgMain)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmTemplateEdit)); this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.tabControl1 = new System.Windows.Forms.TabControl(); this.tabPage1 = new System.Windows.Forms.TabPage(); this.grpCategory = new System.Windows.Forms.GroupBox(); this.cbxCategoryOther = new System.Windows.Forms.CheckBox(); this.cbxCategoryTreatment = new System.Windows.Forms.CheckBox(); this.cbxCategoryResearch = new System.Windows.Forms.CheckBox(); this.cbxCategoryPrevention = new System.Windows.Forms.CheckBox(); this.rbtCategoryProgram = new System.Windows.Forms.RadioButton(); this.rbtCategoryOrganisation = new System.Windows.Forms.RadioButton(); this.cbxActivate = new System.Windows.Forms.CheckBox(); this.cmbPublicityLevel = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.txtName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.tabPage3 = new System.Windows.Forms.TabPage(); this.btnMoveDown = new System.Windows.Forms.Button(); this.btnMoveUp = new System.Windows.Forms.Button(); this.btnPageDelete = new System.Windows.Forms.Button(); this.btnPageModify = new System.Windows.Forms.Button(); this.btnPageNew = new System.Windows.Forms.Button(); this.dtgPages = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection1 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colPageName = new System.Windows.Forms.DataGridTextBoxColumn(); this.colPagePageIndex = new System.Windows.Forms.DataGridTextBoxColumn(); this.colIsActive = new System.Windows.Forms.DataGridBoolColumn(); this.tabPage2 = new System.Windows.Forms.TabPage(); this.btnModifyDetail = new System.Windows.Forms.Button(); this.btnNewDetail = new System.Windows.Forms.Button(); this.dtgDetails = new Ndi.HelpDesk.UI.Controls.GreptonDataGrid(); this.customStylesCollection2 = new Ndi.HelpDesk.UI.Controls.CustomStylesCollection(); this.colDetailID = new System.Windows.Forms.DataGridTextBoxColumn(); this.colDeteilQuestion = new System.Windows.Forms.DataGridTextBoxColumn(); this.colDetailPageIndex = new System.Windows.Forms.DataGridTextBoxColumn(); this.colDetailOrder = new System.Windows.Forms.DataGridTextBoxColumn(); this.colDetailActive = new System.Windows.Forms.DataGridBoolColumn(); this.pnlBottom = new System.Windows.Forms.Panel(); this.btnPreview = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components); this.tabControl1.SuspendLayout(); this.tabPage1.SuspendLayout(); this.grpCategory.SuspendLayout(); this.tabPage3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgPages)).BeginInit(); this.tabPage2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dtgDetails)).BeginInit(); this.pnlBottom.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(771, 46); this.pHeader.TabIndex = 0; this.pHeader.Text1 = "Kérdõív sablonok"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Kérdõív sablon szerkesztése"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // tabControl1 // this.tabControl1.Controls.Add(this.tabPage1); this.tabControl1.Controls.Add(this.tabPage3); this.tabControl1.Controls.Add(this.tabPage2); this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.tabControl1.Location = new System.Drawing.Point(0, 46); this.tabControl1.Name = "tabControl1"; this.tabControl1.SelectedIndex = 0; this.tabControl1.Size = new System.Drawing.Size(771, 490); this.tabControl1.TabIndex = 1; // // tabPage1 // this.tabPage1.Controls.Add(this.grpCategory); this.tabPage1.Controls.Add(this.cbxActivate); this.tabPage1.Controls.Add(this.cmbPublicityLevel); this.tabPage1.Controls.Add(this.label2); this.tabPage1.Controls.Add(this.label1); this.tabPage1.Controls.Add(this.txtName); this.tabPage1.Location = new System.Drawing.Point(4, 25); this.tabPage1.Name = "tabPage1"; this.tabPage1.Size = new System.Drawing.Size(763, 461); this.tabPage1.TabIndex = 0; this.tabPage1.Text = "Alapadatok"; // // grpCategory // this.grpCategory.Controls.Add(this.cbxCategoryOther); this.grpCategory.Controls.Add(this.cbxCategoryTreatment); this.grpCategory.Controls.Add(this.cbxCategoryResearch); this.grpCategory.Controls.Add(this.cbxCategoryPrevention); this.grpCategory.Controls.Add(this.rbtCategoryProgram); this.grpCategory.Controls.Add(this.rbtCategoryOrganisation); this.grpCategory.Location = new System.Drawing.Point(10, 102); this.grpCategory.Name = "grpCategory"; this.grpCategory.Size = new System.Drawing.Size(403, 184); this.grpCategory.TabIndex = 5; this.grpCategory.TabStop = false; this.grpCategory.Text = "A sablon az alábbi kategóriákhoz tartozhat"; this.grpCategory.Validating += new System.ComponentModel.CancelEventHandler(this.grpCategory_Validating); this.grpCategory.Validated += new System.EventHandler(this.grpCategory_Validated); // // cbxCategoryOther // this.cbxCategoryOther.Location = new System.Drawing.Point(202, 138); this.cbxCategoryOther.Name = "cbxCategoryOther"; this.cbxCategoryOther.Size = new System.Drawing.Size(163, 28); this.cbxCategoryOther.TabIndex = 5; this.cbxCategoryOther.Text = "Egyéb program"; // // cbxCategoryTreatment // this.cbxCategoryTreatment.Location = new System.Drawing.Point(202, 111); this.cbxCategoryTreatment.Name = "cbxCategoryTreatment"; this.cbxCategoryTreatment.Size = new System.Drawing.Size(163, 27); this.cbxCategoryTreatment.TabIndex = 4; this.cbxCategoryTreatment.Text = "Ellátási program"; // // cbxCategoryResearch // this.cbxCategoryResearch.Location = new System.Drawing.Point(202, 83); this.cbxCategoryResearch.Name = "cbxCategoryResearch"; this.cbxCategoryResearch.Size = new System.Drawing.Size(163, 28); this.cbxCategoryResearch.TabIndex = 3; this.cbxCategoryResearch.Text = "Kutatási program"; // // cbxCategoryPrevention // this.cbxCategoryPrevention.Location = new System.Drawing.Point(202, 55); this.cbxCategoryPrevention.Name = "cbxCategoryPrevention"; this.cbxCategoryPrevention.Size = new System.Drawing.Size(163, 28); this.cbxCategoryPrevention.TabIndex = 2; this.cbxCategoryPrevention.Text = "Prevenciós program"; // // rbtCategoryProgram // this.rbtCategoryProgram.Location = new System.Drawing.Point(202, 28); this.rbtCategoryProgram.Name = "rbtCategoryProgram"; this.rbtCategoryProgram.Size = new System.Drawing.Size(124, 27); this.rbtCategoryProgram.TabIndex = 1; this.rbtCategoryProgram.Text = "Program"; this.rbtCategoryProgram.CheckedChanged += new System.EventHandler(this.rbtCategory_CheckedChanged); // // rbtCategoryOrganisation // this.rbtCategoryOrganisation.Location = new System.Drawing.Point(29, 28); this.rbtCategoryOrganisation.Name = "rbtCategoryOrganisation"; this.rbtCategoryOrganisation.Size = new System.Drawing.Size(125, 27); this.rbtCategoryOrganisation.TabIndex = 0; this.rbtCategoryOrganisation.Text = "Szervezet"; this.rbtCategoryOrganisation.CheckedChanged += new System.EventHandler(this.rbtCategory_CheckedChanged); // // cbxActivate // this.cbxActivate.Location = new System.Drawing.Point(144, 65); this.cbxActivate.Name = "cbxActivate"; this.cbxActivate.Size = new System.Drawing.Size(125, 27); this.cbxActivate.TabIndex = 4; this.cbxActivate.Text = "Aktív"; // // cmbPublicityLevel // this.cmbPublicityLevel.AllowNull = false; this.cmbPublicityLevel.BreakSort = false; this.cmbPublicityLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbPublicityLevel.Location = new System.Drawing.Point(144, 37); this.cmbPublicityLevel.Name = "cmbPublicityLevel"; this.cmbPublicityLevel.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbPublicityLevel.Size = new System.Drawing.Size(264, 24); this.cmbPublicityLevel.TabIndex = 3; this.cmbPublicityLevel.ToolBarUse = false; this.cmbPublicityLevel.ValidationErrorMessage = "Érvénytelen karakter!"; // // label2 // this.label2.Location = new System.Drawing.Point(10, 12); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(124, 17); this.label2.TabIndex = 0; this.label2.Text = "Sablon neve:"; // // label1 // this.label1.Location = new System.Drawing.Point(10, 39); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(124, 19); this.label1.TabIndex = 2; this.label1.Text = "Láthatósági szint:"; // // txtName // this.txtName.AllowNull = false; this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtName.InvalidCharSet = ""; this.txtName.Location = new System.Drawing.Point(144, 9); this.txtName.MaxLength = 250; this.txtName.Name = "txtName"; this.txtName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtName.Size = new System.Drawing.Size(523, 22); this.txtName.TabIndex = 1; this.txtName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtName.ValidationMask = ""; this.txtName.ValidCharSet = ""; // // tabPage3 // this.tabPage3.Controls.Add(this.btnMoveDown); this.tabPage3.Controls.Add(this.btnMoveUp); this.tabPage3.Controls.Add(this.btnPageDelete); this.tabPage3.Controls.Add(this.btnPageModify); this.tabPage3.Controls.Add(this.btnPageNew); this.tabPage3.Controls.Add(this.dtgPages); this.tabPage3.Location = new System.Drawing.Point(4, 25); this.tabPage3.Name = "tabPage3"; this.tabPage3.Size = new System.Drawing.Size(763, 461); this.tabPage3.TabIndex = 2; this.tabPage3.Text = "Lapok"; // // btnMoveDown // this.btnMoveDown.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnMoveDown.Image = ((System.Drawing.Image)(resources.GetObject("btnMoveDown.Image"))); this.btnMoveDown.ImageAlign = System.Drawing.ContentAlignment.TopLeft; this.btnMoveDown.Location = new System.Drawing.Point(144, 321); this.btnMoveDown.Name = "btnMoveDown"; this.btnMoveDown.Size = new System.Drawing.Size(46, 47); this.btnMoveDown.TabIndex = 5; this.btnMoveDown.Click += new System.EventHandler(this.btnMoveDown_Click); // // btnMoveUp // this.btnMoveUp.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnMoveUp.Image = ((System.Drawing.Image)(resources.GetObject("btnMoveUp.Image"))); this.btnMoveUp.ImageAlign = System.Drawing.ContentAlignment.TopLeft; this.btnMoveUp.Location = new System.Drawing.Point(86, 321); this.btnMoveUp.Name = "btnMoveUp"; this.btnMoveUp.Size = new System.Drawing.Size(46, 47); this.btnMoveUp.TabIndex = 4; this.btnMoveUp.Click += new System.EventHandler(this.btnMoveUp_Click); // // btnPageDelete // this.btnPageDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnPageDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnPageDelete.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnPageDelete.Location = new System.Drawing.Point(615, 376); this.btnPageDelete.Name = "btnPageDelete"; this.btnPageDelete.Size = new System.Drawing.Size(134, 23); this.btnPageDelete.TabIndex = 3; this.btnPageDelete.Text = "Aktív / Inaktív"; this.btnPageDelete.Click += new System.EventHandler(this.btnPageDelete_Click); // // btnPageModify // this.btnPageModify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnPageModify.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnPageModify.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnPageModify.Location = new System.Drawing.Point(471, 376); this.btnPageModify.Name = "btnPageModify"; this.btnPageModify.Size = new System.Drawing.Size(134, 23); this.btnPageModify.TabIndex = 2; this.btnPageModify.Text = "Lap módosítása"; this.btnPageModify.Click += new System.EventHandler(this.btnPageModify_Click); // // btnPageNew // this.btnPageNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnPageNew.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnPageNew.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnPageNew.Location = new System.Drawing.Point(327, 376); this.btnPageNew.Name = "btnPageNew"; this.btnPageNew.Size = new System.Drawing.Size(134, 23); this.btnPageNew.TabIndex = 1; this.btnPageNew.Text = "Új lap"; this.btnPageNew.Click += new System.EventHandler(this.btnPageNew_Click); // // dtgPages // this.dtgPages.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgPages.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgPages.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgPages.CaptionVisible = false; this.dtgPages.DataMember = ""; this.dtgPages.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgPages.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgPages.Location = new System.Drawing.Point(11, 9); this.dtgPages.Name = "dtgPages"; this.dtgPages.ReadOnly = true; this.dtgPages.RowHeaderWidth = 3; this.dtgPages.Size = new System.Drawing.Size(873, 305); this.dtgPages.TabIndex = 0; this.dtgPages.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection1}); this.dtgPages.CurrentCellChanged += new System.EventHandler(this.dtgPages_CurrentCellChanged); this.dtgPages.DoubleClick += new System.EventHandler(this.dtgPages_DoubleClick); // // customStylesCollection1 // this.customStylesCollection1.DataGrid = this.dtgPages; this.customStylesCollection1.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colPageName, this.colPagePageIndex, this.colIsActive}); this.customStylesCollection1.HeaderForeColor = System.Drawing.SystemColors.ControlText; // // colPageName // this.colPageName.Format = ""; this.colPageName.FormatInfo = null; this.colPageName.HeaderText = "Lap neve"; this.colPageName.MappingName = "Name"; this.colPageName.Width = 200; // // colPagePageIndex // this.colPagePageIndex.Format = ""; this.colPagePageIndex.FormatInfo = null; this.colPagePageIndex.HeaderText = "Lap sorszáma"; this.colPagePageIndex.MappingName = "PageIndex"; this.colPagePageIndex.Width = 75; // // colIsActive // this.colIsActive.HeaderText = "Aktív"; this.colIsActive.MappingName = "IsActive"; this.colIsActive.Width = 60; // // tabPage2 // this.tabPage2.Controls.Add(this.btnModifyDetail); this.tabPage2.Controls.Add(this.btnNewDetail); this.tabPage2.Controls.Add(this.dtgDetails); this.tabPage2.Location = new System.Drawing.Point(4, 25); this.tabPage2.Name = "tabPage2"; this.tabPage2.Size = new System.Drawing.Size(763, 461); this.tabPage2.TabIndex = 1; this.tabPage2.Text = "Kérdések"; // // btnModifyDetail // this.btnModifyDetail.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnModifyDetail.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnModifyDetail.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnModifyDetail.Location = new System.Drawing.Point(615, 376); this.btnModifyDetail.Name = "btnModifyDetail"; this.btnModifyDetail.Size = new System.Drawing.Size(134, 23); this.btnModifyDetail.TabIndex = 2; this.btnModifyDetail.Text = "Kérdés módosítása"; this.btnModifyDetail.Click += new System.EventHandler(this.btnModifyDetail_Click); // // btnNewDetail // this.btnNewDetail.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnNewDetail.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnNewDetail.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnNewDetail.Location = new System.Drawing.Point(471, 376); this.btnNewDetail.Name = "btnNewDetail"; this.btnNewDetail.Size = new System.Drawing.Size(134, 23); this.btnNewDetail.TabIndex = 1; this.btnNewDetail.Text = "Új kérdés"; this.btnNewDetail.Click += new System.EventHandler(this.btnNewDetail_Click); // // dtgDetails // this.dtgDetails.BackgroundColor = System.Drawing.SystemColors.Window; this.dtgDetails.BorderStyle = System.Windows.Forms.BorderStyle.None; this.dtgDetails.CaptionBackColor = System.Drawing.SystemColors.Highlight; this.dtgDetails.CaptionVisible = false; this.dtgDetails.DataMember = ""; this.dtgDetails.GridLineColor = System.Drawing.SystemColors.ControlLight; this.dtgDetails.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.dtgDetails.Location = new System.Drawing.Point(10, 9); this.dtgDetails.Name = "dtgDetails"; this.dtgDetails.ReadOnly = true; this.dtgDetails.RowHeaderWidth = 3; this.dtgDetails.Size = new System.Drawing.Size(873, 305); this.dtgDetails.TabIndex = 0; this.dtgDetails.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] { this.customStylesCollection2}); this.dtgDetails.DoubleClick += new System.EventHandler(this.dtgDetails_DoubleClick); // // customStylesCollection2 // this.customStylesCollection2.DataGrid = this.dtgDetails; this.customStylesCollection2.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] { this.colDetailID, this.colDeteilQuestion, this.colDetailPageIndex, this.colDetailOrder, this.colDetailActive}); this.customStylesCollection2.HeaderForeColor = System.Drawing.SystemColors.ControlText; this.customStylesCollection2.RowHeaderWidth = 3; // // colDetailID // this.colDetailID.Format = ""; this.colDetailID.FormatInfo = null; this.colDetailID.HeaderText = "Azonosító"; this.colDetailID.MappingName = "ID"; this.colDetailID.Width = 75; // // colDeteilQuestion // this.colDeteilQuestion.Format = ""; this.colDeteilQuestion.FormatInfo = null; this.colDeteilQuestion.HeaderText = "Kérdés szövege"; this.colDeteilQuestion.MappingName = "Question"; this.colDeteilQuestion.Width = 300; // // colDetailPageIndex // this.colDetailPageIndex.Format = ""; this.colDetailPageIndex.FormatInfo = null; this.colDetailPageIndex.HeaderText = "Lap sorszáma"; this.colDetailPageIndex.MappingName = "PageIndex"; this.colDetailPageIndex.Width = 75; // // colDetailOrder // this.colDetailOrder.Format = ""; this.colDetailOrder.FormatInfo = null; this.colDetailOrder.HeaderText = "Sorszám"; this.colDetailOrder.MappingName = "Order"; this.colDetailOrder.Width = 75; // // colDetailActive // this.colDetailActive.HeaderText = "Aktív"; this.colDetailActive.MappingName = "IsActive"; this.colDetailActive.Width = 75; // // pnlBottom // this.pnlBottom.Controls.Add(this.btnPreview); this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnOk); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 490); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(771, 46); this.pnlBottom.TabIndex = 2; // // btnPreview // this.btnPreview.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnPreview.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnPreview.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnPreview.Location = new System.Drawing.Point(480, 14); this.btnPreview.Name = "btnPreview"; this.btnPreview.Size = new System.Drawing.Size(84, 23); this.btnPreview.TabIndex = 0; this.btnPreview.Text = "Megtekint"; this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click); // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(672, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 2; this.btnCancel.Text = "Mégse"; // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnOk.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOk.Location = new System.Drawing.Point(576, 14); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(84, 23); this.btnOk.TabIndex = 1; this.btnOk.Text = "Rendben"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // errorProvider1 // this.errorProvider1.ContainerControl = this; // // frmTemplateEdit // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.ClientSize = new System.Drawing.Size(771, 536); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.tabControl1); this.Controls.Add(this.pHeader); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmTemplateEdit"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmTemplateEdit_Load); this.tabControl1.ResumeLayout(false); this.tabPage1.ResumeLayout(false); this.tabPage1.PerformLayout(); this.grpCategory.ResumeLayout(false); this.tabPage3.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dtgPages)).EndInit(); this.tabPage2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dtgDetails)).EndInit(); this.pnlBottom.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.pHeader = new Ndi.HelpDesk.UI.Controls.InfoBarLite(); this.pnlBottom = new System.Windows.Forms.Panel(); this.lblGetRight = new System.Windows.Forms.Label(); this.cbxModifyData = new System.Windows.Forms.CheckBox(); this.btnAccept = new System.Windows.Forms.Button(); this.btnCancel = new System.Windows.Forms.Button(); this.btnReject = new System.Windows.Forms.Button(); this.label11 = new System.Windows.Forms.Label(); this.txtRejectComment = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label10 = new System.Windows.Forms.Label(); this.txtSentDate = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label8 = new System.Windows.Forms.Label(); this.txtOrganisationName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label7 = new System.Windows.Forms.Label(); this.txtUserAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label6 = new System.Windows.Forms.Label(); this.txtUserCity = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtUserPostCode = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.txtUserPhone = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label3 = new System.Windows.Forms.Label(); this.txtUserEmail = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label2 = new System.Windows.Forms.Label(); this.txtUserName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label1 = new System.Windows.Forms.Label(); this.txtLoginName = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label9 = new System.Windows.Forms.Label(); this.txtOrgPhone = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label12 = new System.Windows.Forms.Label(); this.txtOrgFax = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.label28 = new System.Windows.Forms.Label(); this.txtOrgDepartment = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.cbxOrgActOther = new System.Windows.Forms.CheckBox(); this.cbxOrgActRehabilitation = new System.Windows.Forms.CheckBox(); this.cbxOrgActResearch = new System.Windows.Forms.CheckBox(); this.cbxOrgActPrevention = new System.Windows.Forms.CheckBox(); this.label27 = new System.Windows.Forms.Label(); this.cmbOrgForm = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label26 = new System.Windows.Forms.Label(); this.txtOrgWorkingAreaOther = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label25 = new System.Windows.Forms.Label(); this.cmbOrgWorkingArea = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label24 = new System.Windows.Forms.Label(); this.label23 = new System.Windows.Forms.Label(); this.txtOrgHomePage = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label17 = new System.Windows.Forms.Label(); this.txtOrgDescription = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label13 = new System.Windows.Forms.Label(); this.txtOrgAddress = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label14 = new System.Windows.Forms.Label(); this.txtOrgCity = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtOrgPostCode = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label15 = new System.Windows.Forms.Label(); this.label22 = new System.Windows.Forms.Label(); this.txtOrgEmail = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtOrgCountry = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label29 = new System.Windows.Forms.Label(); this.cmbOrgRegion = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.label16 = new System.Windows.Forms.Label(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.label21 = new System.Windows.Forms.Label(); this.cmbQualification = new Ndi.HelpDesk.UI.Controls.TextComboBox(); this.txtCountry = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label20 = new System.Windows.Forms.Label(); this.txtBirthYear = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label19 = new System.Windows.Forms.Label(); this.rbtWoman = new System.Windows.Forms.RadioButton(); this.rbtMan = new System.Windows.Forms.RadioButton(); this.label18 = new System.Windows.Forms.Label(); this.label30 = new System.Windows.Forms.Label(); this.txtDecidedBy = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtDecidedDate = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.txtStatus = new Ndi.HelpDesk.UI.Controls.GreptonTextBox(); this.label31 = new System.Windows.Forms.Label(); this.label32 = new System.Windows.Forms.Label(); this.pnlBottom.SuspendLayout(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.SuspendLayout(); // // pHeader // this.pHeader.BackColor = System.Drawing.SystemColors.Window; this.pHeader.BackStyle = Ndi.HelpDesk.UI.Controls.BackStyle.Solid; this.pHeader.BorderSide = System.Windows.Forms.Border3DSide.Bottom; this.pHeader.BorderStyle = System.Windows.Forms.Border3DStyle.Etched; this.pHeader.Dock = System.Windows.Forms.DockStyle.Top; this.pHeader.GradientEndColor = System.Drawing.Color.White; this.pHeader.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal; this.pHeader.GradientStartColor = System.Drawing.Color.DeepSkyBlue; this.pHeader.Image = null; this.pHeader.ImageAlign = Ndi.HelpDesk.UI.Controls.ImageAlignment.TopLeft; this.pHeader.ImageOffsetX = 2; this.pHeader.ImageOffsetY = 0; this.pHeader.Location = new System.Drawing.Point(0, 0); this.pHeader.Name = "pHeader"; this.pHeader.Size = new System.Drawing.Size(864, 46); this.pHeader.TabIndex = 0; this.pHeader.TabStop = false; this.pHeader.Text1 = "Regisztrálandó szervezetek"; this.pHeader.Text1Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Bold); this.pHeader.Text1ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text1OffsetX = 0; this.pHeader.Text1OffsetY = 0; this.pHeader.Text2 = "Regisztráció elbírálása"; this.pHeader.Text2Font = new System.Drawing.Font("Segoe UI", 8F); this.pHeader.Text2ForeColor = System.Drawing.SystemColors.ControlText; this.pHeader.Text2OffsetX = 20; this.pHeader.Text2OffsetY = 0; // // pnlBottom // this.pnlBottom.Controls.Add(this.lblGetRight); this.pnlBottom.Controls.Add(this.cbxModifyData); this.pnlBottom.Controls.Add(this.btnAccept); this.pnlBottom.Controls.Add(this.btnCancel); this.pnlBottom.Controls.Add(this.btnReject); this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.pnlBottom.Location = new System.Drawing.Point(0, 677); this.pnlBottom.Name = "pnlBottom"; this.pnlBottom.Size = new System.Drawing.Size(864, 46); this.pnlBottom.TabIndex = 13; // // lblGetRight // this.lblGetRight.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(238))); this.lblGetRight.ForeColor = System.Drawing.Color.Red; this.lblGetRight.Location = new System.Drawing.Point(10, 9); this.lblGetRight.Name = "lblGetRight"; this.lblGetRight.Size = new System.Drawing.Size(288, 27); this.lblGetRight.TabIndex = 4; this.lblGetRight.Text = "Írási jog kérése"; this.lblGetRight.Visible = false; // // cbxModifyData // this.cbxModifyData.Location = new System.Drawing.Point(394, 9); this.cbxModifyData.Name = "cbxModifyData"; this.cbxModifyData.Size = new System.Drawing.Size(153, 28); this.cbxModifyData.TabIndex = 0; this.cbxModifyData.Text = "Adatok módosítása"; this.cbxModifyData.CheckedChanged += new System.EventHandler(this.cbxModifyData_CheckedChanged); // // btnAccept // this.btnAccept.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnAccept.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnAccept.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnAccept.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnAccept.Location = new System.Drawing.Point(574, 14); this.btnAccept.Name = "btnAccept"; this.btnAccept.Size = new System.Drawing.Size(84, 23); this.btnAccept.TabIndex = 1; this.btnAccept.Text = "Elfogad"; this.btnAccept.Click += new System.EventHandler(this.btnAccept_Click); // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnCancel.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCancel.Location = new System.Drawing.Point(766, 14); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(84, 23); this.btnCancel.TabIndex = 3; this.btnCancel.Text = "Mégse"; // // btnReject // this.btnReject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnReject.DialogResult = System.Windows.Forms.DialogResult.OK; this.btnReject.FlatStyle = System.Windows.Forms.FlatStyle.Popup; this.btnReject.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnReject.Location = new System.Drawing.Point(670, 14); this.btnReject.Name = "btnReject"; this.btnReject.Size = new System.Drawing.Size(84, 23); this.btnReject.TabIndex = 2; this.btnReject.Text = "Elutasít"; this.btnReject.Click += new System.EventHandler(this.btnReject_Click); // // label11 // this.label11.Location = new System.Drawing.Point(437, 486); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(125, 34); this.label11.TabIndex = 7; this.label11.Text = "Elutasítás indoklása:"; this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtRejectComment // this.txtRejectComment.AllowNull = true; this.txtRejectComment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtRejectComment.InvalidCharSet = ""; this.txtRejectComment.Location = new System.Drawing.Point(571, 486); this.txtRejectComment.MaxLength = 1000; this.txtRejectComment.Multiline = true; this.txtRejectComment.Name = "txtRejectComment"; this.txtRejectComment.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtRejectComment.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtRejectComment.Size = new System.Drawing.Size(264, 64); this.txtRejectComment.TabIndex = 8; this.txtRejectComment.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtRejectComment.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtRejectComment.ValidationMask = ""; this.txtRejectComment.ValidCharSet = ""; // // label10 // this.label10.Location = new System.Drawing.Point(437, 426); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(125, 18); this.label10.TabIndex = 3; this.label10.Text = "Küldés dátuma:"; this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtSentDate // this.txtSentDate.AllowNull = true; this.txtSentDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtSentDate.InvalidCharSet = ""; this.txtSentDate.Location = new System.Drawing.Point(571, 426); this.txtSentDate.MaxLength = 100; this.txtSentDate.Name = "txtSentDate"; this.txtSentDate.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtSentDate.ReadOnly = true; this.txtSentDate.Size = new System.Drawing.Size(168, 22); this.txtSentDate.TabIndex = 4; this.txtSentDate.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtSentDate.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtSentDate.ValidationMask = ""; this.txtSentDate.ValidCharSet = ""; // // label8 // this.label8.Location = new System.Drawing.Point(10, 23); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(124, 18); this.label8.TabIndex = 0; this.label8.Text = "Szervezet neve:"; this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrganisationName // this.txtOrganisationName.AllowNull = false; this.txtOrganisationName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrganisationName.InvalidCharSet = ""; this.txtOrganisationName.Location = new System.Drawing.Point(139, 23); this.txtOrganisationName.MaxLength = 250; this.txtOrganisationName.Name = "txtOrganisationName"; this.txtOrganisationName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrganisationName.Size = new System.Drawing.Size(264, 22); this.txtOrganisationName.TabIndex = 1; this.txtOrganisationName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrganisationName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrganisationName.ValidationMask = ""; this.txtOrganisationName.ValidCharSet = ""; // // label7 // this.label7.Location = new System.Drawing.Point(10, 263); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(124, 18); this.label7.TabIndex = 17; this.label7.Text = "Utca, házszám:"; this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtUserAddress // this.txtUserAddress.AllowNull = true; this.txtUserAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserAddress.InvalidCharSet = ""; this.txtUserAddress.Location = new System.Drawing.Point(139, 263); this.txtUserAddress.MaxLength = 100; this.txtUserAddress.Name = "txtUserAddress"; this.txtUserAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserAddress.Size = new System.Drawing.Size(264, 22); this.txtUserAddress.TabIndex = 18; this.txtUserAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserAddress.ValidationMask = ""; this.txtUserAddress.ValidCharSet = ""; // // label6 // this.label6.Location = new System.Drawing.Point(10, 233); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(124, 18); this.label6.TabIndex = 15; this.label6.Text = "Település:"; this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtUserCity // this.txtUserCity.AllowNull = true; this.txtUserCity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserCity.InvalidCharSet = ""; this.txtUserCity.Location = new System.Drawing.Point(139, 233); this.txtUserCity.MaxLength = 100; this.txtUserCity.Name = "txtUserCity"; this.txtUserCity.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserCity.Size = new System.Drawing.Size(264, 22); this.txtUserCity.TabIndex = 16; this.txtUserCity.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserCity.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserCity.ValidationMask = ""; this.txtUserCity.ValidCharSet = ""; // // txtUserPostCode // this.txtUserPostCode.AllowNull = true; this.txtUserPostCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserPostCode.InvalidCharSet = ""; this.txtUserPostCode.Location = new System.Drawing.Point(139, 203); this.txtUserPostCode.MaxLength = 10; this.txtUserPostCode.Name = "txtUserPostCode"; this.txtUserPostCode.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserPostCode.Size = new System.Drawing.Size(96, 22); this.txtUserPostCode.TabIndex = 14; this.txtUserPostCode.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserPostCode.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserPostCode.ValidationMask = ""; this.txtUserPostCode.ValidCharSet = ""; // // label5 // this.label5.Location = new System.Drawing.Point(10, 203); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(124, 18); this.label5.TabIndex = 13; this.label5.Text = "Irányítószám:"; this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label4 // this.label4.Location = new System.Drawing.Point(10, 143); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(124, 18); this.label4.TabIndex = 9; this.label4.Text = "Telefonszám:"; this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtUserPhone // this.txtUserPhone.AllowNull = true; this.txtUserPhone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserPhone.InvalidCharSet = ""; this.txtUserPhone.Location = new System.Drawing.Point(139, 143); this.txtUserPhone.MaxLength = 20; this.txtUserPhone.Name = "txtUserPhone"; this.txtUserPhone.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserPhone.Size = new System.Drawing.Size(264, 22); this.txtUserPhone.TabIndex = 10; this.txtUserPhone.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserPhone.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserPhone.ValidationMask = ""; this.txtUserPhone.ValidCharSet = ""; // // label3 // this.label3.Location = new System.Drawing.Point(10, 173); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(124, 18); this.label3.TabIndex = 11; this.label3.Text = "E-mail cím:"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtUserEmail // this.txtUserEmail.AllowNull = false; this.txtUserEmail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserEmail.InvalidCharSet = ""; this.txtUserEmail.Location = new System.Drawing.Point(139, 173); this.txtUserEmail.MaxLength = 250; this.txtUserEmail.Name = "txtUserEmail"; this.txtUserEmail.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserEmail.Size = new System.Drawing.Size(264, 22); this.txtUserEmail.TabIndex = 12; this.txtUserEmail.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserEmail.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserEmail.ValidationMask = ""; this.txtUserEmail.ValidCharSet = ""; // // label2 // this.label2.Location = new System.Drawing.Point(10, 53); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(124, 18); this.label2.TabIndex = 2; this.label2.Text = "Teljes név:"; this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtUserName // this.txtUserName.AllowNull = false; this.txtUserName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtUserName.InvalidCharSet = ""; this.txtUserName.Location = new System.Drawing.Point(139, 53); this.txtUserName.MaxLength = 100; this.txtUserName.Name = "txtUserName"; this.txtUserName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtUserName.Size = new System.Drawing.Size(264, 22); this.txtUserName.TabIndex = 3; this.txtUserName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtUserName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtUserName.ValidationMask = ""; this.txtUserName.ValidCharSet = ""; // // label1 // this.label1.Location = new System.Drawing.Point(10, 23); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(124, 18); this.label1.TabIndex = 0; this.label1.Text = "Bejelentkezési név:"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtLoginName // this.txtLoginName.AllowNull = false; this.txtLoginName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtLoginName.InvalidCharSet = ""; this.txtLoginName.Location = new System.Drawing.Point(139, 23); this.txtLoginName.MaxLength = 50; this.txtLoginName.Name = "txtLoginName"; this.txtLoginName.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtLoginName.ReadOnly = true; this.txtLoginName.Size = new System.Drawing.Size(264, 22); this.txtLoginName.TabIndex = 1; this.txtLoginName.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtLoginName.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtLoginName.ValidationMask = ""; this.txtLoginName.ValidCharSet = ""; // // label9 // this.label9.Location = new System.Drawing.Point(10, 203); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(124, 18); this.label9.TabIndex = 12; this.label9.Text = "Telefonszám:"; this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgPhone // this.txtOrgPhone.AllowNull = true; this.txtOrgPhone.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgPhone.InvalidCharSet = ""; this.txtOrgPhone.Location = new System.Drawing.Point(139, 203); this.txtOrgPhone.MaxLength = 20; this.txtOrgPhone.Name = "txtOrgPhone"; this.txtOrgPhone.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgPhone.Size = new System.Drawing.Size(264, 22); this.txtOrgPhone.TabIndex = 13; this.txtOrgPhone.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgPhone.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgPhone.ValidationMask = ""; this.txtOrgPhone.ValidCharSet = ""; // // label12 // this.label12.Location = new System.Drawing.Point(10, 233); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(124, 18); this.label12.TabIndex = 14; this.label12.Text = "Fax:"; this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgFax // this.txtOrgFax.AllowNull = true; this.txtOrgFax.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgFax.InvalidCharSet = ""; this.txtOrgFax.Location = new System.Drawing.Point(139, 233); this.txtOrgFax.MaxLength = 20; this.txtOrgFax.Name = "txtOrgFax"; this.txtOrgFax.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgFax.Size = new System.Drawing.Size(264, 22); this.txtOrgFax.TabIndex = 15; this.txtOrgFax.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgFax.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgFax.ValidationMask = ""; this.txtOrgFax.ValidCharSet = ""; // // groupBox1 // this.groupBox1.Controls.Add(this.label28); this.groupBox1.Controls.Add(this.txtOrgDepartment); this.groupBox1.Controls.Add(this.cbxOrgActOther); this.groupBox1.Controls.Add(this.cbxOrgActRehabilitation); this.groupBox1.Controls.Add(this.cbxOrgActResearch); this.groupBox1.Controls.Add(this.cbxOrgActPrevention); this.groupBox1.Controls.Add(this.label27); this.groupBox1.Controls.Add(this.cmbOrgForm); this.groupBox1.Controls.Add(this.label26); this.groupBox1.Controls.Add(this.txtOrgWorkingAreaOther); this.groupBox1.Controls.Add(this.label25); this.groupBox1.Controls.Add(this.cmbOrgWorkingArea); this.groupBox1.Controls.Add(this.label24); this.groupBox1.Controls.Add(this.label23); this.groupBox1.Controls.Add(this.txtOrgHomePage); this.groupBox1.Controls.Add(this.label17); this.groupBox1.Controls.Add(this.txtOrgDescription); this.groupBox1.Controls.Add(this.label13); this.groupBox1.Controls.Add(this.txtOrgAddress); this.groupBox1.Controls.Add(this.label14); this.groupBox1.Controls.Add(this.txtOrgCity); this.groupBox1.Controls.Add(this.txtOrgPostCode); this.groupBox1.Controls.Add(this.label15); this.groupBox1.Controls.Add(this.txtOrgFax); this.groupBox1.Controls.Add(this.label9); this.groupBox1.Controls.Add(this.txtOrgPhone); this.groupBox1.Controls.Add(this.label8); this.groupBox1.Controls.Add(this.txtOrganisationName); this.groupBox1.Controls.Add(this.label12); this.groupBox1.Controls.Add(this.label22); this.groupBox1.Controls.Add(this.txtOrgEmail); this.groupBox1.Controls.Add(this.txtOrgCountry); this.groupBox1.Controls.Add(this.label29); this.groupBox1.Controls.Add(this.cmbOrgRegion); this.groupBox1.Controls.Add(this.label16); this.groupBox1.Location = new System.Drawing.Point(10, 55); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(412, 580); this.groupBox1.TabIndex = 1; this.groupBox1.TabStop = false; this.groupBox1.Text = "Szervezet adatai"; // // label28 // this.label28.Location = new System.Drawing.Point(10, 53); this.label28.Name = "label28"; this.label28.Size = new System.Drawing.Size(124, 18); this.label28.TabIndex = 2; this.label28.Text = "Szervezeti egység:"; this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgDepartment // this.txtOrgDepartment.AllowNull = true; this.txtOrgDepartment.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgDepartment.InvalidCharSet = ""; this.txtOrgDepartment.Location = new System.Drawing.Point(139, 53); this.txtOrgDepartment.MaxLength = 250; this.txtOrgDepartment.Name = "txtOrgDepartment"; this.txtOrgDepartment.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgDepartment.Size = new System.Drawing.Size(264, 22); this.txtOrgDepartment.TabIndex = 3; this.txtOrgDepartment.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgDepartment.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgDepartment.ValidationMask = ""; this.txtOrgDepartment.ValidCharSet = ""; // // cbxOrgActOther // this.cbxOrgActOther.Location = new System.Drawing.Point(139, 470); this.cbxOrgActOther.Name = "cbxOrgActOther"; this.cbxOrgActOther.Size = new System.Drawing.Size(96, 23); this.cbxOrgActOther.TabIndex = 32; this.cbxOrgActOther.Text = "Egyéb"; // // cbxOrgActRehabilitation // this.cbxOrgActRehabilitation.Location = new System.Drawing.Point(240, 447); this.cbxOrgActRehabilitation.Name = "cbxOrgActRehabilitation"; this.cbxOrgActRehabilitation.Size = new System.Drawing.Size(72, 23); this.cbxOrgActRehabilitation.TabIndex = 30; this.cbxOrgActRehabilitation.Text = "Ellátás"; // // cbxOrgActResearch // this.cbxOrgActResearch.Location = new System.Drawing.Point(322, 447); this.cbxOrgActResearch.Name = "cbxOrgActResearch"; this.cbxOrgActResearch.Size = new System.Drawing.Size(81, 23); this.cbxOrgActResearch.TabIndex = 31; this.cbxOrgActResearch.Text = "Kutatás"; // // cbxOrgActPrevention // this.cbxOrgActPrevention.Location = new System.Drawing.Point(139, 447); this.cbxOrgActPrevention.Name = "cbxOrgActPrevention"; this.cbxOrgActPrevention.Size = new System.Drawing.Size(96, 23); this.cbxOrgActPrevention.TabIndex = 29; this.cbxOrgActPrevention.Text = "Prevenció"; // // label27 // this.label27.Location = new System.Drawing.Point(10, 447); this.label27.Name = "label27"; this.label27.Size = new System.Drawing.Size(124, 18); this.label27.TabIndex = 28; this.label27.Text = "Tevékenységek:"; this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cmbOrgForm // this.cmbOrgForm.AllowNull = false; this.cmbOrgForm.BreakSort = false; this.cmbOrgForm.Location = new System.Drawing.Point(139, 416); this.cmbOrgForm.Name = "cmbOrgForm"; this.cmbOrgForm.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrgForm.Size = new System.Drawing.Size(264, 24); this.cmbOrgForm.TabIndex = 27; this.cmbOrgForm.ToolBarUse = false; this.cmbOrgForm.ValidationErrorMessage = "Érvénytelen karakter!"; // // label26 // this.label26.Location = new System.Drawing.Point(10, 416); this.label26.Name = "label26"; this.label26.Size = new System.Drawing.Size(124, 18); this.label26.TabIndex = 26; this.label26.Text = "Szervezeti forma:"; this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgWorkingAreaOther // this.txtOrgWorkingAreaOther.AllowNull = true; this.txtOrgWorkingAreaOther.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgWorkingAreaOther.InvalidCharSet = ""; this.txtOrgWorkingAreaOther.Location = new System.Drawing.Point(139, 385); this.txtOrgWorkingAreaOther.MaxLength = 500; this.txtOrgWorkingAreaOther.Multiline = true; this.txtOrgWorkingAreaOther.Name = "txtOrgWorkingAreaOther"; this.txtOrgWorkingAreaOther.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgWorkingAreaOther.Size = new System.Drawing.Size(264, 23); this.txtOrgWorkingAreaOther.TabIndex = 25; this.txtOrgWorkingAreaOther.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgWorkingAreaOther.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgWorkingAreaOther.ValidationMask = ""; this.txtOrgWorkingAreaOther.ValidCharSet = ""; // // label25 // this.label25.Location = new System.Drawing.Point(10, 385); this.label25.Name = "label25"; this.label25.Size = new System.Drawing.Size(124, 31); this.label25.TabIndex = 24; this.label25.Text = "Mûködési terület kiegészítése:"; this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cmbOrgWorkingArea // this.cmbOrgWorkingArea.AllowNull = false; this.cmbOrgWorkingArea.BreakSort = false; this.cmbOrgWorkingArea.Location = new System.Drawing.Point(139, 354); this.cmbOrgWorkingArea.Name = "cmbOrgWorkingArea"; this.cmbOrgWorkingArea.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrgWorkingArea.Size = new System.Drawing.Size(264, 24); this.cmbOrgWorkingArea.TabIndex = 23; this.cmbOrgWorkingArea.ToolBarUse = false; this.cmbOrgWorkingArea.ValidationErrorMessage = "Érvénytelen karakter!"; // // label24 // this.label24.Location = new System.Drawing.Point(10, 354); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(124, 18); this.label24.TabIndex = 22; this.label24.Text = "Mûködési terület:"; this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label23 // this.label23.Location = new System.Drawing.Point(10, 293); this.label23.Name = "label23"; this.label23.Size = new System.Drawing.Size(124, 18); this.label23.TabIndex = 18; this.label23.Text = "Internet honlap:"; this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgHomePage // this.txtOrgHomePage.AllowNull = true; this.txtOrgHomePage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgHomePage.InvalidCharSet = ""; this.txtOrgHomePage.Location = new System.Drawing.Point(139, 293); this.txtOrgHomePage.MaxLength = 250; this.txtOrgHomePage.Name = "txtOrgHomePage"; this.txtOrgHomePage.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgHomePage.Size = new System.Drawing.Size(264, 22); this.txtOrgHomePage.TabIndex = 19; this.txtOrgHomePage.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgHomePage.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgHomePage.ValidationMask = ""; this.txtOrgHomePage.ValidCharSet = ""; // // label17 // this.label17.Location = new System.Drawing.Point(10, 498); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(124, 46); this.label17.TabIndex = 33; this.label17.Text = "Adatbázis használatának célja:"; this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgDescription // this.txtOrgDescription.AllowNull = true; this.txtOrgDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgDescription.InvalidCharSet = ""; this.txtOrgDescription.Location = new System.Drawing.Point(139, 498); this.txtOrgDescription.MaxLength = 1000; this.txtOrgDescription.Multiline = true; this.txtOrgDescription.Name = "txtOrgDescription"; this.txtOrgDescription.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.txtOrgDescription.Size = new System.Drawing.Size(264, 64); this.txtOrgDescription.TabIndex = 34; this.txtOrgDescription.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgDescription.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgDescription.ValidationMask = ""; this.txtOrgDescription.ValidCharSet = ""; // // label13 // this.label13.Location = new System.Drawing.Point(10, 143); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(124, 18); this.label13.TabIndex = 8; this.label13.Text = "Utca, házszám:"; this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgAddress // this.txtOrgAddress.AllowNull = true; this.txtOrgAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgAddress.InvalidCharSet = ""; this.txtOrgAddress.Location = new System.Drawing.Point(139, 143); this.txtOrgAddress.MaxLength = 100; this.txtOrgAddress.Name = "txtOrgAddress"; this.txtOrgAddress.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgAddress.Size = new System.Drawing.Size(264, 22); this.txtOrgAddress.TabIndex = 9; this.txtOrgAddress.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgAddress.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgAddress.ValidationMask = ""; this.txtOrgAddress.ValidCharSet = ""; // // label14 // this.label14.Location = new System.Drawing.Point(10, 113); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(124, 18); this.label14.TabIndex = 6; this.label14.Text = "Település:"; this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgCity // this.txtOrgCity.AllowNull = true; this.txtOrgCity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgCity.InvalidCharSet = ""; this.txtOrgCity.Location = new System.Drawing.Point(139, 113); this.txtOrgCity.MaxLength = 100; this.txtOrgCity.Name = "txtOrgCity"; this.txtOrgCity.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgCity.Size = new System.Drawing.Size(264, 22); this.txtOrgCity.TabIndex = 7; this.txtOrgCity.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgCity.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgCity.ValidationMask = ""; this.txtOrgCity.ValidCharSet = ""; // // txtOrgPostCode // this.txtOrgPostCode.AllowNull = true; this.txtOrgPostCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgPostCode.InvalidCharSet = ""; this.txtOrgPostCode.Location = new System.Drawing.Point(139, 83); this.txtOrgPostCode.MaxLength = 10; this.txtOrgPostCode.Name = "txtOrgPostCode"; this.txtOrgPostCode.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgPostCode.Size = new System.Drawing.Size(96, 22); this.txtOrgPostCode.TabIndex = 5; this.txtOrgPostCode.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgPostCode.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgPostCode.ValidationMask = ""; this.txtOrgPostCode.ValidCharSet = ""; // // label15 // this.label15.Location = new System.Drawing.Point(10, 83); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(124, 18); this.label15.TabIndex = 4; this.label15.Text = "Irányítószám:"; this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label22 // this.label22.Location = new System.Drawing.Point(10, 263); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(124, 18); this.label22.TabIndex = 16; this.label22.Text = "E-mail cím:"; this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtOrgEmail // this.txtOrgEmail.AllowNull = true; this.txtOrgEmail.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgEmail.InvalidCharSet = ""; this.txtOrgEmail.Location = new System.Drawing.Point(139, 263); this.txtOrgEmail.MaxLength = 250; this.txtOrgEmail.Name = "txtOrgEmail"; this.txtOrgEmail.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgEmail.Size = new System.Drawing.Size(264, 22); this.txtOrgEmail.TabIndex = 17; this.txtOrgEmail.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgEmail.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgEmail.ValidationMask = ""; this.txtOrgEmail.ValidCharSet = ""; // // txtOrgCountry // this.txtOrgCountry.AllowNull = true; this.txtOrgCountry.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtOrgCountry.InvalidCharSet = ""; this.txtOrgCountry.Location = new System.Drawing.Point(139, 173); this.txtOrgCountry.MaxLength = 100; this.txtOrgCountry.Name = "txtOrgCountry"; this.txtOrgCountry.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtOrgCountry.Size = new System.Drawing.Size(264, 22); this.txtOrgCountry.TabIndex = 11; this.txtOrgCountry.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtOrgCountry.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtOrgCountry.ValidationMask = ""; this.txtOrgCountry.ValidCharSet = ""; // // label29 // this.label29.Location = new System.Drawing.Point(10, 173); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(124, 18); this.label29.TabIndex = 10; this.label29.Text = "Ország:"; this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cmbOrgRegion // this.cmbOrgRegion.AllowNull = true; this.cmbOrgRegion.BreakSort = false; this.cmbOrgRegion.Location = new System.Drawing.Point(139, 323); this.cmbOrgRegion.Name = "cmbOrgRegion"; this.cmbOrgRegion.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbOrgRegion.Size = new System.Drawing.Size(264, 24); this.cmbOrgRegion.TabIndex = 21; this.cmbOrgRegion.ToolBarUse = false; this.cmbOrgRegion.ValidationErrorMessage = "Érvénytelen karakter!"; // // label16 // this.label16.Location = new System.Drawing.Point(10, 323); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(124, 18); this.label16.TabIndex = 20; this.label16.Text = "Régió:"; this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // groupBox2 // this.groupBox2.Controls.Add(this.label21); this.groupBox2.Controls.Add(this.cmbQualification); this.groupBox2.Controls.Add(this.txtCountry); this.groupBox2.Controls.Add(this.label20); this.groupBox2.Controls.Add(this.txtBirthYear); this.groupBox2.Controls.Add(this.label19); this.groupBox2.Controls.Add(this.rbtWoman); this.groupBox2.Controls.Add(this.rbtMan); this.groupBox2.Controls.Add(this.label18); this.groupBox2.Controls.Add(this.label3); this.groupBox2.Controls.Add(this.label1); this.groupBox2.Controls.Add(this.txtLoginName); this.groupBox2.Controls.Add(this.txtUserEmail); this.groupBox2.Controls.Add(this.txtUserName); this.groupBox2.Controls.Add(this.label2); this.groupBox2.Controls.Add(this.txtUserAddress); this.groupBox2.Controls.Add(this.label6); this.groupBox2.Controls.Add(this.txtUserCity); this.groupBox2.Controls.Add(this.txtUserPostCode); this.groupBox2.Controls.Add(this.label5); this.groupBox2.Controls.Add(this.label4); this.groupBox2.Controls.Add(this.txtUserPhone); this.groupBox2.Controls.Add(this.label7); this.groupBox2.Location = new System.Drawing.Point(432, 55); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(413, 362); this.groupBox2.TabIndex = 2; this.groupBox2.TabStop = false; this.groupBox2.Text = "Felhasználó adatai"; // // label21 // this.label21.Location = new System.Drawing.Point(10, 323); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(124, 36); this.label21.TabIndex = 21; this.label21.Text = "Legmagasabb iskolai végz."; this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // cmbQualification // this.cmbQualification.AllowNull = false; this.cmbQualification.BreakSort = false; this.cmbQualification.Location = new System.Drawing.Point(139, 323); this.cmbQualification.Name = "cmbQualification"; this.cmbQualification.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.cmbQualification.Size = new System.Drawing.Size(264, 24); this.cmbQualification.TabIndex = 22; this.cmbQualification.ToolBarUse = false; this.cmbQualification.ValidationErrorMessage = "Érvénytelen karakter!"; // // txtCountry // this.txtCountry.AllowNull = true; this.txtCountry.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtCountry.InvalidCharSet = ""; this.txtCountry.Location = new System.Drawing.Point(139, 293); this.txtCountry.MaxLength = 100; this.txtCountry.Name = "txtCountry"; this.txtCountry.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtCountry.Size = new System.Drawing.Size(264, 22); this.txtCountry.TabIndex = 20; this.txtCountry.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtCountry.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtCountry.ValidationMask = ""; this.txtCountry.ValidCharSet = ""; // // label20 // this.label20.Location = new System.Drawing.Point(10, 293); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(124, 18); this.label20.TabIndex = 19; this.label20.Text = "Ország:"; this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtBirthYear // this.txtBirthYear.AllowNull = false; this.txtBirthYear.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtBirthYear.InvalidCharSet = ""; this.txtBirthYear.Location = new System.Drawing.Point(139, 113); this.txtBirthYear.MaxLength = 4; this.txtBirthYear.Name = "txtBirthYear"; this.txtBirthYear.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtBirthYear.Size = new System.Drawing.Size(96, 22); this.txtBirthYear.TabIndex = 8; this.txtBirthYear.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtBirthYear.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtBirthYear.ValidationMask = ""; this.txtBirthYear.ValidCharSet = ",0123456789"; // // label19 // this.label19.Location = new System.Drawing.Point(10, 113); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(124, 18); this.label19.TabIndex = 7; this.label19.Text = "Születési év:"; this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // rbtWoman // this.rbtWoman.Enabled = false; this.rbtWoman.Location = new System.Drawing.Point(211, 83); this.rbtWoman.Name = "rbtWoman"; this.rbtWoman.Size = new System.Drawing.Size(58, 19); this.rbtWoman.TabIndex = 6; this.rbtWoman.Text = "Nõ"; // // rbtMan // this.rbtMan.Enabled = false; this.rbtMan.Location = new System.Drawing.Point(139, 83); this.rbtMan.Name = "rbtMan"; this.rbtMan.Size = new System.Drawing.Size(58, 19); this.rbtMan.TabIndex = 5; this.rbtMan.Text = "Férfi"; // // label18 // this.label18.Location = new System.Drawing.Point(10, 83); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(124, 18); this.label18.TabIndex = 4; this.label18.Text = "Neme:"; this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label30 // this.label30.Location = new System.Drawing.Point(437, 588); this.label30.Name = "label30"; this.label30.Size = new System.Drawing.Size(125, 18); this.label30.TabIndex = 11; this.label30.Text = "Elbírálta:"; this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // txtDecidedBy // this.txtDecidedBy.AllowNull = true; this.txtDecidedBy.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDecidedBy.InvalidCharSet = ""; this.txtDecidedBy.Location = new System.Drawing.Point(571, 588); this.txtDecidedBy.MaxLength = 100; this.txtDecidedBy.Name = "txtDecidedBy"; this.txtDecidedBy.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDecidedBy.ReadOnly = true; this.txtDecidedBy.Size = new System.Drawing.Size(264, 22); this.txtDecidedBy.TabIndex = 12; this.txtDecidedBy.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDecidedBy.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDecidedBy.ValidationMask = ""; this.txtDecidedBy.ValidCharSet = ""; // // txtDecidedDate // this.txtDecidedDate.AllowNull = true; this.txtDecidedDate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDecidedDate.InvalidCharSet = ""; this.txtDecidedDate.Location = new System.Drawing.Point(571, 558); this.txtDecidedDate.MaxLength = 100; this.txtDecidedDate.Name = "txtDecidedDate"; this.txtDecidedDate.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtDecidedDate.ReadOnly = true; this.txtDecidedDate.Size = new System.Drawing.Size(168, 22); this.txtDecidedDate.TabIndex = 10; this.txtDecidedDate.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtDecidedDate.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtDecidedDate.ValidationMask = ""; this.txtDecidedDate.ValidCharSet = ""; // // txtStatus // this.txtStatus.AllowNull = true; this.txtStatus.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtStatus.InvalidCharSet = ""; this.txtStatus.Location = new System.Drawing.Point(571, 456); this.txtStatus.MaxLength = 100; this.txtStatus.Name = "txtStatus"; this.txtStatus.NullErrorMessage = "Kötelezõen kitöltendõ mezõ!"; this.txtStatus.ReadOnly = true; this.txtStatus.Size = new System.Drawing.Size(168, 22); this.txtStatus.TabIndex = 6; this.txtStatus.Validation = Ndi.HelpDesk.UI.ValidationType.Nothing; this.txtStatus.ValidationErrorMessage = "Érvényesítési hiba!"; this.txtStatus.ValidationMask = ""; this.txtStatus.ValidCharSet = ""; // // label31 // this.label31.Location = new System.Drawing.Point(437, 558); this.label31.Name = "label31"; this.label31.Size = new System.Drawing.Size(125, 18); this.label31.TabIndex = 9; this.label31.Text = "Elbírálás dátuma:"; this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // label32 // this.label32.Location = new System.Drawing.Point(437, 453); this.label32.Name = "label32"; this.label32.Size = new System.Drawing.Size(129, 30); this.label32.TabIndex = 5; this.label32.Text = "Regisztráció státusza:"; this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // frmRegisterOrganisationEdit // this.AutoScaleBaseSize = new System.Drawing.Size(6, 15); this.CancelButton = this.btnCancel; this.ClientSize = new System.Drawing.Size(864, 723); this.Controls.Add(this.label30); this.Controls.Add(this.txtDecidedBy); this.Controls.Add(this.txtDecidedDate); this.Controls.Add(this.txtStatus); this.Controls.Add(this.txtRejectComment); this.Controls.Add(this.txtSentDate); this.Controls.Add(this.label31); this.Controls.Add(this.label32); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.Controls.Add(this.label11); this.Controls.Add(this.label10); this.Controls.Add(this.pnlBottom); this.Controls.Add(this.pHeader); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmRegisterOrganisationEdit"; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "NDI HelpDesk Adminisztrátor"; this.Load += new System.EventHandler(this.frmRegisterOrganisationEdit_Load); this.pnlBottom.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }