Example #1
0
        //private void tESToolStripMenuItem_Click(object sender, EventArgs e)
        //{
        //    int x = 0, y = 0;

        //    // Localiza o formulario
        //    foreach (Form form in this.MdiChildren)
        //    {
        //        if (form is FrmCadTes)
        //        {
        //            form.WindowState = FormWindowState.Maximized;
        //            form.Activate();
        //            x++;
        //        }
        //        y++;

        //    }

        // Para criar o formulario 
        //    if (x == 0 && y == 0)
        //    {
        //        FrmCadTes filho = new FrmCadTes(this);
        //        filho.Show();

        //        Util.Interface.ResetControls(filho);
        //        Util.Interface.ChangeControlStatus(filho, false);

        //        filho.WindowState = FormWindowState.Maximized;
        //    }
        //}

        #endregion

        #region Botão Deletar
        private void BtnDeletar_Click(object sender, EventArgs e)
        {
            Form frm = this.ActiveMdiChild;
            if (frm == null)
                return;
            //COLOCAR MENSAGEM DE CONFIRMAÇAO...
            if (MessageBox.Show("Deseja excluir o registro selecionado?", "Atenção", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
            {
                try
                {
                    // =====
                    // CADA UM INFORME O CODIGO ABAIXO...
                    // =====
                    #region Form's Claudio
                    if (frm is FrmCadCli)
                    {
                        bindingNavigator1.BindingSource.RemoveCurrent();
                        COMERCIALDataSetTableAdapters.CLIENTETableAdapter teste = new Comercial.COMERCIALDataSetTableAdapters.CLIENTETableAdapter();
                        teste.Update(_dataset);

                    }
                    #endregion
                    if (frm is FrmCadVen)
                    {
                        bindingNavigator1.BindingSource.RemoveCurrent();
                        COMERCIALDataSetTableAdapters.VENDEDORTableAdapter teste = new Comercial.COMERCIALDataSetTableAdapters.VENDEDORTableAdapter();
                        teste.Update(_dataset);
                    }

                    if (frm is FrmCadConPag)
                    {
                        bindingNavigator1.BindingSource.RemoveCurrent();
                        COMERCIALDataSetTableAdapters.CONDICAOPAGAMENTOTableAdapter teste = new Comercial.COMERCIALDataSetTableAdapters.CONDICAOPAGAMENTOTableAdapter();
                        teste.Update(_dataset);
                    }

                    if (frm is FrmCadTra)
                    {
                        bindingNavigator1.BindingSource.RemoveCurrent();
                        COMERCIALDataSetTableAdapters.TRANSPORTADORATableAdapter teste = new Comercial.COMERCIALDataSetTableAdapters.TRANSPORTADORATableAdapter();
                        teste.Update(_dataset);
                    }


                    if (frm is FrmCadUniMed)
                    {
                        bindingNavigator1.BindingSource.RemoveCurrent();
                        COMERCIALDataSetTableAdapters.UNIDADEMEDIDATableAdapter teste = new Comercial.COMERCIALDataSetTableAdapters.UNIDADEMEDIDATableAdapter();
                        teste.Update(_dataset);
                    }

                    if (frm is FrmCadGrpProd)
                    {
                        bindingNavigator1.BindingSource.RemoveCurrent();
                        COMERCIALDataSetTableAdapters.GRUPOPRODUTOTableAdapter teste = new Comercial.COMERCIALDataSetTableAdapters.GRUPOPRODUTOTableAdapter();
                        teste.Update(_dataset);
                    }

                    if (frm is FrmCadProd)
                    {
                        bindingNavigator1.BindingSource.RemoveCurrent();
                        COMERCIALDataSetTableAdapters.PRODUTOTableAdapter teste = new Comercial.COMERCIALDataSetTableAdapters.PRODUTOTableAdapter();
                        teste.Update(_dataset);
                    }

                    if (frm is FrmCadPed)
                    {
                        bindingNavigator1.BindingSource.RemoveCurrent();
                        COMERCIALDataSetTableAdapters.PEDIDOTableAdapter objPedido = new Comercial.COMERCIALDataSetTableAdapters.PEDIDOTableAdapter();
                        objPedido.Update(_dataset);
                    }



                }
                catch
                {
                    MessageBox.Show("Registro(s) filho(s) encontrado(s).", "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    bindingNavigator1.Refresh();
                }
            }
            else
            {

            }
        }
Example #2
0
        private void BtnSalvar_Click(object sender, EventArgs e)
        {
            int retorno = 0;
            Form frm = this.ActiveMdiChild;
            if (frm == null)
                return;

            try
            {
                // METODOS QUE NECESSITAM DE LOGICA ANTES DE SALVAR
                if (frm is FrmCadVen)
                {
                    FrmCadVen frmVen = (FrmCadVen)frm;
                    retorno = frmVen.salvar(edit);
                }

                #region Form's Claudio
                if (frm is FrmCadCli)
                {
                    FrmCadCli frmCli = (FrmCadCli)frm;
                    retorno = frmCli.salvar(edit);
                }

                #endregion

                #region Transportadora
                if (frm is FrmCadTra)
                {
                    FrmCadTra frmTra = (FrmCadTra)frm;
                    retorno = frmTra.salvarcep();
                }

                #endregion

                #region CondicaoPagamento
                if (frm is FrmCadConPag)
                {
                    FrmCadConPag frmCon = (FrmCadConPag)frm;
                    retorno = frmCon.Salvar();
                }

                if (frm is FrmCadUniMed)
                {
                    FrmCadUniMed frmCon = (FrmCadUniMed)frm;
                    retorno = frmCon.Salvar();
                }
                #endregion

                if (frm is FrmCadProd && edit == false)
                {
                    FrmCadProd frmCadProd = (FrmCadProd)frm;
                    retorno = frmCadProd.salvar();
                }

                if (frm is FrmPermissoesUsu && edit == false)
                {
                    FrmPermissoesUsu frmCadven = (FrmPermissoesUsu)frm;
                    retorno = frmCadven.salvar();
                }

                if (frm is FrmCadPed && edit == false)
                {
                    FrmCadPed frmPed = (FrmCadPed)frm;

                    string DataEmissão = frmPed.dtpEmissao.Value.ToShortDateString();
                    string DataSistema = DateTime.Now.ToShortDateString();
                    string DataEntrega = frmPed.dtpEntrega.Value.ToShortDateString();

                    if (Convert.ToDateTime(DataEntrega) < Convert.ToDateTime(DataEmissão))
                    {
                        throw new Exception("DataInvalida");
                    }


                    if (Convert.ToDateTime(DataEmissão) < Convert.ToDateTime(DataSistema))
                    {
                        throw new Exception("DataSistema");
                    }
                    retorno = frmPed.SalvarPedidoCab();

                }

                if (frm is FrmCadPed && edit == true)
                {
                    FrmCadPed frmPed = (FrmCadPed)frm;


                    retorno = frmPed.AtualizarPedido();

                }

                if (retorno == 0)
                {
                    bindingNavigator1.BindingSource.EndEdit();

                    // 
                    // CADA UM COLOCA O BLOCO DO SEU FORM...
                    if (frm is FrmCadConPag)
                    {
                        COMERCIALDataSetTableAdapters.CONDICAOPAGAMENTOTableAdapter table = new Comercial.COMERCIALDataSetTableAdapters.CONDICAOPAGAMENTOTableAdapter();
                        table.Update(_dataset);
                        FrmCadConPag frmCond = (FrmCadConPag)frm;
                        retorno = frmCond.Salvar();
                    }


                    if (frm is FrmCadGrpProd)
                    {
                        COMERCIALDataSetTableAdapters.GRUPOPRODUTOTableAdapter table = new Comercial.COMERCIALDataSetTableAdapters.GRUPOPRODUTOTableAdapter();
                        table.Update(_dataset);
                    }

                    #region Form's Claudio
                    if (frm is FrmCadCli)
                    {
                        COMERCIALDataSetTableAdapters.CLIENTETableAdapter table = new Comercial.COMERCIALDataSetTableAdapters.CLIENTETableAdapter();
                        table.Update(_dataset);
                        FrmCadCli cli = (FrmCadCli)frm;
                        cli.pictureBox1.Visible = false;
                        cli.pictureBox2.Visible = false;
                    }
                    if (frm is FrmCadRegiao)
                    {
                        COMERCIALDataSetTableAdapters.REGIAOTableAdapter table = new Comercial.COMERCIALDataSetTableAdapters.REGIAOTableAdapter();
                        table.Update(_dataset);

                    }
                    #endregion

                    if (frm is FrmCadUniMed)
                    {
                        COMERCIALDataSetTableAdapters.UNIDADEMEDIDATableAdapter table = new Comercial.COMERCIALDataSetTableAdapters.UNIDADEMEDIDATableAdapter();
                        table.Update(_dataset);
                    }

                    if (frm is FrmCadVen)
                    {

                        COMERCIALDataSetTableAdapters.VENDEDORTableAdapter table = new Comercial.COMERCIALDataSetTableAdapters.VENDEDORTableAdapter();
                        table.Update(_dataset);

                        FrmCadVen ven = (FrmCadVen)frm;
                        ven.pictureBox1.Visible = false;
                        ven.pictureBox2.Visible = false;

                    }

                    if (frm is FrmCadProd)
                    {

                        COMERCIALDataSetTableAdapters.PRODUTOTableAdapter table = new Comercial.COMERCIALDataSetTableAdapters.PRODUTOTableAdapter();
                        table.Update(_dataset);
                    }



                    Util.Interface.ChangeControlStatus(frm, false);
                    bindingNavigator1.Refresh();

                    edit = false;
                    cancelEdicao();


                    if (frm is FrmPermissoesUsu)
                    {

                        COMERCIALDataSetTableAdapters.USUARIOTableAdapter table = new Comercial.COMERCIALDataSetTableAdapters.USUARIOTableAdapter();
                        table.Update(_dataset);
                    }


                    if (frm is FrmCadTra)
                    {
                        FrmCadTra frmTrans = (FrmCadTra)frm;
                        retorno = frmTrans.ValidaCNPJ();
                        if (retorno == 1)
                        {
                            MessageBox.Show("CNPJ Inválido.", "Erro", MessageBoxButtons.OK, MessageBoxIcon.Error);
                            Util.Interface.ChangeControlStatus(frm, true);
                            bindingNavigator1.Refresh();

                            btnPesquisar.Enabled = false;
                            BtnDeletar.Enabled = false;
                            btnNovo.Enabled = false;
                            BtnPrincipal.Enabled = false;
                            btnEditar.Enabled = false;
                            btnSalvar.Enabled = true;
                            btnCancelEdicao.Enabled = true;
                        }
                        else
                        {
                            COMERCIALDataSetTableAdapters.TRANSPORTADORATableAdapter table = new Comercial.COMERCIALDataSetTableAdapters.TRANSPORTADORATableAdapter();
                            table.Update(_dataset);
                            retorno = frmTrans.salvar();

                        }

                    }

                }
            }
            catch (SqlException sqlex)
            {
                Validacoes valida = new Validacoes();
                valida.tratarSqlExceções(sqlex);
            }
            catch (Exception ex)
            {
                Validacoes valida = new Validacoes();
                valida.tratarSystemExceções(ex);
            }

        }
 /// <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(FrmCadGrpProd));
         this.TbCntCadBan = new System.Windows.Forms.TabControl();
         this.TbPgCadBancos = new System.Windows.Forms.TabPage();
         this.lblCodigo = new System.Windows.Forms.Label();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.label1 = new System.Windows.Forms.Label();
         this.TxtNumCon = new System.Windows.Forms.TextBox();
         this.LblNumCon = new System.Windows.Forms.Label();
         this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
         this.consultaGroProdutoToolStrip = new System.Windows.Forms.ToolStrip();
         this.dESCRICAOToolStripLabel = new System.Windows.Forms.ToolStripLabel();
         this.dESCRICAOToolStripTextBox = new System.Windows.Forms.ToolStripTextBox();
         this.consultaGroProdutoToolStripButton = new System.Windows.Forms.ToolStripButton();
         this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
         this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
         this.gRUPOPRODUTOBindingSource = new System.Windows.Forms.BindingSource(this.components);
         this.cOMERCIALDataSet = new Comercial.COMERCIALDataSet();
         this.gRUPOPRODUTOTableAdapter = new Comercial.COMERCIALDataSetTableAdapters.GRUPOPRODUTOTableAdapter();
         this.tableAdapterManager = new Comercial.COMERCIALDataSetTableAdapters.TableAdapterManager();
         this.TbCntCadBan.SuspendLayout();
         this.TbPgCadBancos.SuspendLayout();
         this.toolStripContainer1.ContentPanel.SuspendLayout();
         this.toolStripContainer1.SuspendLayout();
         this.consultaGroProdutoToolStrip.SuspendLayout();
         ((System.ComponentModel.ISupportInitialize)(this.gRUPOPRODUTOBindingSource)).BeginInit();
         ((System.ComponentModel.ISupportInitialize)(this.cOMERCIALDataSet)).BeginInit();
         this.SuspendLayout();
         //
         // TbCntCadBan
         //
         this.TbCntCadBan.Controls.Add(this.TbPgCadBancos);
         this.TbCntCadBan.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.TbCntCadBan.Location = new System.Drawing.Point(12, 33);
         this.TbCntCadBan.Name = "TbCntCadBan";
         this.TbCntCadBan.SelectedIndex = 0;
         this.TbCntCadBan.Size = new System.Drawing.Size(426, 95);
         this.TbCntCadBan.TabIndex = 0;
         //
         // TbPgCadBancos
         //
         this.TbPgCadBancos.AutoScroll = true;
         this.TbPgCadBancos.Controls.Add(this.lblCodigo);
         this.TbPgCadBancos.Controls.Add(this.textBox1);
         this.TbPgCadBancos.Controls.Add(this.label1);
         this.TbPgCadBancos.Controls.Add(this.TxtNumCon);
         this.TbPgCadBancos.Controls.Add(this.LblNumCon);
         this.TbPgCadBancos.Location = new System.Drawing.Point(4, 22);
         this.TbPgCadBancos.Name = "TbPgCadBancos";
         this.TbPgCadBancos.Padding = new System.Windows.Forms.Padding(3);
         this.TbPgCadBancos.Size = new System.Drawing.Size(418, 69);
         this.TbPgCadBancos.TabIndex = 1;
         this.TbPgCadBancos.Text = "Cadastro de grupo de produto";
         this.TbPgCadBancos.UseVisualStyleBackColor = true;
         //
         // lblCodigo
         //
         this.lblCodigo.AutoSize = true;
         this.lblCodigo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.gRUPOPRODUTOBindingSource, "CODGRUPOPRODUTO", true));
         this.lblCodigo.ForeColor = System.Drawing.Color.CadetBlue;
         this.lblCodigo.Location = new System.Drawing.Point(3, 37);
         this.lblCodigo.Name = "lblCodigo";
         this.lblCodigo.Size = new System.Drawing.Size(50, 13);
         this.lblCodigo.TabIndex = 71;
         this.lblCodigo.Text = "Código:";
         //
         // textBox1
         //
         this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.gRUPOPRODUTOBindingSource, "DESCONTO", true));
         this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.textBox1.Location = new System.Drawing.Point(296, 34);
         this.textBox1.Name = "textBox1";
         this.textBox1.Size = new System.Drawing.Size(116, 20);
         this.textBox1.TabIndex = 1;
         //
         // label1
         //
         this.label1.AutoSize = true;
         this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.label1.ForeColor = System.Drawing.Color.CadetBlue;
         this.label1.Location = new System.Drawing.Point(293, 18);
         this.label1.Name = "label1";
         this.label1.Size = new System.Drawing.Size(61, 13);
         this.label1.TabIndex = 69;
         this.label1.Text = "Desconto";
         //
         // TxtNumCon
         //
         this.TxtNumCon.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.gRUPOPRODUTOBindingSource, "DESCRICAO", true));
         this.TxtNumCon.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.TxtNumCon.Location = new System.Drawing.Point(65, 34);
         this.TxtNumCon.Name = "TxtNumCon";
         this.TxtNumCon.Size = new System.Drawing.Size(225, 20);
         this.TxtNumCon.TabIndex = 0;
         //
         // LblNumCon
         //
         this.LblNumCon.AutoSize = true;
         this.LblNumCon.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.LblNumCon.ForeColor = System.Drawing.Color.CadetBlue;
         this.LblNumCon.Location = new System.Drawing.Point(62, 18);
         this.LblNumCon.Name = "LblNumCon";
         this.LblNumCon.Size = new System.Drawing.Size(58, 13);
         this.LblNumCon.TabIndex = 67;
         this.LblNumCon.Text = "Decrição";
         //
         // toolStripContainer1
         //
         this.toolStripContainer1.BottomToolStripPanelVisible = false;
         //
         // toolStripContainer1.ContentPanel
         //
         this.toolStripContainer1.ContentPanel.AutoScroll = true;
         this.toolStripContainer1.ContentPanel.Controls.Add(this.TbCntCadBan);
         this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(458, 153);
         this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
         this.toolStripContainer1.LeftToolStripPanelVisible = false;
         this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
         this.toolStripContainer1.Name = "toolStripContainer1";
         this.toolStripContainer1.RightToolStripPanelVisible = false;
         this.toolStripContainer1.Size = new System.Drawing.Size(458, 153);
         this.toolStripContainer1.TabIndex = 2;
         this.toolStripContainer1.Text = "toolStripContainer1";
         this.toolStripContainer1.TopToolStripPanelVisible = false;
         //
         // consultaGroProdutoToolStrip
         //
         this.consultaGroProdutoToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.dESCRICAOToolStripLabel,
     this.dESCRICAOToolStripTextBox,
     this.consultaGroProdutoToolStripButton,
     this.toolStripButton3,
     this.toolStripButton2});
         this.consultaGroProdutoToolStrip.Location = new System.Drawing.Point(0, 0);
         this.consultaGroProdutoToolStrip.Name = "consultaGroProdutoToolStrip";
         this.consultaGroProdutoToolStrip.Size = new System.Drawing.Size(458, 25);
         this.consultaGroProdutoToolStrip.TabIndex = 3;
         this.consultaGroProdutoToolStrip.Text = "consultaGroProdutoToolStrip";
         this.consultaGroProdutoToolStrip.Visible = false;
         //
         // dESCRICAOToolStripLabel
         //
         this.dESCRICAOToolStripLabel.Name = "dESCRICAOToolStripLabel";
         this.dESCRICAOToolStripLabel.Size = new System.Drawing.Size(61, 22);
         this.dESCRICAOToolStripLabel.Text = "Descrição:";
         //
         // dESCRICAOToolStripTextBox
         //
         this.dESCRICAOToolStripTextBox.Name = "dESCRICAOToolStripTextBox";
         this.dESCRICAOToolStripTextBox.Size = new System.Drawing.Size(100, 25);
         //
         // consultaGroProdutoToolStripButton
         //
         this.consultaGroProdutoToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
         this.consultaGroProdutoToolStripButton.Image = global::Comercial.Properties.Resources.search1;
         this.consultaGroProdutoToolStripButton.Name = "consultaGroProdutoToolStripButton";
         this.consultaGroProdutoToolStripButton.Size = new System.Drawing.Size(23, 22);
         this.consultaGroProdutoToolStripButton.Text = "ConsultaGroProduto";
         this.consultaGroProdutoToolStripButton.Click += new System.EventHandler(this.consultaGroProdutoToolStripButton_Click);
         //
         // toolStripButton3
         //
         this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
         this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
         this.toolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta;
         this.toolStripButton3.Name = "toolStripButton3";
         this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
         this.toolStripButton3.Text = "Limpar";
         this.toolStripButton3.Click += new System.EventHandler(this.toolStripButton3_Click);
         //
         // toolStripButton2
         //
         this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
         this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
         this.toolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta;
         this.toolStripButton2.Name = "toolStripButton2";
         this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
         this.toolStripButton2.Text = "Cancelar";
         this.toolStripButton2.ToolTipText = "Cancelar";
         this.toolStripButton2.Click += new System.EventHandler(this.toolStripButton2_Click);
         //
         // gRUPOPRODUTOBindingSource
         //
         this.gRUPOPRODUTOBindingSource.DataMember = "GRUPOPRODUTO";
         this.gRUPOPRODUTOBindingSource.DataSource = this.cOMERCIALDataSet;
         //
         // cOMERCIALDataSet
         //
         this.cOMERCIALDataSet.DataSetName = "COMERCIALDataSet";
         this.cOMERCIALDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
         //
         // gRUPOPRODUTOTableAdapter
         //
         this.gRUPOPRODUTOTableAdapter.ClearBeforeFill = true;
         //
         // tableAdapterManager
         //
         this.tableAdapterManager.ACESSOTableAdapter = null;
         this.tableAdapterManager.ATUCUBOTableAdapter = null;
         this.tableAdapterManager.BackupDataSetBeforeUpdate = false;
         this.tableAdapterManager.CLIENTETableAdapter = null;
         this.tableAdapterManager.CONDICAOPAGAMENTOTableAdapter = null;
         this.tableAdapterManager.GRUPOPRODUTOTableAdapter = this.gRUPOPRODUTOTableAdapter;
         this.tableAdapterManager.ICMSTableAdapter = null;
         this.tableAdapterManager.ItemNotaFiscalTableAdapter = null;
         this.tableAdapterManager.ITEMPEDIDOTableAdapter = null;
         this.tableAdapterManager.modeloCampoTableAdapter = null;
         this.tableAdapterManager.modeloTableAdapter = null;
         this.tableAdapterManager.MODULOTableAdapter = null;
         this.tableAdapterManager.NOTAFISCALTableAdapter = null;
         this.tableAdapterManager.PEDIDOTableAdapter = null;
         this.tableAdapterManager.PRODUTOTableAdapter = null;
         this.tableAdapterManager.REGIAOTableAdapter = null;
         this.tableAdapterManager.TRANSPORTADORATableAdapter = null;
         this.tableAdapterManager.TRANSPORTADORAVIATableAdapter = null;
         this.tableAdapterManager.UNIDADEMEDIDATableAdapter = null;
         this.tableAdapterManager.UpdateOrder = Comercial.COMERCIALDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
         this.tableAdapterManager.USUARIOTableAdapter = null;
         this.tableAdapterManager.VENDEDORTableAdapter = null;
         this.tableAdapterManager.VIATRANSPORTETableAdapter = null;
         //
         // FrmCadGrpProd
         //
         this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
         this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
         this.BackColor = System.Drawing.Color.WhiteSmoke;
         this.ClientSize = new System.Drawing.Size(458, 153);
         this.Controls.Add(this.consultaGroProdutoToolStrip);
         this.Controls.Add(this.toolStripContainer1);
         this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
         this.ForeColor = System.Drawing.Color.CornflowerBlue;
         this.Name = "FrmCadGrpProd";
         this.ShowIcon = false;
         this.Text = "Cadastro Bancos";
         this.Shown += new System.EventHandler(this.FrmCadGrpProd_Shown);
         this.TbCntCadBan.ResumeLayout(false);
         this.TbPgCadBancos.ResumeLayout(false);
         this.TbPgCadBancos.PerformLayout();
         this.toolStripContainer1.ContentPanel.ResumeLayout(false);
         this.toolStripContainer1.ResumeLayout(false);
         this.toolStripContainer1.PerformLayout();
         this.consultaGroProdutoToolStrip.ResumeLayout(false);
         this.consultaGroProdutoToolStrip.PerformLayout();
         ((System.ComponentModel.ISupportInitialize)(this.gRUPOPRODUTOBindingSource)).EndInit();
         ((System.ComponentModel.ISupportInitialize)(this.cOMERCIALDataSet)).EndInit();
         this.ResumeLayout(false);
         this.PerformLayout();
 }