This is a migrated thread and some comments may be shown as answers.

Radgrid adding problem

6 Answers 193 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Sinan
Top achievements
Rank 1
Sinan asked on 26 Mar 2011, 04:18 PM
Hi,

I use visual studio 2010 sp1. When I press the Add button in the new record is added in BindingNavigator radgrid radtextbox connected to the grid, but does not change in registry. Do you think what am I doing wrong? Umaru has been used translate.google.com understandable.

6 Answers, 1 is accepted

Sort by
0
Emanuel Varga
Top achievements
Rank 1
answered on 26 Mar 2011, 05:37 PM
Hello snn,

I don't really understand what you mean by this. Do you mean that the new row has been added to the grids data source or BindingNavigator but not saved in the database? If this is the case and if you are using a TableAdapter just call an update on the table adapter to save the changes you have made to the grid in the db.

If not, please try to provide a small sample application. Be aware that the forums do not allow for file attachments, so you should either use an external file sharing site or you can just copy here (in separate code blocks) the content of the designer and the code file.

Hope this helps, if you have any other questions or comments, please let me know,

Best Regards,
Emanuel Varga

Telerik WinForms MVP
0
Sinan
Top achievements
Rank 1
answered on 26 Mar 2011, 05:50 PM
using System;
using System.Windows.Forms;
using Microsoft.Practices.CompositeUI.SmartParts;
using Microsoft.Practices.ObjectBuilder;
using Bantas.Infrastructure.Interface;
using Telerik.WinControls.UI;
using Telerik.WinControls.UI.Localization;
 
namespace Bantas.TanimModule
{
    public partial class PersonelView : UserControl, IPersonelView
    {
        public PersonelView()
        {
            InitializeComponent();
            radPageView1.SelectedPage = radPageViewPage1;
            doldur();
        }
 
        protected override void OnLoad(EventArgs e)
        {
            _presenter.OnViewReady();
            base.OnLoad(e);
        }
 
        private void doldur()
        {
            WS.PcService webService = new WS.PcService();
            try
            {
                this.personelDataSet = webService.GetPersonelDataset();
                this._PERSONELBindingSource.DataSource = this.personelDataSet._PERSONEL;
                this._GOREVBindingSource.DataSource = this.personelDataSet._GOREV;
            }
            catch (Exception ex)
            {
 
            }
        }
 
        private void _PERSONELBindingNavigatorSaveItem_Click(object sender, EventArgs e)
        {
            try
            {
                save(this._PERSONELBindingSource, this._GOREVBindingSource);
            }
            catch (Exception ex)
            {
         
            }
        }
 
        private void save(BindingSource a, BindingSource b)
        {
            a.EndEdit();
            b.EndEdit();
            WS.PcService webService = new WS.PcService();
            webService.UpdatePersonelDataset(this.personelDataSet);
 
            doldur();
        }
       
    }
}



namespace Bantas.TanimModule
{
    partial class PersonelView
    {
        /// <summary>
        /// The presenter used by this view.
        /// </summary>
        private Bantas.TanimModule.PersonelViewPresenter _presenter = null;
 
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;
 
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                if (_presenter != null)
                    _presenter.Dispose();
 
                if (components != null)
                    components.Dispose();
            }
 
            base.Dispose(disposing);
        }
 
        #region Component Designer generated code
 
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Label dOGUM_TARIHILabel;
            System.Windows.Forms.Label aMIRILabel;
            System.Windows.Forms.Label bAGLI_NMLabel;
            System.Windows.Forms.Label gOREV_TANIMLabel;
            System.Windows.Forms.Label aDILabel;
            System.Windows.Forms.Label eRP_SICIL_KODULabel;
            System.Windows.Forms.Label sICIL_KODULabel;
            System.Windows.Forms.Label aKTIFLabel;
            System.Windows.Forms.Label oZEL10Label;
            System.Windows.Forms.Label oZEL09Label;
            System.Windows.Forms.Label oZEL08Label;
            System.Windows.Forms.Label oZEL07Label;
            System.Windows.Forms.Label oZEL06Label;
            System.Windows.Forms.Label oZEL05Label;
            System.Windows.Forms.Label oZEL04Label;
            System.Windows.Forms.Label oZEL03Label;
            System.Windows.Forms.Label oZEL02Label;
            System.Windows.Forms.Label oZEL01Label;
            System.Windows.Forms.Label aDRESLabel;
            System.Windows.Forms.Label eMAILLabel;
            System.Windows.Forms.Label tEL_CEPLabel;
            System.Windows.Forms.Label tEL_EVLabel;
            System.Windows.Forms.Label label1;
            Telerik.WinControls.UI.RadListDataItem radListDataItem1 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem2 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem3 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.RadListDataItem radListDataItem4 = new Telerik.WinControls.UI.RadListDataItem();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn1 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn2 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn3 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn4 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PersonelView));
            this.txtTelEv = new Telerik.WinControls.UI.RadMaskedEditBox();
            this.radPageViewPage1 = new Telerik.WinControls.UI.RadPageViewPage();
            this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
            this.cmbAmiri = new Telerik.WinControls.UI.RadDropDownList();
            this.cmbBagliNM = new Telerik.WinControls.UI.RadDropDownList();
            this.txtSicilKodu = new Telerik.WinControls.UI.RadTextBox();
            this.txtErpKodu = new Telerik.WinControls.UI.RadTextBox();
            this.txtAdiSoyadi = new Telerik.WinControls.UI.RadTextBox();
            this.cmbGorev = new Telerik.WinControls.UI.RadDropDownList();
            this.dateDogum = new System.Windows.Forms.DateTimePicker();
            this.btnGorev = new Telerik.WinControls.UI.RadButton();
            this._PERSONELRadDropDownList = new Telerik.WinControls.UI.RadDropDownList();
            this.radPageViewPage3 = new Telerik.WinControls.UI.RadPageViewPage();
            this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
            this.txtOzel1 = new Telerik.WinControls.UI.RadTextBox();
            this.txtOzel2 = new Telerik.WinControls.UI.RadTextBox();
            this.txtOzel3 = new Telerik.WinControls.UI.RadTextBox();
            this.txtOzel4 = new Telerik.WinControls.UI.RadTextBox();
            this.txtOzel5 = new Telerik.WinControls.UI.RadTextBox();
            this.txtOzel6 = new Telerik.WinControls.UI.RadTextBox();
            this.txtOzel7 = new Telerik.WinControls.UI.RadTextBox();
            this.txtOzel8 = new Telerik.WinControls.UI.RadTextBox();
            this.txtOzel9 = new Telerik.WinControls.UI.RadTextBox();
            this.txtOzel10 = new Telerik.WinControls.UI.RadTextBox();
            this.txtTelCep = new Telerik.WinControls.UI.RadMaskedEditBox();
            this.txtAdres = new Telerik.WinControls.UI.RadTextBox();
            this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
            this.txtEmail = new Telerik.WinControls.UI.RadTextBox();
            this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
            this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
            this.radPageViewPage2 = new Telerik.WinControls.UI.RadPageViewPage();
            this.radPageView1 = new Telerik.WinControls.UI.RadPageView();
            this.radPageViewPage4 = new Telerik.WinControls.UI.RadPageViewPage();
            this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
            this._PERSONELRadGridView = new Telerik.WinControls.UI.RadGridView();
            this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
            this._PERSONELBindingNavigatorSaveItem = new System.Windows.Forms.ToolStripButton();
            this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
            this._PERSONELBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
            this._GOREVBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this._PERSONELBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.personelDataSet = new Bantas.TanimModule.WS.PersonelDataSet();
            dOGUM_TARIHILabel = new System.Windows.Forms.Label();
            aMIRILabel = new System.Windows.Forms.Label();
            bAGLI_NMLabel = new System.Windows.Forms.Label();
            gOREV_TANIMLabel = new System.Windows.Forms.Label();
            aDILabel = new System.Windows.Forms.Label();
            eRP_SICIL_KODULabel = new System.Windows.Forms.Label();
            sICIL_KODULabel = new System.Windows.Forms.Label();
            aKTIFLabel = new System.Windows.Forms.Label();
            oZEL10Label = new System.Windows.Forms.Label();
            oZEL09Label = new System.Windows.Forms.Label();
            oZEL08Label = new System.Windows.Forms.Label();
            oZEL07Label = new System.Windows.Forms.Label();
            oZEL06Label = new System.Windows.Forms.Label();
            oZEL05Label = new System.Windows.Forms.Label();
            oZEL04Label = new System.Windows.Forms.Label();
            oZEL03Label = new System.Windows.Forms.Label();
            oZEL02Label = new System.Windows.Forms.Label();
            oZEL01Label = new System.Windows.Forms.Label();
            aDRESLabel = new System.Windows.Forms.Label();
            eMAILLabel = new System.Windows.Forms.Label();
            tEL_CEPLabel = new System.Windows.Forms.Label();
            tEL_EVLabel = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.txtTelEv)).BeginInit();
            this.radPageViewPage1.SuspendLayout();
            this.tableLayoutPanel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbAmiri)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbBagliNM)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSicilKodu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtErpKodu)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtAdiSoyadi)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbGorev)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnGorev)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this._PERSONELRadDropDownList)).BeginInit();
            this.radPageViewPage3.SuspendLayout();
            this.tableLayoutPanel3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel7)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel8)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel9)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel10)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtTelCep)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtAdres)).BeginInit();
            this.tableLayoutPanel5.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtEmail)).BeginInit();
            this.tableLayoutPanel4.SuspendLayout();
            this.tableLayoutPanel6.SuspendLayout();
            this.radPageViewPage2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).BeginInit();
            this.radPageView1.SuspendLayout();
            this.tableLayoutPanel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this._PERSONELRadGridView)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this._PERSONELBindingNavigator)).BeginInit();
            this._PERSONELBindingNavigator.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this._GOREVBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this._PERSONELBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.personelDataSet)).BeginInit();
            this.SuspendLayout();
            //
            // dOGUM_TARIHILabel
            //
            dOGUM_TARIHILabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            dOGUM_TARIHILabel.AutoSize = true;
            dOGUM_TARIHILabel.Location = new System.Drawing.Point(328, 68);
            dOGUM_TARIHILabel.Name = "dOGUM_TARIHILabel";
            dOGUM_TARIHILabel.Size = new System.Drawing.Size(76, 13);
            dOGUM_TARIHILabel.TabIndex = 15;
            dOGUM_TARIHILabel.Text = "Doğum Tarihi";
            //
            // aMIRILabel
            //
            aMIRILabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            aMIRILabel.AutoSize = true;
            aMIRILabel.Location = new System.Drawing.Point(328, 38);
            aMIRILabel.Name = "aMIRILabel";
            aMIRILabel.Size = new System.Drawing.Size(33, 13);
            aMIRILabel.TabIndex = 10;
            aMIRILabel.Text = "Amiri";
            //
            // bAGLI_NMLabel
            //
            bAGLI_NMLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            bAGLI_NMLabel.AutoSize = true;
            bAGLI_NMLabel.Location = new System.Drawing.Point(328, 8);
            bAGLI_NMLabel.Name = "bAGLI_NMLabel";
            bAGLI_NMLabel.Size = new System.Drawing.Size(97, 13);
            bAGLI_NMLabel.TabIndex = 8;
            bAGLI_NMLabel.Text = "Bağlı Olduğu NM";
            //
            // gOREV_TANIMLabel
            //
            gOREV_TANIMLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            gOREV_TANIMLabel.AutoSize = true;
            gOREV_TANIMLabel.Location = new System.Drawing.Point(3, 98);
            gOREV_TANIMLabel.Name = "gOREV_TANIMLabel";
            gOREV_TANIMLabel.Size = new System.Drawing.Size(37, 13);
            gOREV_TANIMLabel.TabIndex = 6;
            gOREV_TANIMLabel.Text = "Görev";
            //
            // aDILabel
            //
            aDILabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            aDILabel.AutoSize = true;
            aDILabel.Location = new System.Drawing.Point(3, 68);
            aDILabel.Name = "aDILabel";
            aDILabel.Size = new System.Drawing.Size(61, 13);
            aDILabel.TabIndex = 4;
            aDILabel.Text = "Adı Soyadı";
            //
            // eRP_SICIL_KODULabel
            //
            eRP_SICIL_KODULabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            eRP_SICIL_KODULabel.AutoSize = true;
            eRP_SICIL_KODULabel.Location = new System.Drawing.Point(3, 38);
            eRP_SICIL_KODULabel.Name = "eRP_SICIL_KODULabel";
            eRP_SICIL_KODULabel.Size = new System.Drawing.Size(77, 13);
            eRP_SICIL_KODULabel.TabIndex = 2;
            eRP_SICIL_KODULabel.Text = "Erp Sicil Kodu";
            //
            // sICIL_KODULabel
            //
            sICIL_KODULabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            sICIL_KODULabel.AutoSize = true;
            sICIL_KODULabel.Location = new System.Drawing.Point(3, 8);
            sICIL_KODULabel.Name = "sICIL_KODULabel";
            sICIL_KODULabel.Size = new System.Drawing.Size(57, 13);
            sICIL_KODULabel.TabIndex = 0;
            sICIL_KODULabel.Text = "Sicil Kodu";
            //
            // aKTIFLabel
            //
            aKTIFLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            aKTIFLabel.AutoSize = true;
            aKTIFLabel.Location = new System.Drawing.Point(328, 98);
            aKTIFLabel.Name = "aKTIFLabel";
            aKTIFLabel.Size = new System.Drawing.Size(62, 13);
            aKTIFLabel.TabIndex = 12;
            aKTIFLabel.Text = "Kan Grubu";
            //
            // oZEL10Label
            //
            oZEL10Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL10Label.AutoSize = true;
            oZEL10Label.Location = new System.Drawing.Point(338, 128);
            oZEL10Label.Name = "oZEL10Label";
            oZEL10Label.Size = new System.Drawing.Size(46, 13);
            oZEL10Label.TabIndex = 18;
            oZEL10Label.Text = "Özel-10";
            //
            // oZEL09Label
            //
            oZEL09Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL09Label.AutoSize = true;
            oZEL09Label.Location = new System.Drawing.Point(338, 98);
            oZEL09Label.Name = "oZEL09Label";
            oZEL09Label.Size = new System.Drawing.Size(40, 13);
            oZEL09Label.TabIndex = 16;
            oZEL09Label.Text = "Özel-9";
            //
            // oZEL08Label
            //
            oZEL08Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL08Label.AutoSize = true;
            oZEL08Label.Location = new System.Drawing.Point(338, 68);
            oZEL08Label.Name = "oZEL08Label";
            oZEL08Label.Size = new System.Drawing.Size(40, 13);
            oZEL08Label.TabIndex = 14;
            oZEL08Label.Text = "Özel-8";
            //
            // oZEL07Label
            //
            oZEL07Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL07Label.AutoSize = true;
            oZEL07Label.Location = new System.Drawing.Point(338, 38);
            oZEL07Label.Name = "oZEL07Label";
            oZEL07Label.Size = new System.Drawing.Size(40, 13);
            oZEL07Label.TabIndex = 12;
            oZEL07Label.Text = "Özel-7";
            //
            // oZEL06Label
            //
            oZEL06Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL06Label.AutoSize = true;
            oZEL06Label.Location = new System.Drawing.Point(338, 8);
            oZEL06Label.Name = "oZEL06Label";
            oZEL06Label.Size = new System.Drawing.Size(40, 13);
            oZEL06Label.TabIndex = 10;
            oZEL06Label.Text = "Özel-6";
            //
            // oZEL05Label
            //
            oZEL05Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL05Label.AutoSize = true;
            oZEL05Label.Location = new System.Drawing.Point(3, 128);
            oZEL05Label.Name = "oZEL05Label";
            oZEL05Label.Size = new System.Drawing.Size(40, 13);
            oZEL05Label.TabIndex = 8;
            oZEL05Label.Text = "Özel-5";
            //
            // oZEL04Label
            //
            oZEL04Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL04Label.AutoSize = true;
            oZEL04Label.Location = new System.Drawing.Point(3, 98);
            oZEL04Label.Name = "oZEL04Label";
            oZEL04Label.Size = new System.Drawing.Size(40, 13);
            oZEL04Label.TabIndex = 6;
            oZEL04Label.Text = "Özel-4";
            //
            // oZEL03Label
            //
            oZEL03Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL03Label.AutoSize = true;
            oZEL03Label.Location = new System.Drawing.Point(3, 68);
            oZEL03Label.Name = "oZEL03Label";
            oZEL03Label.Size = new System.Drawing.Size(40, 13);
            oZEL03Label.TabIndex = 4;
            oZEL03Label.Text = "Özel-3";
            //
            // oZEL02Label
            //
            oZEL02Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL02Label.AutoSize = true;
            oZEL02Label.Location = new System.Drawing.Point(3, 38);
            oZEL02Label.Name = "oZEL02Label";
            oZEL02Label.Size = new System.Drawing.Size(40, 13);
            oZEL02Label.TabIndex = 2;
            oZEL02Label.Text = "Özel-2";
            //
            // oZEL01Label
            //
            oZEL01Label.Anchor = System.Windows.Forms.AnchorStyles.Left;
            oZEL01Label.AutoSize = true;
            oZEL01Label.Location = new System.Drawing.Point(3, 8);
            oZEL01Label.Name = "oZEL01Label";
            oZEL01Label.Size = new System.Drawing.Size(40, 13);
            oZEL01Label.TabIndex = 0;
            oZEL01Label.Text = "Özel-1";
            //
            // aDRESLabel
            //
            aDRESLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            aDRESLabel.AutoSize = true;
            aDRESLabel.Location = new System.Drawing.Point(3, 40);
            aDRESLabel.Name = "aDRESLabel";
            aDRESLabel.Size = new System.Drawing.Size(36, 13);
            aDRESLabel.TabIndex = 0;
            aDRESLabel.Text = "Adres";
            //
            // eMAILLabel
            //
            eMAILLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            eMAILLabel.AutoSize = true;
            eMAILLabel.Location = new System.Drawing.Point(3, 72);
            eMAILLabel.Name = "eMAILLabel";
            eMAILLabel.Size = new System.Drawing.Size(39, 13);
            eMAILLabel.TabIndex = 4;
            eMAILLabel.Text = "e-Mail";
            //
            // tEL_CEPLabel
            //
            tEL_CEPLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            tEL_CEPLabel.AutoSize = true;
            tEL_CEPLabel.Location = new System.Drawing.Point(3, 41);
            tEL_CEPLabel.Name = "tEL_CEPLabel";
            tEL_CEPLabel.Size = new System.Drawing.Size(44, 13);
            tEL_CEPLabel.TabIndex = 2;
            tEL_CEPLabel.Text = "Tel Cep";
            //
            // tEL_EVLabel
            //
            tEL_EVLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
            tEL_EVLabel.AutoSize = true;
            tEL_EVLabel.Location = new System.Drawing.Point(3, 9);
            tEL_EVLabel.Name = "tEL_EVLabel";
            tEL_EVLabel.Size = new System.Drawing.Size(35, 13);
            tEL_EVLabel.TabIndex = 0;
            tEL_EVLabel.Text = "Tel Ev";
            //
            // label1
            //
            label1.Anchor = System.Windows.Forms.AnchorStyles.Left;
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(3, 128);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(31, 13);
            label1.TabIndex = 18;
            label1.Text = "Pasif";
            //
            // txtTelEv
            //
            this.txtTelEv.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTelEv.Culture = null;
            this.txtTelEv.Location = new System.Drawing.Point(61, 3);
            this.txtTelEv.Mask = "(___) ___ __ __";
            this.txtTelEv.MaskType = Telerik.WinControls.UI.MaskType.Numeric;
            this.txtTelEv.Name = "txtTelEv";
            this.txtTelEv.Size = new System.Drawing.Size(215, 26);
            this.txtTelEv.TabIndex = 0;
            this.txtTelEv.TabStop = false;
            this.txtTelEv.Text = "(___) ___ __ __";
            this.txtTelEv.Value = "0";
            //
            // radPageViewPage1
            //
            this.radPageViewPage1.Controls.Add(this.tableLayoutPanel2);
            this.radPageViewPage1.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage1.Name = "radPageViewPage1";
            this.radPageViewPage1.Size = new System.Drawing.Size(620, 152);
            this.radPageViewPage1.Text = "Genel";
            //
            // tableLayoutPanel2
            //
            this.tableLayoutPanel2.AutoScroll = true;
            this.tableLayoutPanel2.ColumnCount = 7;
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 83F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 103F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel2.Controls.Add(label1, 0, 4);
            this.tableLayoutPanel2.Controls.Add(dOGUM_TARIHILabel, 4, 2);
            this.tableLayoutPanel2.Controls.Add(aMIRILabel, 4, 1);
            this.tableLayoutPanel2.Controls.Add(bAGLI_NMLabel, 4, 0);
            this.tableLayoutPanel2.Controls.Add(gOREV_TANIMLabel, 0, 3);
            this.tableLayoutPanel2.Controls.Add(aDILabel, 0, 2);
            this.tableLayoutPanel2.Controls.Add(eRP_SICIL_KODULabel, 0, 1);
            this.tableLayoutPanel2.Controls.Add(sICIL_KODULabel, 0, 0);
            this.tableLayoutPanel2.Controls.Add(this.cmbAmiri, 6, 1);
            this.tableLayoutPanel2.Controls.Add(this.cmbBagliNM, 6, 0);
            this.tableLayoutPanel2.Controls.Add(this.txtSicilKodu, 2, 0);
            this.tableLayoutPanel2.Controls.Add(this.txtErpKodu, 2, 1);
            this.tableLayoutPanel2.Controls.Add(this.txtAdiSoyadi, 2, 2);
            this.tableLayoutPanel2.Controls.Add(this.cmbGorev, 2, 3);
            this.tableLayoutPanel2.Controls.Add(this.dateDogum, 6, 2);
            this.tableLayoutPanel2.Controls.Add(this.btnGorev, 1, 3);
            this.tableLayoutPanel2.Controls.Add(aKTIFLabel, 4, 3);
            this.tableLayoutPanel2.Controls.Add(this._PERSONELRadDropDownList, 6, 3);
            this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
            this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel2.Name = "tableLayoutPanel2";
            this.tableLayoutPanel2.RowCount = 5;
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel2.Size = new System.Drawing.Size(620, 150);
            this.tableLayoutPanel2.TabIndex = 0;
            //
            // cmbAmiri
            //
            this.cmbAmiri.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbAmiri.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbAmiri.Location = new System.Drawing.Point(451, 35);
            this.cmbAmiri.Name = "cmbAmiri";
            this.cmbAmiri.ShowImageInEditorArea = true;
            this.cmbAmiri.Size = new System.Drawing.Size(166, 20);
            this.cmbAmiri.TabIndex = 7;
            //
            // cmbBagliNM
            //
            this.cmbBagliNM.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbBagliNM.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbBagliNM.Location = new System.Drawing.Point(451, 5);
            this.cmbBagliNM.Name = "cmbBagliNM";
            this.cmbBagliNM.ShowImageInEditorArea = true;
            this.cmbBagliNM.Size = new System.Drawing.Size(166, 20);
            this.cmbBagliNM.TabIndex = 6;
            //
            // txtSicilKodu
            //
            this.txtSicilKodu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtSicilKodu.Location = new System.Drawing.Point(106, 5);
            this.txtSicilKodu.Name = "txtSicilKodu";
            this.txtSicilKodu.Size = new System.Drawing.Size(166, 20);
            this.txtSicilKodu.TabIndex = 0;
            this.txtSicilKodu.TabStop = false;
            //
            // txtErpKodu
            //
            this.txtErpKodu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtErpKodu.Location = new System.Drawing.Point(106, 35);
            this.txtErpKodu.Name = "txtErpKodu";
            this.txtErpKodu.Size = new System.Drawing.Size(166, 20);
            this.txtErpKodu.TabIndex = 1;
            this.txtErpKodu.TabStop = false;
            //
            // txtAdiSoyadi
            //
            this.txtAdiSoyadi.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtAdiSoyadi.Location = new System.Drawing.Point(106, 65);
            this.txtAdiSoyadi.Name = "txtAdiSoyadi";
            this.txtAdiSoyadi.Size = new System.Drawing.Size(166, 20);
            this.txtAdiSoyadi.TabIndex = 2;
            this.txtAdiSoyadi.TabStop = false;
            //
            // cmbGorev
            //
            this.cmbGorev.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.cmbGorev.AutoCompleteDisplayMember = "ADI";
            this.cmbGorev.AutoCompleteValueMember = "ID";
            this.cmbGorev.DataSource = this._GOREVBindingSource;
            this.cmbGorev.DisplayMember = "ADI";
            this.cmbGorev.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
            this.cmbGorev.Location = new System.Drawing.Point(106, 95);
            this.cmbGorev.Name = "cmbGorev";
            this.cmbGorev.ShowImageInEditorArea = true;
            this.cmbGorev.Size = new System.Drawing.Size(166, 20);
            this.cmbGorev.TabIndex = 4;
            this.cmbGorev.ValueMember = "ID";
            //
            // dateDogum
            //
            this.dateDogum.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.dateDogum.Location = new System.Drawing.Point(451, 65);
            this.dateDogum.Name = "dateDogum";
            this.dateDogum.Size = new System.Drawing.Size(166, 20);
            this.dateDogum.TabIndex = 8;
            //
            // btnGorev
            //
            this.btnGorev.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.btnGorev.BackColor = System.Drawing.Color.White;
            this.btnGorev.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
            this.btnGorev.Location = new System.Drawing.Point(86, 95);
            this.btnGorev.Name = "btnGorev";
            this.btnGorev.Size = new System.Drawing.Size(14, 20);
            this.btnGorev.TabIndex = 3;
            this.btnGorev.Text = "+";
            this.btnGorev.ThemeName = "ControlDefault";
            //
            // _PERSONELRadDropDownList
            //
            this._PERSONELRadDropDownList.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            radListDataItem1.Text = "ListItem 6";
            radListDataItem1.TextWrap = true;
            radListDataItem2.Text = "ListItem 7";
            radListDataItem2.TextWrap = true;
            radListDataItem3.Text = "ListItem 8";
            radListDataItem3.TextWrap = true;
            radListDataItem4.Text = "ListItem 9";
            radListDataItem4.TextWrap = true;
            this._PERSONELRadDropDownList.Items.Add(radListDataItem1);
            this._PERSONELRadDropDownList.Items.Add(radListDataItem2);
            this._PERSONELRadDropDownList.Items.Add(radListDataItem3);
            this._PERSONELRadDropDownList.Items.Add(radListDataItem4);
            this._PERSONELRadDropDownList.Location = new System.Drawing.Point(451, 95);
            this._PERSONELRadDropDownList.Name = "_PERSONELRadDropDownList";
            this._PERSONELRadDropDownList.ShowImageInEditorArea = true;
            this._PERSONELRadDropDownList.Size = new System.Drawing.Size(166, 20);
            this._PERSONELRadDropDownList.TabIndex = 17;
            //
            // radPageViewPage3
            //
            this.radPageViewPage3.Controls.Add(this.tableLayoutPanel3);
            this.radPageViewPage3.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage3.Name = "radPageViewPage3";
            this.radPageViewPage3.Size = new System.Drawing.Size(620, 152);
            this.radPageViewPage3.Text = "Özel Alanlar";
            //
            // tableLayoutPanel3
            //
            this.tableLayoutPanel3.ColumnCount = 5;
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 52F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 52F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel3.Controls.Add(oZEL10Label, 3, 4);
            this.tableLayoutPanel3.Controls.Add(oZEL09Label, 3, 3);
            this.tableLayoutPanel3.Controls.Add(oZEL08Label, 3, 2);
            this.tableLayoutPanel3.Controls.Add(oZEL07Label, 3, 1);
            this.tableLayoutPanel3.Controls.Add(oZEL06Label, 3, 0);
            this.tableLayoutPanel3.Controls.Add(oZEL05Label, 0, 4);
            this.tableLayoutPanel3.Controls.Add(oZEL04Label, 0, 3);
            this.tableLayoutPanel3.Controls.Add(oZEL03Label, 0, 2);
            this.tableLayoutPanel3.Controls.Add(oZEL02Label, 0, 1);
            this.tableLayoutPanel3.Controls.Add(oZEL01Label, 0, 0);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel1, 1, 0);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel2, 1, 1);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel3, 1, 2);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel4, 1, 3);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel5, 1, 4);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel6, 4, 0);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel7, 4, 1);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel8, 4, 2);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel9, 4, 3);
            this.tableLayoutPanel3.Controls.Add(this.txtOzel10, 4, 4);
            this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Top;
            this.tableLayoutPanel3.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel3.Name = "tableLayoutPanel3";
            this.tableLayoutPanel3.RowCount = 5;
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel3.Size = new System.Drawing.Size(620, 150);
            this.tableLayoutPanel3.TabIndex = 0;
            //
            // txtOzel1
            //
            this.txtOzel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel1.Location = new System.Drawing.Point(55, 3);
            this.txtOzel1.Name = "txtOzel1";
            this.txtOzel1.Size = new System.Drawing.Size(227, 24);
            this.txtOzel1.TabIndex = 0;
            this.txtOzel1.TabStop = false;
            //
            // txtOzel2
            //
            this.txtOzel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel2.Location = new System.Drawing.Point(55, 33);
            this.txtOzel2.Name = "txtOzel2";
            this.txtOzel2.Size = new System.Drawing.Size(227, 24);
            this.txtOzel2.TabIndex = 1;
            this.txtOzel2.TabStop = false;
            //
            // txtOzel3
            //
            this.txtOzel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel3.Location = new System.Drawing.Point(55, 63);
            this.txtOzel3.Name = "txtOzel3";
            this.txtOzel3.Size = new System.Drawing.Size(227, 24);
            this.txtOzel3.TabIndex = 2;
            this.txtOzel3.TabStop = false;
            //
            // txtOzel4
            //
            this.txtOzel4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel4.Location = new System.Drawing.Point(55, 93);
            this.txtOzel4.Name = "txtOzel4";
            this.txtOzel4.Size = new System.Drawing.Size(227, 24);
            this.txtOzel4.TabIndex = 3;
            this.txtOzel4.TabStop = false;
            //
            // txtOzel5
            //
            this.txtOzel5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel5.Location = new System.Drawing.Point(55, 123);
            this.txtOzel5.Name = "txtOzel5";
            this.txtOzel5.Size = new System.Drawing.Size(227, 24);
            this.txtOzel5.TabIndex = 4;
            this.txtOzel5.TabStop = false;
            //
            // txtOzel6
            //
            this.txtOzel6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel6.Location = new System.Drawing.Point(390, 3);
            this.txtOzel6.Name = "txtOzel6";
            this.txtOzel6.Size = new System.Drawing.Size(227, 24);
            this.txtOzel6.TabIndex = 5;
            this.txtOzel6.TabStop = false;
            //
            // txtOzel7
            //
            this.txtOzel7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel7.Location = new System.Drawing.Point(390, 33);
            this.txtOzel7.Name = "txtOzel7";
            this.txtOzel7.Size = new System.Drawing.Size(227, 24);
            this.txtOzel7.TabIndex = 6;
            this.txtOzel7.TabStop = false;
            //
            // txtOzel8
            //
            this.txtOzel8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel8.Location = new System.Drawing.Point(390, 63);
            this.txtOzel8.Name = "txtOzel8";
            this.txtOzel8.Size = new System.Drawing.Size(227, 24);
            this.txtOzel8.TabIndex = 7;
            this.txtOzel8.TabStop = false;
            //
            // txtOzel9
            //
            this.txtOzel9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel9.Location = new System.Drawing.Point(390, 93);
            this.txtOzel9.Name = "txtOzel9";
            this.txtOzel9.Size = new System.Drawing.Size(227, 24);
            this.txtOzel9.TabIndex = 8;
            this.txtOzel9.TabStop = false;
            //
            // txtOzel10
            //
            this.txtOzel10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtOzel10.Location = new System.Drawing.Point(390, 123);
            this.txtOzel10.Name = "txtOzel10";
            this.txtOzel10.Size = new System.Drawing.Size(227, 24);
            this.txtOzel10.TabIndex = 9;
            this.txtOzel10.TabStop = false;
            //
            // txtTelCep
            //
            this.txtTelCep.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtTelCep.Culture = null;
            this.txtTelCep.Location = new System.Drawing.Point(61, 35);
            this.txtTelCep.Mask = "(___) ___ __ __";
            this.txtTelCep.MaskType = Telerik.WinControls.UI.MaskType.Numeric;
            this.txtTelCep.Name = "txtTelCep";
            this.txtTelCep.Size = new System.Drawing.Size(215, 26);
            this.txtTelCep.TabIndex = 1;
            this.txtTelCep.TabStop = false;
            this.txtTelCep.Text = "(___) ___ __ __";
            this.txtTelCep.Value = "0";
            //
            // txtAdres
            //
            this.txtAdres.Dock = System.Windows.Forms.DockStyle.Fill;
            this.txtAdres.Location = new System.Drawing.Point(65, 3);
            this.txtAdres.Multiline = true;
            this.txtAdres.Name = "txtAdres";
            //
            //
            //
            this.txtAdres.RootElement.StretchVertically = true;
            this.txtAdres.Size = new System.Drawing.Size(211, 88);
            this.txtAdres.TabIndex = 0;
            this.txtAdres.TabStop = false;
            //
            // tableLayoutPanel5
            //
            this.tableLayoutPanel5.ColumnCount = 3;
            this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 42F));
            this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel5.Controls.Add(aDRESLabel, 0, 0);
            this.tableLayoutPanel5.Controls.Add(this.txtAdres, 2, 0);
            this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel5.Location = new System.Drawing.Point(338, 3);
            this.tableLayoutPanel5.Name = "tableLayoutPanel5";
            this.tableLayoutPanel5.RowCount = 1;
            this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel5.Size = new System.Drawing.Size(279, 94);
            this.tableLayoutPanel5.TabIndex = 0;
            //
            // txtEmail
            //
            this.txtEmail.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            this.txtEmail.Location = new System.Drawing.Point(61, 67);
            this.txtEmail.Name = "txtEmail";
            this.txtEmail.Size = new System.Drawing.Size(215, 24);
            this.txtEmail.TabIndex = 2;
            this.txtEmail.TabStop = false;
            //
            // tableLayoutPanel4
            //
            this.tableLayoutPanel4.ColumnCount = 3;
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 50F));
            this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel6, 0, 0);
            this.tableLayoutPanel4.Controls.Add(this.tableLayoutPanel5, 2, 0);
            this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Top;
            this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
            this.tableLayoutPanel4.Name = "tableLayoutPanel4";
            this.tableLayoutPanel4.RowCount = 1;
            this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel4.Size = new System.Drawing.Size(620, 100);
            this.tableLayoutPanel4.TabIndex = 0;
            //
            // tableLayoutPanel6
            //
            this.tableLayoutPanel6.AutoScroll = true;
            this.tableLayoutPanel6.ColumnCount = 2;
            this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 58F));
            this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel6.Controls.Add(eMAILLabel, 0, 2);
            this.tableLayoutPanel6.Controls.Add(tEL_CEPLabel, 0, 1);
            this.tableLayoutPanel6.Controls.Add(tEL_EVLabel, 0, 0);
            this.tableLayoutPanel6.Controls.Add(this.txtTelEv, 1, 0);
            this.tableLayoutPanel6.Controls.Add(this.txtTelCep, 1, 1);
            this.tableLayoutPanel6.Controls.Add(this.txtEmail, 1, 2);
            this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel6.Location = new System.Drawing.Point(3, 3);
            this.tableLayoutPanel6.Name = "tableLayoutPanel6";
            this.tableLayoutPanel6.RowCount = 3;
            this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
            this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
            this.tableLayoutPanel6.Size = new System.Drawing.Size(279, 94);
            this.tableLayoutPanel6.TabIndex = 0;
            //
            // radPageViewPage2
            //
            this.radPageViewPage2.Controls.Add(this.tableLayoutPanel4);
            this.radPageViewPage2.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage2.Name = "radPageViewPage2";
            this.radPageViewPage2.Size = new System.Drawing.Size(620, 152);
            this.radPageViewPage2.Text = "İletişim";
            //
            // radPageView1
            //
            this.radPageView1.Controls.Add(this.radPageViewPage1);
            this.radPageView1.Controls.Add(this.radPageViewPage2);
            this.radPageView1.Controls.Add(this.radPageViewPage3);
            this.radPageView1.Controls.Add(this.radPageViewPage4);
            this.radPageView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.radPageView1.Location = new System.Drawing.Point(3, 192);
            this.radPageView1.Name = "radPageView1";
            this.radPageView1.SelectedPage = this.radPageViewPage1;
            this.radPageView1.Size = new System.Drawing.Size(641, 200);
            this.radPageView1.TabIndex = 1;
            this.radPageView1.Text = "radPageView1";
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.radPageView1.GetChildAt(0))).StripButtons = Telerik.WinControls.UI.StripViewButtons.None;
            ((Telerik.WinControls.UI.RadPageViewStripElement)(this.radPageView1.GetChildAt(0))).StripAlignment = Telerik.WinControls.UI.StripViewAlignment.Top;
            //
            // radPageViewPage4
            //
            this.radPageViewPage4.Location = new System.Drawing.Point(10, 37);
            this.radPageViewPage4.Name = "radPageViewPage4";
            this.radPageViewPage4.Size = new System.Drawing.Size(620, 152);
            this.radPageViewPage4.Text = "Resim";
            //
            // tableLayoutPanel1
            //
            this.tableLayoutPanel1.ColumnCount = 1;
            this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
            this.tableLayoutPanel1.Controls.Add(this._PERSONELRadGridView, 0, 0);
            this.tableLayoutPanel1.Controls.Add(this.radPageView1, 0, 1);
            this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 25);
            this.tableLayoutPanel1.Name = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 2;
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 206F));
            this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
            this.tableLayoutPanel1.Size = new System.Drawing.Size(647, 395);
            this.tableLayoutPanel1.TabIndex = 4;
            //
            // _PERSONELRadGridView
            //
            this._PERSONELRadGridView.Dock = System.Windows.Forms.DockStyle.Fill;
            this._PERSONELRadGridView.Location = new System.Drawing.Point(3, 3);
            //
            // _PERSONELRadGridView
            //
            this._PERSONELRadGridView.MasterTemplate.AllowAddNewRow = false;
            this._PERSONELRadGridView.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
            gridViewTextBoxColumn1.FieldName = "SICIL_KODU";
            gridViewTextBoxColumn1.FormatString = "";
            gridViewTextBoxColumn1.HeaderText = "Sicil Kodu";
            gridViewTextBoxColumn1.IsAutoGenerated = true;
            gridViewTextBoxColumn1.Name = "SICIL_KODU";
            gridViewTextBoxColumn1.Width = 141;
            gridViewTextBoxColumn2.FieldName = "ADI";
            gridViewTextBoxColumn2.FormatString = "";
            gridViewTextBoxColumn2.HeaderText = "Adı Soyadı";
            gridViewTextBoxColumn2.IsAutoGenerated = true;
            gridViewTextBoxColumn2.Name = "ADI";
            gridViewTextBoxColumn2.Width = 151;
            gridViewTextBoxColumn3.FieldName = "GOREV_LABEL";
            gridViewTextBoxColumn3.FormatString = "";
            gridViewTextBoxColumn3.HeaderText = "Görev";
            gridViewTextBoxColumn3.IsAutoGenerated = true;
            gridViewTextBoxColumn3.Name = "GOREV_LABEL";
            gridViewTextBoxColumn3.Width = 94;
            gridViewTextBoxColumn4.FieldName = "NM_LABEL";
            gridViewTextBoxColumn4.FormatString = "";
            gridViewTextBoxColumn4.HeaderText = "Bağlı Olduğu NM";
            gridViewTextBoxColumn4.IsAutoGenerated = true;
            gridViewTextBoxColumn4.Name = "NM_LABEL";
            gridViewTextBoxColumn4.Width = 237;
            this._PERSONELRadGridView.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
            gridViewTextBoxColumn1,
            gridViewTextBoxColumn2,
            gridViewTextBoxColumn3,
            gridViewTextBoxColumn4});
            this._PERSONELRadGridView.MasterTemplate.DataSource = this._PERSONELBindingSource;
            this._PERSONELRadGridView.Name = "_PERSONELRadGridView";
            this._PERSONELRadGridView.Size = new System.Drawing.Size(641, 183);
            this._PERSONELRadGridView.TabIndex = 1;
            this._PERSONELRadGridView.Text = "radGridView1";
            //
            // bindingNavigatorAddNewItem
            //
            this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
            this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
            this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorAddNewItem.Text = "Add new";
            //
            // _PERSONELBindingNavigatorSaveItem
            //
            this._PERSONELBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._PERSONELBindingNavigatorSaveItem.Image = ((System.Drawing.Image)(resources.GetObject("_PERSONELBindingNavigatorSaveItem.Image")));
            this._PERSONELBindingNavigatorSaveItem.Name = "_PERSONELBindingNavigatorSaveItem";
            this._PERSONELBindingNavigatorSaveItem.Size = new System.Drawing.Size(23, 22);
            this._PERSONELBindingNavigatorSaveItem.Text = "Save Data";
            this._PERSONELBindingNavigatorSaveItem.Click += new System.EventHandler(this._PERSONELBindingNavigatorSaveItem_Click);
            //
            // bindingNavigatorDeleteItem
            //
            this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
            this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
            this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
            this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
            this.bindingNavigatorDeleteItem.Text = "Delete";
            //
            // _PERSONELBindingNavigator
            //
            this._PERSONELBindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
            this._PERSONELBindingNavigator.BindingSource = this._PERSONELBindingSource;
            this._PERSONELBindingNavigator.CountItem = null;
            this._PERSONELBindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
            this._PERSONELBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.bindingNavigatorAddNewItem,
            this._PERSONELBindingNavigatorSaveItem,
            this.bindingNavigatorDeleteItem});
            this._PERSONELBindingNavigator.Location = new System.Drawing.Point(0, 0);
            this._PERSONELBindingNavigator.MoveFirstItem = null;
            this._PERSONELBindingNavigator.MoveLastItem = null;
            this._PERSONELBindingNavigator.MoveNextItem = null;
            this._PERSONELBindingNavigator.MovePreviousItem = null;
            this._PERSONELBindingNavigator.Name = "_PERSONELBindingNavigator";
            this._PERSONELBindingNavigator.PositionItem = null;
            this._PERSONELBindingNavigator.Size = new System.Drawing.Size(647, 25);
            this._PERSONELBindingNavigator.TabIndex = 5;
            this._PERSONELBindingNavigator.Text = "bindingNavigator1";
            //
            // _GOREVBindingSource
            //
            this._GOREVBindingSource.DataMember = "_GOREV";
            //
            // _PERSONELBindingSource
            //
            this._PERSONELBindingSource.DataMember = "_PERSONEL";
            //
            // personelDataSet
            //
            this.personelDataSet.DataSetName = "PersonelDataSet";
            this.personelDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            //
            // PersonelView
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
            this.Controls.Add(this.tableLayoutPanel1);
            this.Controls.Add(this._PERSONELBindingNavigator);
            this.Name = "PersonelView";
            this.Size = new System.Drawing.Size(647, 420);
            ((System.ComponentModel.ISupportInitialize)(this.txtTelEv)).EndInit();
            this.radPageViewPage1.ResumeLayout(false);
            this.tableLayoutPanel2.ResumeLayout(false);
            this.tableLayoutPanel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.cmbAmiri)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbBagliNM)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtSicilKodu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtErpKodu)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtAdiSoyadi)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.cmbGorev)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.btnGorev)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this._PERSONELRadDropDownList)).EndInit();
            this.radPageViewPage3.ResumeLayout(false);
            this.tableLayoutPanel3.ResumeLayout(false);
            this.tableLayoutPanel3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel7)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel8)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel9)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtOzel10)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtTelCep)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.txtAdres)).EndInit();
            this.tableLayoutPanel5.ResumeLayout(false);
            this.tableLayoutPanel5.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.txtEmail)).EndInit();
            this.tableLayoutPanel4.ResumeLayout(false);
            this.tableLayoutPanel6.ResumeLayout(false);
            this.tableLayoutPanel6.PerformLayout();
            this.radPageViewPage2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.radPageView1)).EndInit();
            this.radPageView1.ResumeLayout(false);
            this.tableLayoutPanel1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this._PERSONELRadGridView)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this._PERSONELBindingNavigator)).EndInit();
            this._PERSONELBindingNavigator.ResumeLayout(false);
            this._PERSONELBindingNavigator.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this._GOREVBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this._PERSONELBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.personelDataSet)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
 
        }
 
        #endregion
 
        private Telerik.WinControls.UI.RadMaskedEditBox txtTelEv;
        private Telerik.WinControls.UI.RadPageViewPage radPageViewPage1;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
        private Telerik.WinControls.UI.RadDropDownList cmbAmiri;
        private Telerik.WinControls.UI.RadDropDownList cmbBagliNM;
        private Telerik.WinControls.UI.RadTextBox txtErpKodu;
        private Telerik.WinControls.UI.RadTextBox txtAdiSoyadi;
        private Telerik.WinControls.UI.RadDropDownList cmbGorev;
        private System.Windows.Forms.DateTimePicker dateDogum;
        private Telerik.WinControls.UI.RadButton btnGorev;
        private Telerik.WinControls.UI.RadPageViewPage radPageViewPage3;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3;
        private Telerik.WinControls.UI.RadTextBox txtOzel1;
        private Telerik.WinControls.UI.RadTextBox txtOzel2;
        private Telerik.WinControls.UI.RadTextBox txtOzel3;
        private Telerik.WinControls.UI.RadTextBox txtOzel4;
        private Telerik.WinControls.UI.RadTextBox txtOzel5;
        private Telerik.WinControls.UI.RadTextBox txtOzel6;
        private Telerik.WinControls.UI.RadTextBox txtOzel7;
        private Telerik.WinControls.UI.RadTextBox txtOzel8;
        private Telerik.WinControls.UI.RadTextBox txtOzel9;
        private Telerik.WinControls.UI.RadTextBox txtOzel10;
        private Telerik.WinControls.UI.RadMaskedEditBox txtTelCep;
        private Telerik.WinControls.UI.RadTextBox txtAdres;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5;
        private Telerik.WinControls.UI.RadTextBox txtEmail;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel4;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel6;
        private Telerik.WinControls.UI.RadPageViewPage radPageViewPage2;
        private Telerik.WinControls.UI.RadPageView radPageView1;
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
        private Telerik.WinControls.UI.RadPageViewPage radPageViewPage4;
        private Telerik.WinControls.UI.RadDropDownList _PERSONELRadDropDownList;
        private Telerik.WinControls.UI.RadTextBox txtSicilKodu;
        private Telerik.WinControls.UI.RadGridView _PERSONELRadGridView;
        private System.Windows.Forms.BindingSource _GOREVBindingSource;
        private System.Windows.Forms.BindingSource _PERSONELBindingSource;
        private System.Windows.Forms.ToolStripButton bindingNavigatorAddNewItem;
        private System.Windows.Forms.ToolStripButton _PERSONELBindingNavigatorSaveItem;
        private System.Windows.Forms.ToolStripButton bindingNavigatorDeleteItem;
        private System.Windows.Forms.BindingNavigator _PERSONELBindingNavigator;
        private WS.PersonelDataSet personelDataSet;
 
 
    }
}
0
Emanuel Varga
Top achievements
Rank 1
answered on 28 Mar 2011, 07:49 AM
Hello again,

Sorry snn, but here you are missing some classes, like the presenter, the interface. This was just at a first glance, please, if you can just create a small sample and post it here, or at least try to explain how you can (text or screenshots) what is your problem.

Best Regards,
Emanuel Varga
Telerik WinForms MVP
0
Sinan
Top achievements
Rank 1
answered on 28 Mar 2011, 04:04 PM
0
Alexander
Telerik team
answered on 30 Mar 2011, 03:59 PM
Hello guys,

It is a known issue in the RadGridView control. We will address it in a next release. As a work-around, you can use the RowsChanged event of the control to reset the CurrentItem of the binding source when a new item is added:
private void radGridView1_RowsChanged(object sender, GridViewCollectionChangedEventArgs e)
{
    if (e.Action != NotifyCollectionChangedAction.Add)
    {
        return;
    }
 
    if (this.yourBindingSource.Current != null)
    {
        this.yourBindingSource.ResetCurrentItem();
    }
}

I hope it helps.

Regards,
Alexander
the Telerik team
0
Sinan
Top achievements
Rank 1
answered on 30 Mar 2011, 04:23 PM
Thank you very much my problem is resolved
Tags
GridView
Asked by
Sinan
Top achievements
Rank 1
Answers by
Emanuel Varga
Top achievements
Rank 1
Sinan
Top achievements
Rank 1
Alexander
Telerik team
Share this question
or