예제 #1
0
 private void carregaDadosPermissoesPossiveisInterface(ref mdlComponentesGraficos.ComboBox cbConcessoes, ref mdlComponentesGraficos.ComboBox cbPermissoesPossiveis, ref mdlComponentesGraficos.ComboBox cbItems)
 {
     if ((m_typDatSetTbUsuariosConcessoesPermissoes == null) || (m_typDatSetTbUsuariosConcessoes == null) || (m_typDatSetTbUsuarios == null) || m_bPrecisaRecarregarDatSets)
     {
         carregaTypDatSetPermissoes();
     }
     try
     {
         cbPermissoesPossiveis.Items.Clear();
         cbPermissoesPossiveis.SelectedItem = "";
         cbPermissoesPossiveis.SelectedText = "";
         cbPermissoesPossiveis.Text         = "";
         if (cbConcessoes.SelectedItem != null)
         {
             int nIdConcessao = (int)cbConcessoes.ReturnObjectSelectedItem();
             System.Data.DataRow[] dtRowConcessoesPermissoes = m_typDatSetTbUsuariosConcessoesPermissoes.tbUsuariosConcessoesPermissoes.Select("nIdConcessao = " + nIdConcessao.ToString());
             mdlDataBaseAccess.Tabelas.XsdTbUsuariosConcessoesPermissoes.tbUsuariosConcessoesPermissoesRow dtrwTbUsuariosConcessoesPermissoes;
             mdlDataBaseAccess.Tabelas.XsdTbUsuariosPermissoes.tbUsuariosPermissoesRow dtrwTbUsuariosPermissoes;
             for (int nCount = 0; nCount < dtRowConcessoesPermissoes.Length; nCount++)
             {
                 dtrwTbUsuariosConcessoesPermissoes = (mdlDataBaseAccess.Tabelas.XsdTbUsuariosConcessoesPermissoes.tbUsuariosConcessoesPermissoesRow)dtRowConcessoesPermissoes[nCount];
                 dtrwTbUsuariosPermissoes           = m_typDatSetTbUsuariosPermissoes.tbUsuariosPermissoes.FindBynIdPermissao(dtrwTbUsuariosConcessoesPermissoes.nIdPermissao);
                 cbPermissoesPossiveis.AddItem(dtrwTbUsuariosPermissoes.strNome.ToUpper(), dtrwTbUsuariosPermissoes.nIdPermissao);
             }
             carregaDadosItemsEspecificosInterface(ref cbItems, nIdConcessao);
         }
         m_bPrecisaRecarregarDatSets = false;
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
예제 #2
0
 private void carregaDadosConcessoesInterface(ref mdlComponentesGraficos.ComboBox cbConcessoes)
 {
     if (m_typDatSetTbUsuariosConcessoes == null)
     {
         carregaTypDatSetPermissoes();
     }
     try
     {
         cbConcessoes.Items.Clear();
         cbConcessoes.SelectedItem = "";
         cbConcessoes.SelectedText = "";
         cbConcessoes.Text         = "";
         mdlDataBaseAccess.Tabelas.XsdTbUsuariosConcessoes.tbUsuariosConcessoesRow dtrwTbUsuariosConcessoes;
         for (int nCount = 0; nCount < m_typDatSetTbUsuariosConcessoes.tbUsuariosConcessoes.Rows.Count; nCount++)
         {
             dtrwTbUsuariosConcessoes = (mdlDataBaseAccess.Tabelas.XsdTbUsuariosConcessoes.tbUsuariosConcessoesRow)m_typDatSetTbUsuariosConcessoes.tbUsuariosConcessoes.Rows[nCount];
             cbConcessoes.AddItem(dtrwTbUsuariosConcessoes.strConcessao.ToUpper(), dtrwTbUsuariosConcessoes.nIdConcessao);
         }
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
     m_bPrecisaRecarregarDatSets = false;
 }
 protected void carregaDadosInterfacePaises(ref mdlComponentesGraficos.ComboBox cbPaises)
 {
     try
     {
         System.Collections.SortedList srlPaises = new System.Collections.SortedList();
         foreach (mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow dtrwRowTbPaisesSorted in m_typDatSetTbPaises.tbPaises.Rows)
         {
             srlPaises.Add(dtrwRowTbPaisesSorted.nmPais, dtrwRowTbPaisesSorted);
         }
         mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow dtrwRowTbPaises;
         if (srlPaises != null)
         {
             for (int nCont = 0; nCont < srlPaises.Count; nCont++)
             {
                 dtrwRowTbPaises = (mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow)srlPaises.GetByIndex(nCont);
                 cbPaises.AddItem(dtrwRowTbPaises.nmPais, dtrwRowTbPaises.idPais);
             }
         }
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
예제 #4
0
        protected void carregaDadosInterfacePaises(ref mdlComponentesGraficos.ComboBox cbPaises)
        {
            try
            {
                System.Collections.ArrayList arlOrdenacaoCampo = new System.Collections.ArrayList();
                System.Collections.ArrayList arlOrdenacaoTipo  = new System.Collections.ArrayList();
                arlOrdenacaoCampo.Add("nmPais");
                arlOrdenacaoTipo.Add(mdlDataBaseAccess.TipoOrdenacao.Crescente);
                m_typDatSetTbPaises = m_cls_dba_ConnectionDB.GetTbPaises(null, null, null, arlOrdenacaoCampo, arlOrdenacaoTipo);

                mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow dtrwRowTbPaises;
                for (int nCont = 0; nCont < m_typDatSetTbPaises.tbPaises.Rows.Count; nCont++)
                {
                    dtrwRowTbPaises = (mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow)m_typDatSetTbPaises.tbPaises.Rows[nCont];
                    if (!dtrwRowTbPaises.IsnmPaisNull())
                    {
                        cbPaises.AddItem(dtrwRowTbPaises.nmPais, dtrwRowTbPaises.idPais);
                        if (dtrwRowTbPaises.idPais == m_nIdPais)
                        {
                            cbPaises.SelectedIndex = nCont;
                            m_strPais = dtrwRowTbPaises.nmPais;
                        }
                    }
                }
            }
            catch (Exception err)
            {
                Object erro = err;
                m_cls_ter_tratadorErro.trataErro(ref erro);
            }
        }
예제 #5
0
        private void vRefreshEstadosBrasileiros(ref mdlComponentesGraficos.ComboBox cbEstadosBrasileiros)
        {
            cbEstadosBrasileiros.Clear();

            m_cls_dba_ConnectionDB.FonteDosDados = mdlDataBaseAccess.FonteDados.Resource;
            mdlDataBaseAccess.Tabelas.XsdTbEstadosBrasileiros typDatSetEstadosBrasileiros = m_cls_dba_ConnectionDB.GetTbEstadosBrasileiros(null, null, null, null, null);
            foreach (mdlDataBaseAccess.Tabelas.XsdTbEstadosBrasileiros.tbEstadosBrasileirosRow dtrwEstadoBrasileiro in typDatSetEstadosBrasileiros.tbEstadosBrasileiros.Rows)
            {
                cbEstadosBrasileiros.AddItem(dtrwEstadoBrasileiro.strNome, dtrwEstadoBrasileiro.nIdEstado);
            }
        }
예제 #6
0
        private void carregaDadosItemsEspecificosInterface(ref mdlComponentesGraficos.ComboBox cbItemsEspecificos, int nIdConcessao)
        {
            try
            {
                switch (nIdConcessao)
                {
                case 1:
                    cbItemsEspecificos.Items.Clear();
                    cbItemsEspecificos.SelectedItem = "";
                    cbItemsEspecificos.SelectedText = "";
                    cbItemsEspecificos.Text         = "";
                    mdlDataBaseAccess.Tabelas.XsdTbUsuarios.tbUsuariosRow dtrwTbUsuarios;
                    for (int nCount = 0; nCount < m_typDatSetTbUsuarios.tbUsuarios.Rows.Count; nCount++)
                    {
                        dtrwTbUsuarios = (mdlDataBaseAccess.Tabelas.XsdTbUsuarios.tbUsuariosRow)m_typDatSetTbUsuarios.tbUsuarios.Rows[nCount];
                        cbItemsEspecificos.AddItem(dtrwTbUsuarios.strNome.ToUpper(), dtrwTbUsuarios.nIdUsuario);
                    }
                    break;

                case 2:
                    if (m_typDatSetTbExportadores == null)
                    {
                        carregaTypDatSetExportadores();
                    }
                    cbItemsEspecificos.Items.Clear();
                    cbItemsEspecificos.SelectedItem = "";
                    cbItemsEspecificos.SelectedText = "";
                    cbItemsEspecificos.Text         = "";
                    mdlDataBaseAccess.Tabelas.XsdTbExportadores.tbExportadoresRow dtrwTbExportadores;
                    for (int nCount = 0; nCount < m_typDatSetTbExportadores.tbExportadores.Rows.Count; nCount++)
                    {
                        dtrwTbExportadores = (mdlDataBaseAccess.Tabelas.XsdTbExportadores.tbExportadoresRow)m_typDatSetTbExportadores.tbExportadores.Rows[nCount];
                        cbItemsEspecificos.AddItem(dtrwTbExportadores.marca.ToUpper(), dtrwTbExportadores.idExportador);
                    }
                    break;

                default:
                    cbItemsEspecificos.Items.Clear();
                    cbItemsEspecificos.SelectedItem = "";
                    cbItemsEspecificos.SelectedText = "";
                    cbItemsEspecificos.Text         = "";
                    break;
                }
            }
            catch (Exception err)
            {
                Object erro = err;
                m_cls_ter_tratadorErro.trataErro(ref erro);
            }
            m_bPrecisaRecarregarDatSets = false;
        }
예제 #7
0
 private void vRefreshBancos(ref mdlComponentesGraficos.ComboBox cbBancos)
 {
     cbBancos.Clear();
     mdlDataBaseAccess.Tabelas.XsdTbExportadoresBancos.tbExportadoresBancosRow dtrwBanco;
     for (int nCont = 0; nCont < m_typDatSetBancos.tbExportadoresBancos.Rows.Count; nCont++)
     {
         dtrwBanco = (mdlDataBaseAccess.Tabelas.XsdTbExportadoresBancos.tbExportadoresBancosRow)m_typDatSetBancos.tbExportadoresBancos.Rows[nCont];
         cbBancos.AddItem(dtrwBanco.strNome, dtrwBanco.nIdBanco);
     }
     if (cbBancos.Items.Count > 0)
     {
         cbBancos.Text = cbBancos.Items[0].ToString();
     }
 }
예제 #8
0
 protected void carregaDadosInterfaceEstados(ref mdlComponentesGraficos.ComboBox cbEstado)
 {
     #region Adiciona a ComboBox
     mdlDataBaseAccess.Tabelas.XsdTbEstadosBrasileiros.tbEstadosBrasileirosRow dtrwRowTbEstadosBrasileiros;
     if (m_typDatSetTbEstadosBrasileiros != null)
     {
         for (int nCont = 0; nCont < m_typDatSetTbEstadosBrasileiros.tbEstadosBrasileiros.Rows.Count; nCont++)
         {
             dtrwRowTbEstadosBrasileiros = (mdlDataBaseAccess.Tabelas.XsdTbEstadosBrasileiros.tbEstadosBrasileirosRow)m_typDatSetTbEstadosBrasileiros.tbEstadosBrasileiros.Rows[nCont];
             cbEstado.AddItem(dtrwRowTbEstadosBrasileiros.strSigla, dtrwRowTbEstadosBrasileiros.nIdEstado);
         }
     }
     #endregion
 }
예제 #9
0
 protected void carregaDadosInterface(ref mdlComponentesGraficos.ComboBox cbPaises, ref mdlComponentesGraficos.TextBox tbIdioma, ref mdlComponentesGraficos.TextBox tbPaisIdioma)
 {
     try
     {
         this.carregaDadosInterfacePaises(ref cbPaises);
         this.carregaDadosInterfaceIdioma(ref tbIdioma);
         this.carregaDadosInterfacePaisesIdioma(ref tbPaisIdioma, ref cbPaises);
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
예제 #10
0
 private void carregaDadosComboBox(ref mdlComponentesGraficos.ComboBox cbEntregar)
 {
     try
     {
         cbEntregar.Items.Clear();
         cbEntregar.AddItem("Contra Aceite", ENTREGARDOCUMENTOS.ACEITE);
         cbEntregar.AddItem("Contra Pagamento", ENTREGARDOCUMENTOS.PAGAMENTO);
         cbEntregar.SelectItem(m_enumEntregaDocumentos);
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
예제 #11
0
 private void salvaDadosInterface(ref mdlComponentesGraficos.ComboBox cbEntregar, ref System.Windows.Forms.Label lProtestar, ref mdlComponentesGraficos.TextBox tbDias)
 {
     try
     {
         if (cbEntregar.ReturnObjectSelectedItem() != null)
         {
             m_enumEntregaDocumentos = (ENTREGARDOCUMENTOS)cbEntregar.ReturnObjectSelectedItem();
             m_bProtestar            = (lProtestar.Text == "Sim" ? true : false);
             m_nDiasProtestar        = Int32.Parse(tbDias.Text);
         }
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
예제 #12
0
        protected void carregaDadosInterfacePaises(ref mdlComponentesGraficos.ComboBox cbPaises)
        {
            #region Adiciona a ComboBox
            System.Collections.SortedList srlPaises = new System.Collections.SortedList();
            mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow dtrwRowTbPaises;
            foreach (mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow dtrwRowTbPaisesSorted in m_typDatSetTbPaises.tbPaises.Rows)
            {
                srlPaises.Add(dtrwRowTbPaisesSorted.nmPais, dtrwRowTbPaisesSorted);
            }

            if (srlPaises != null)
            {
                for (int nCont = 0; nCont < srlPaises.Count; nCont++)
                {
                    dtrwRowTbPaises = (mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow)srlPaises.GetByIndex(nCont);
                    cbPaises.AddItem(dtrwRowTbPaises.nmPais, dtrwRowTbPaises.idPais);
                }
            }
            #endregion
        }
예제 #13
0
        private void salvaDadosInterface(ref mdlComponentesGraficos.ComboBox cbConcessoes, ref mdlComponentesGraficos.ComboBox cbUsuarios, ref mdlComponentesGraficos.ComboBox cbPermissoes, ref mdlComponentesGraficos.ComboBox cbItemsEspecificos)
        {
            try
            {
                int    nIdConcessao = -1, nIdUsuario = -1, nIdPermissao = -1, nIdItemEspecifico = -1;
                string strIdEspecifico = "";
                nIdConcessao = (int)cbConcessoes.ReturnObjectSelectedItem();
                nIdUsuario   = (int)cbUsuarios.ReturnObjectSelectedItem();
                nIdPermissao = (int)cbPermissoes.ReturnObjectSelectedItem();
                switch (nIdConcessao)
                {
                case 1:
                    nIdItemEspecifico = (int)cbItemsEspecificos.ReturnObjectSelectedItem();
                    strIdEspecifico   = cbItemsEspecificos.SelectedText;
                    break;

                case 2:
                    nIdItemEspecifico = (int)cbItemsEspecificos.ReturnObjectSelectedItem();
                    strIdEspecifico   = cbItemsEspecificos.SelectedText;
                    break;

                case 3:
                    nIdItemEspecifico = -1;
                    strIdEspecifico   = (string)cbItemsEspecificos.ReturnObjectSelectedItem();
                    break;

                default:
                    nIdItemEspecifico = -1;
                    strIdEspecifico   = "";
                    break;
                }
                salvaDadosTypDatSet(nIdConcessao, nIdUsuario, nIdPermissao, nIdItemEspecifico, strIdEspecifico);
            }
            catch (Exception err)
            {
                Object erro = err;
                m_cls_ter_tratadorErro.trataErro(ref erro);
            }
        }
예제 #14
0
        protected void carregaDadosUnidadeMassaInterface(ref mdlComponentesGraficos.ComboBox cbUnidadeMassaLiquida, ref mdlComponentesGraficos.ComboBox cbUnidadeMassaBruta)
        {
            mdlDataBaseAccess.Tabelas.XsdTbUnidadesMassa.tbUnidadesMassaRow             dtrwRowTbUnidadesMassa;
            mdlDataBaseAccess.Tabelas.XsdTbUnidadesMassaIdioma.tbUnidadesMassaIdiomaRow dtrwRowTbUnidadesMassaIdioma;

            for (int nCount = 0; nCount < m_typDatSetTbUnidadesMassa.tbUnidadesMassa.Rows.Count; nCount++)
            {
                dtrwRowTbUnidadesMassa       = (mdlDataBaseAccess.Tabelas.XsdTbUnidadesMassa.tbUnidadesMassaRow)m_typDatSetTbUnidadesMassa.tbUnidadesMassa.Rows[nCount];
                dtrwRowTbUnidadesMassaIdioma = m_typDatSetTbUnidadesMassaIdioma.tbUnidadesMassaIdioma.FindBynIdUnidadeMassanIdIdioma(dtrwRowTbUnidadesMassa.nIdUnidadeMassa, m_nIdioma);
                if (dtrwRowTbUnidadesMassaIdioma != null)
                {
                    cbUnidadeMassaBruta.AddItem(dtrwRowTbUnidadesMassaIdioma.strSigla, dtrwRowTbUnidadesMassaIdioma.nIdUnidadeMassa);
                    cbUnidadeMassaLiquida.AddItem(dtrwRowTbUnidadesMassaIdioma.strSigla, dtrwRowTbUnidadesMassaIdioma.nIdUnidadeMassa);
                }
                else if (dtrwRowTbUnidadesMassa != null)
                {
                    cbUnidadeMassaBruta.AddItem(dtrwRowTbUnidadesMassa.strSigla, dtrwRowTbUnidadesMassa.nIdUnidadeMassa);
                    cbUnidadeMassaLiquida.AddItem(dtrwRowTbUnidadesMassa.strSigla, dtrwRowTbUnidadesMassa.nIdUnidadeMassa);
                }
            }
            cbUnidadeMassaBruta.SelectItem(m_nUnidadeBruto);
            cbUnidadeMassaLiquida.SelectItem(m_nUnidadeLiquido);
        }
예제 #15
0
        private bool SalvaDadosInterface(ref mdlComponentesGraficos.ComboBox cbPais, ref mdlComponentesGraficos.TextBox tbPaisIdioma, bool bModificado)
        {
            bool bRetorno = false;

            this.m_bModificado           = bModificado;
            this.m_bPaisIdiomaModificado = bModificado;
            if (this.m_bModificado)
            {
                try
                {
                    try
                    {
                        m_nIdPais = Int32.Parse(cbPais.ReturnObjectSelectedItem().ToString());
                    }catch {
                        mdlMensagens.clsMensagens.Show(mdlMensagens.clsRepositorioMensagens.GetMensagem(mdlMensagens.Mensagem.mdlIdioma_clsPaisIdioma_PaisSelecionadoInvalido));
                        return(false);
                    }
                    if (m_nIdPais == m_nIdPaisInicial)
                    {
                        this.m_bModificado = false;
                    }
                    else if (tbPaisIdioma.Text == cbPais.SelectedItem.ToString())
                    {
                        this.m_bPaisIdiomaModificado = false;
                    }
                    m_strPaisIdioma = tbPaisIdioma.Text;
                    m_strPais       = cbPais.SelectedItem.ToString();
                    bRetorno        = true;
                }
                catch (Exception erro)
                {
                    Object err = erro;
                    m_cls_ter_tratadorErro.trataErro(ref err);
                }
            }
            return(bRetorno);
        }
예제 #16
0
        private void carregaDadosInterface(ref mdlComponentesGraficos.ComboBox cbEntregar, ref System.Windows.Forms.Label lProtestar, ref mdlComponentesGraficos.TextBox tbDias, ref System.Windows.Forms.Label lTextoProtestar, ref System.Windows.Forms.Label lTextoDias)
        {
            try
            {
                carregaDadosComboBox(ref cbEntregar);
                lProtestar.Text = (m_bProtestar ? "Sim" : "Não");
                tbDias.Text     = m_nDiasProtestar.ToString();
                switch (m_enumEntregaDocumentos)
                {
                case ENTREGARDOCUMENTOS.ACEITE:
                    lProtestar.Visible      = true;
                    lTextoDias.Visible      = m_bProtestar;
                    lTextoProtestar.Visible = true;
                    tbDias.Visible          = m_bProtestar;
                    break;

                case ENTREGARDOCUMENTOS.PAGAMENTO:
                    lProtestar.Visible      = false;
                    lTextoDias.Visible      = false;
                    lTextoProtestar.Visible = false;
                    tbDias.Visible          = false;
                    break;

                default:
                    lProtestar.Visible      = false;
                    lTextoDias.Visible      = false;
                    lTextoProtestar.Visible = false;
                    tbDias.Visible          = false;
                    break;
                }
            }
            catch (Exception err)
            {
                Object erro = err;
                m_cls_ter_tratadorErro.trataErro(ref erro);
            }
        }
 protected void carregaDadosInterfaceEndereco(ref mdlComponentesGraficos.TextBox ctbEndereco, ref mdlComponentesGraficos.TextBox ctbCidade, ref mdlComponentesGraficos.TextBox ctbEstado, ref mdlComponentesGraficos.ComboBox cbPaises)
 {
     try
     {
         System.Collections.SortedList srlPaises = new System.Collections.SortedList();
         foreach (mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow dtrwRowTbPaisesSorted in m_typDatSetTbPaises.tbPaises.Rows)
         {
             srlPaises.Add(dtrwRowTbPaisesSorted.nmPais, dtrwRowTbPaisesSorted);
         }
         mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow dtrwRowTbPaises;
         ctbEndereco.Text = m_strEnderecoEntrega;
         ctbCidade.Text   = m_strCidadeEntrega;
         ctbEstado.Text   = m_strEstadoEntrega;
         if (srlPaises != null)
         {
             for (int nCont = 0; nCont < srlPaises.Count; nCont++)
             {
                 dtrwRowTbPaises = (mdlDataBaseAccess.Tabelas.XsdTbPaises.tbPaisesRow)srlPaises.GetByIndex(nCont);
                 cbPaises.AddItem(dtrwRowTbPaises.nmPais, dtrwRowTbPaises.idPais);
                 if (dtrwRowTbPaises.idPais == m_nIdPais)
                 {
                     cbPaises.SelectedIndex = nCont;
                     m_strPaisEntrega       = dtrwRowTbPaises.nmPais;
                 }
             }
         }
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
예제 #18
0
 protected void salvaDadosInterfaceConfiguracao(ref mdlComponentesGraficos.TextBox tbSMTP, ref mdlComponentesGraficos.TextBox tbUsuario, ref mdlComponentesGraficos.TextBox tbSenha, ref mdlComponentesGraficos.ComboBox cbAuth)
 {
     if (m_bAtivado)
     {
         m_bAtivado = false;
         try
         {
             m_strSMTP                = tbSMTP.Text.Clone().ToString();
             m_strUsuario             = tbUsuario.Text;
             m_strSenha               = tbSenha.Text;
             m_enumTipoAutenticacao   = (mdlEmail.AUTENTICACAO)cbAuth.ReturnObjectSelectedItem();
             m_bConfiguracaoInicial   = false;
             m_bVerificarConfiguracao = false;
         }
         catch (Exception err)
         {
             Object erro = err;
             m_cls_ter_tratadorErro.trataErro(ref erro);
         }
         m_bAtivado = true;
     }
 }
예제 #19
0
 protected void AlteraDadosInterfaceConfiguracao(ref mdlComponentesGraficos.TextBox tbSMTP, ref mdlComponentesGraficos.TextBox tbUsuario, ref mdlComponentesGraficos.TextBox tbSenha, ref mdlComponentesGraficos.ComboBox cbAuth)
 {
     if (m_bAtivado)
     {
         m_bAtivado = false;
         try
         {
             if (((mdlEmail.AUTENTICACAO)cbAuth.ReturnObjectSelectedItem()) != mdlEmail.AUTENTICACAO.Nenhuma)
             {
                 //tbSMTP.Text = m_strSMTP;
                 tbUsuario.Enabled = true;
                 //tbUsuario.Text = m_strUsuario;
                 tbSenha.Enabled = true;
                 //tbSenha.Text = m_strSenha;
                 m_bAutenticacao = true;
             }
             else
             {
                 //tbSMTP.Text = m_strSMTP;
                 tbUsuario.Enabled = false;
                 //tbUsuario.Text = m_strUsuario;
                 tbSenha.Enabled = false;
                 //tbSenha.Text = m_strSenha;
                 m_bAutenticacao = false;
             }
         }
         catch (Exception err)
         {
             Object erro = err;
             m_cls_ter_tratadorErro.trataErro(ref erro);
         }
         m_bAtivado = true;
     }
 }
예제 #20
0
        protected void carregaDadosInterfaceConfiguracao(ref mdlComponentesGraficos.TextBox tbSMTP, ref mdlComponentesGraficos.TextBox tbUsuario, ref mdlComponentesGraficos.TextBox tbSenha, ref mdlComponentesGraficos.ComboBox cbAuth)
        {
            if (m_bAtivado)
            {
                m_bAtivado = false;
                try
                {
                    cbAuth.Items.Clear();
                    cbAuth.AddItem(mdlEmail.AUTENTICACAO.Nenhuma.ToString(), mdlEmail.AUTENTICACAO.Nenhuma);
                    cbAuth.AddItem(mdlEmail.AUTENTICACAO.Automatica.ToString(), mdlEmail.AUTENTICACAO.Automatica);
                    cbAuth.AddItem(mdlEmail.AUTENTICACAO.LOGIN.ToString(), mdlEmail.AUTENTICACAO.LOGIN);
                    cbAuth.AddItem(mdlEmail.AUTENTICACAO.CRAM_MD5.ToString(), mdlEmail.AUTENTICACAO.CRAM_MD5);
                    cbAuth.AddItem(mdlEmail.AUTENTICACAO.DIGEST_MD5.ToString(), mdlEmail.AUTENTICACAO.DIGEST_MD5);
                    switch (m_enumTipoAutenticacao)
                    {
                    case mdlEmail.AUTENTICACAO.Nenhuma:
                        cbAuth.SelectedIndex = 0;
                        break;

                    case mdlEmail.AUTENTICACAO.Automatica:
                        cbAuth.SelectedIndex = 1;
                        break;

                    case mdlEmail.AUTENTICACAO.LOGIN:
                        cbAuth.SelectedIndex = 2;
                        break;

                    case mdlEmail.AUTENTICACAO.CRAM_MD5:
                        cbAuth.SelectedIndex = 3;
                        break;

                    case mdlEmail.AUTENTICACAO.DIGEST_MD5:
                        cbAuth.SelectedIndex = 4;
                        break;

                    default:
                        cbAuth.SelectedIndex = 0;
                        break;
                    }
                    if (((mdlEmail.AUTENTICACAO)cbAuth.ReturnObjectSelectedItem()) != mdlEmail.AUTENTICACAO.Nenhuma)
                    {
                        tbSMTP.Text     = m_strSMTP;
                        tbUsuario.Text  = m_strUsuario;
                        tbSenha.Text    = m_strSenha;
                        m_bAutenticacao = true;
                    }
                    else
                    {
                        tbSMTP.Text       = m_strSMTP;
                        tbUsuario.Text    = m_strUsuario;
                        tbSenha.Text      = m_strSenha;
                        tbUsuario.Enabled = false;
                        tbSenha.Enabled   = false;
                        m_bAutenticacao   = false;
                    }
                }
                catch (Exception err)
                {
                    Object erro = err;
                    m_cls_ter_tratadorErro.trataErro(ref erro);
                }
                m_bAtivado = true;
            }
        }
예제 #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFContainersEditar));
     this.m_gbGeral                    = new System.Windows.Forms.GroupBox();
     this.m_gbContainer                = new System.Windows.Forms.GroupBox();
     this.m_txtContainerISO            = new mdlComponentesGraficos.TextBox();
     this.m_lbContainerISO             = new System.Windows.Forms.Label();
     this.m_gbCargaPerigosa            = new System.Windows.Forms.GroupBox();
     this.m_txtUno                     = new mdlComponentesGraficos.TextBox();
     this.m_lbUno                      = new System.Windows.Forms.Label();
     this.m_txtImo                     = new mdlComponentesGraficos.TextBox();
     this.m_lbImo                      = new System.Windows.Forms.Label();
     this.m_gbExcessoCarga             = new System.Windows.Forms.GroupBox();
     this.m_btUnidadeComprimento       = new System.Windows.Forms.Button();
     this.m_btUnidadeLargura           = new System.Windows.Forms.Button();
     this.m_btUnidadeAltura            = new System.Windows.Forms.Button();
     this.m_txtExcessoCargaComprimento = new mdlComponentesGraficos.TextBox();
     this.m_txtExcessoCargaLargura     = new mdlComponentesGraficos.TextBox();
     this.m_txtExcessoCargaAltura      = new mdlComponentesGraficos.TextBox();
     this.m_lbExcessoCargaComprimento  = new System.Windows.Forms.Label();
     this.m_lbExcessoCargaLargura      = new System.Windows.Forms.Label();
     this.m_lbExcessoCargaAltura       = new System.Windows.Forms.Label();
     this.m_gbTemperatura              = new System.Windows.Forms.GroupBox();
     this.m_lbTemperaturaMaxima        = new System.Windows.Forms.Label();
     this.m_txtTemperaturaMaxima       = new mdlComponentesGraficos.TextBox();
     this.m_lbTemperaturaMinima        = new System.Windows.Forms.Label();
     this.m_txtTemperaturaMinima       = new mdlComponentesGraficos.TextBox();
     this.m_txtContainerLacreArmador   = new mdlComponentesGraficos.TextBox();
     this.m_lbLacreArmador             = new System.Windows.Forms.Label();
     this.m_txtContainerTipo           = new mdlComponentesGraficos.TextBox();
     this.m_lbContainerTipoPopular     = new System.Windows.Forms.Label();
     this.m_btContainerTaraUnidade     = new System.Windows.Forms.Button();
     this.m_txtContainerTara           = new mdlComponentesGraficos.TextBox();
     this.m_lbContainerTara            = new System.Windows.Forms.Label();
     this.m_txtContainerLacre          = new mdlComponentesGraficos.TextBox();
     this.m_lbContainerLacre           = new System.Windows.Forms.Label();
     this.m_cbContainersTamanho        = new mdlComponentesGraficos.ComboBox();
     this.m_lbContainerTamanho         = new System.Windows.Forms.Label();
     this.m_btContainerTipo            = new System.Windows.Forms.Button();
     this.m_lbContainerTipo            = new System.Windows.Forms.Label();
     this.m_txtContainerNumero         = new mdlComponentesGraficos.TextBox();
     this.m_lbContainerNumero          = new System.Windows.Forms.Label();
     this.m_btOk       = new System.Windows.Forms.Button();
     this.m_btCancelar = new System.Windows.Forms.Button();
     this.m_gbGeral.SuspendLayout();
     this.m_gbContainer.SuspendLayout();
     this.m_gbCargaPerigosa.SuspendLayout();
     this.m_gbExcessoCarga.SuspendLayout();
     this.m_gbTemperatura.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbGeral
     //
     this.m_gbGeral.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbGeral.Controls.Add(this.m_gbContainer);
     this.m_gbGeral.Controls.Add(this.m_btOk);
     this.m_gbGeral.Controls.Add(this.m_btCancelar);
     this.m_gbGeral.Location = new System.Drawing.Point(4, -1);
     this.m_gbGeral.Name     = "m_gbGeral";
     this.m_gbGeral.Size     = new System.Drawing.Size(260, 422);
     this.m_gbGeral.TabIndex = 0;
     this.m_gbGeral.TabStop  = false;
     //
     // m_gbContainer
     //
     this.m_gbContainer.Controls.Add(this.m_txtContainerISO);
     this.m_gbContainer.Controls.Add(this.m_lbContainerISO);
     this.m_gbContainer.Controls.Add(this.m_gbCargaPerigosa);
     this.m_gbContainer.Controls.Add(this.m_gbExcessoCarga);
     this.m_gbContainer.Controls.Add(this.m_gbTemperatura);
     this.m_gbContainer.Controls.Add(this.m_txtContainerLacreArmador);
     this.m_gbContainer.Controls.Add(this.m_lbLacreArmador);
     this.m_gbContainer.Controls.Add(this.m_txtContainerTipo);
     this.m_gbContainer.Controls.Add(this.m_lbContainerTipoPopular);
     this.m_gbContainer.Controls.Add(this.m_btContainerTaraUnidade);
     this.m_gbContainer.Controls.Add(this.m_txtContainerTara);
     this.m_gbContainer.Controls.Add(this.m_lbContainerTara);
     this.m_gbContainer.Controls.Add(this.m_txtContainerLacre);
     this.m_gbContainer.Controls.Add(this.m_lbContainerLacre);
     this.m_gbContainer.Controls.Add(this.m_cbContainersTamanho);
     this.m_gbContainer.Controls.Add(this.m_lbContainerTamanho);
     this.m_gbContainer.Controls.Add(this.m_btContainerTipo);
     this.m_gbContainer.Controls.Add(this.m_lbContainerTipo);
     this.m_gbContainer.Controls.Add(this.m_txtContainerNumero);
     this.m_gbContainer.Controls.Add(this.m_lbContainerNumero);
     this.m_gbContainer.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_gbContainer.Location = new System.Drawing.Point(5, 7);
     this.m_gbContainer.Name     = "m_gbContainer";
     this.m_gbContainer.Size     = new System.Drawing.Size(248, 382);
     this.m_gbContainer.TabIndex = 0;
     this.m_gbContainer.TabStop  = false;
     this.m_gbContainer.Text     = "Container";
     //
     // m_txtContainerISO
     //
     this.m_txtContainerISO.Location = new System.Drawing.Point(72, 89);
     this.m_txtContainerISO.Name     = "m_txtContainerISO";
     this.m_txtContainerISO.Size     = new System.Drawing.Size(168, 20);
     this.m_txtContainerISO.TabIndex = 3;
     this.m_txtContainerISO.Text     = "";
     //
     // m_lbContainerISO
     //
     this.m_lbContainerISO.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbContainerISO.Location = new System.Drawing.Point(8, 93);
     this.m_lbContainerISO.Name     = "m_lbContainerISO";
     this.m_lbContainerISO.Size     = new System.Drawing.Size(56, 16);
     this.m_lbContainerISO.TabIndex = 47;
     this.m_lbContainerISO.Text     = "ISO:";
     //
     // m_gbCargaPerigosa
     //
     this.m_gbCargaPerigosa.Controls.Add(this.m_txtUno);
     this.m_gbCargaPerigosa.Controls.Add(this.m_lbUno);
     this.m_gbCargaPerigosa.Controls.Add(this.m_txtImo);
     this.m_gbCargaPerigosa.Controls.Add(this.m_lbImo);
     this.m_gbCargaPerigosa.Location = new System.Drawing.Point(5, 336);
     this.m_gbCargaPerigosa.Name     = "m_gbCargaPerigosa";
     this.m_gbCargaPerigosa.Size     = new System.Drawing.Size(240, 40);
     this.m_gbCargaPerigosa.TabIndex = 45;
     this.m_gbCargaPerigosa.TabStop  = false;
     this.m_gbCargaPerigosa.Text     = "Carga Perigosa";
     //
     // m_txtUno
     //
     this.m_txtUno.Location = new System.Drawing.Point(183, 15);
     this.m_txtUno.Name     = "m_txtUno";
     this.m_txtUno.Size     = new System.Drawing.Size(48, 20);
     this.m_txtUno.TabIndex = 49;
     this.m_txtUno.Text     = "";
     //
     // m_lbUno
     //
     this.m_lbUno.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbUno.Location = new System.Drawing.Point(146, 18);
     this.m_lbUno.Name     = "m_lbUno";
     this.m_lbUno.Size     = new System.Drawing.Size(33, 16);
     this.m_lbUno.TabIndex = 48;
     this.m_lbUno.Text     = "UNO:";
     //
     // m_txtImo
     //
     this.m_txtImo.Location = new System.Drawing.Point(64, 16);
     this.m_txtImo.Name     = "m_txtImo";
     this.m_txtImo.Size     = new System.Drawing.Size(48, 20);
     this.m_txtImo.TabIndex = 47;
     this.m_txtImo.Text     = "";
     //
     // m_lbImo
     //
     this.m_lbImo.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbImo.Location = new System.Drawing.Point(8, 18);
     this.m_lbImo.Name     = "m_lbImo";
     this.m_lbImo.Size     = new System.Drawing.Size(32, 16);
     this.m_lbImo.TabIndex = 44;
     this.m_lbImo.Text     = "IMO:";
     //
     // m_gbExcessoCarga
     //
     this.m_gbExcessoCarga.Controls.Add(this.m_btUnidadeComprimento);
     this.m_gbExcessoCarga.Controls.Add(this.m_btUnidadeLargura);
     this.m_gbExcessoCarga.Controls.Add(this.m_btUnidadeAltura);
     this.m_gbExcessoCarga.Controls.Add(this.m_txtExcessoCargaComprimento);
     this.m_gbExcessoCarga.Controls.Add(this.m_txtExcessoCargaLargura);
     this.m_gbExcessoCarga.Controls.Add(this.m_txtExcessoCargaAltura);
     this.m_gbExcessoCarga.Controls.Add(this.m_lbExcessoCargaComprimento);
     this.m_gbExcessoCarga.Controls.Add(this.m_lbExcessoCargaLargura);
     this.m_gbExcessoCarga.Controls.Add(this.m_lbExcessoCargaAltura);
     this.m_gbExcessoCarga.Location = new System.Drawing.Point(6, 248);
     this.m_gbExcessoCarga.Name     = "m_gbExcessoCarga";
     this.m_gbExcessoCarga.Size     = new System.Drawing.Size(238, 88);
     this.m_gbExcessoCarga.TabIndex = 44;
     this.m_gbExcessoCarga.TabStop  = false;
     this.m_gbExcessoCarga.Text     = "Excesso Carga";
     //
     // m_btUnidadeComprimento
     //
     this.m_btUnidadeComprimento.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.m_btUnidadeComprimento.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btUnidadeComprimento.Location = new System.Drawing.Point(201, 58);
     this.m_btUnidadeComprimento.Name     = "m_btUnidadeComprimento";
     this.m_btUnidadeComprimento.Size     = new System.Drawing.Size(32, 24);
     this.m_btUnidadeComprimento.TabIndex = 54;
     this.m_btUnidadeComprimento.TabStop  = false;
     this.m_btUnidadeComprimento.Text     = "cm";
     this.m_btUnidadeComprimento.Click   += new System.EventHandler(this.m_btUnidadeComprimento_Click);
     //
     // m_btUnidadeLargura
     //
     this.m_btUnidadeLargura.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.m_btUnidadeLargura.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btUnidadeLargura.Location = new System.Drawing.Point(201, 34);
     this.m_btUnidadeLargura.Name     = "m_btUnidadeLargura";
     this.m_btUnidadeLargura.Size     = new System.Drawing.Size(32, 24);
     this.m_btUnidadeLargura.TabIndex = 53;
     this.m_btUnidadeLargura.TabStop  = false;
     this.m_btUnidadeLargura.Text     = "cm";
     this.m_btUnidadeLargura.Click   += new System.EventHandler(this.m_btUnidadeLargura_Click);
     //
     // m_btUnidadeAltura
     //
     this.m_btUnidadeAltura.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.m_btUnidadeAltura.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btUnidadeAltura.Location = new System.Drawing.Point(201, 10);
     this.m_btUnidadeAltura.Name     = "m_btUnidadeAltura";
     this.m_btUnidadeAltura.Size     = new System.Drawing.Size(32, 24);
     this.m_btUnidadeAltura.TabIndex = 52;
     this.m_btUnidadeAltura.TabStop  = false;
     this.m_btUnidadeAltura.Text     = "cm";
     this.m_btUnidadeAltura.Click   += new System.EventHandler(this.m_btUnidadeAltura_Click);
     //
     // m_txtExcessoCargaComprimento
     //
     this.m_txtExcessoCargaComprimento.Location    = new System.Drawing.Point(96, 60);
     this.m_txtExcessoCargaComprimento.Name        = "m_txtExcessoCargaComprimento";
     this.m_txtExcessoCargaComprimento.OnlyNumbers = true;
     this.m_txtExcessoCargaComprimento.Size        = new System.Drawing.Size(104, 20);
     this.m_txtExcessoCargaComprimento.TabIndex    = 51;
     this.m_txtExcessoCargaComprimento.Text        = "";
     //
     // m_txtExcessoCargaLargura
     //
     this.m_txtExcessoCargaLargura.Location    = new System.Drawing.Point(96, 37);
     this.m_txtExcessoCargaLargura.Name        = "m_txtExcessoCargaLargura";
     this.m_txtExcessoCargaLargura.OnlyNumbers = true;
     this.m_txtExcessoCargaLargura.Size        = new System.Drawing.Size(104, 20);
     this.m_txtExcessoCargaLargura.TabIndex    = 50;
     this.m_txtExcessoCargaLargura.Text        = "";
     //
     // m_txtExcessoCargaAltura
     //
     this.m_txtExcessoCargaAltura.Location    = new System.Drawing.Point(96, 14);
     this.m_txtExcessoCargaAltura.Name        = "m_txtExcessoCargaAltura";
     this.m_txtExcessoCargaAltura.OnlyNumbers = true;
     this.m_txtExcessoCargaAltura.Size        = new System.Drawing.Size(104, 20);
     this.m_txtExcessoCargaAltura.TabIndex    = 49;
     this.m_txtExcessoCargaAltura.Text        = "";
     //
     // m_lbExcessoCargaComprimento
     //
     this.m_lbExcessoCargaComprimento.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbExcessoCargaComprimento.Location = new System.Drawing.Point(5, 65);
     this.m_lbExcessoCargaComprimento.Name     = "m_lbExcessoCargaComprimento";
     this.m_lbExcessoCargaComprimento.Size     = new System.Drawing.Size(88, 16);
     this.m_lbExcessoCargaComprimento.TabIndex = 48;
     this.m_lbExcessoCargaComprimento.Text     = "Comprimento:";
     //
     // m_lbExcessoCargaLargura
     //
     this.m_lbExcessoCargaLargura.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbExcessoCargaLargura.Location = new System.Drawing.Point(7, 38);
     this.m_lbExcessoCargaLargura.Name     = "m_lbExcessoCargaLargura";
     this.m_lbExcessoCargaLargura.Size     = new System.Drawing.Size(60, 16);
     this.m_lbExcessoCargaLargura.TabIndex = 47;
     this.m_lbExcessoCargaLargura.Text     = "Largura:";
     //
     // m_lbExcessoCargaAltura
     //
     this.m_lbExcessoCargaAltura.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbExcessoCargaAltura.Location = new System.Drawing.Point(6, 17);
     this.m_lbExcessoCargaAltura.Name     = "m_lbExcessoCargaAltura";
     this.m_lbExcessoCargaAltura.Size     = new System.Drawing.Size(60, 16);
     this.m_lbExcessoCargaAltura.TabIndex = 46;
     this.m_lbExcessoCargaAltura.Text     = "Altura:";
     //
     // m_gbTemperatura
     //
     this.m_gbTemperatura.Controls.Add(this.m_lbTemperaturaMaxima);
     this.m_gbTemperatura.Controls.Add(this.m_txtTemperaturaMaxima);
     this.m_gbTemperatura.Controls.Add(this.m_lbTemperaturaMinima);
     this.m_gbTemperatura.Controls.Add(this.m_txtTemperaturaMinima);
     this.m_gbTemperatura.Location = new System.Drawing.Point(4, 208);
     this.m_gbTemperatura.Name     = "m_gbTemperatura";
     this.m_gbTemperatura.Size     = new System.Drawing.Size(240, 40);
     this.m_gbTemperatura.TabIndex = 43;
     this.m_gbTemperatura.TabStop  = false;
     this.m_gbTemperatura.Text     = "Temperatura";
     //
     // m_lbTemperaturaMaxima
     //
     this.m_lbTemperaturaMaxima.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbTemperaturaMaxima.Location = new System.Drawing.Point(132, 16);
     this.m_lbTemperaturaMaxima.Name     = "m_lbTemperaturaMaxima";
     this.m_lbTemperaturaMaxima.Size     = new System.Drawing.Size(53, 16);
     this.m_lbTemperaturaMaxima.TabIndex = 45;
     this.m_lbTemperaturaMaxima.Text     = "Máxima:";
     //
     // m_txtTemperaturaMaxima
     //
     this.m_txtTemperaturaMaxima.Location = new System.Drawing.Point(186, 13);
     this.m_txtTemperaturaMaxima.Name     = "m_txtTemperaturaMaxima";
     this.m_txtTemperaturaMaxima.Size     = new System.Drawing.Size(48, 20);
     this.m_txtTemperaturaMaxima.TabIndex = 46;
     this.m_txtTemperaturaMaxima.Text     = "";
     //
     // m_lbTemperaturaMinima
     //
     this.m_lbTemperaturaMinima.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbTemperaturaMinima.Location = new System.Drawing.Point(3, 16);
     this.m_lbTemperaturaMinima.Name     = "m_lbTemperaturaMinima";
     this.m_lbTemperaturaMinima.Size     = new System.Drawing.Size(53, 16);
     this.m_lbTemperaturaMinima.TabIndex = 43;
     this.m_lbTemperaturaMinima.Text     = "Mínima:";
     //
     // m_txtTemperaturaMinima
     //
     this.m_txtTemperaturaMinima.Location = new System.Drawing.Point(64, 13);
     this.m_txtTemperaturaMinima.Name     = "m_txtTemperaturaMinima";
     this.m_txtTemperaturaMinima.Size     = new System.Drawing.Size(48, 20);
     this.m_txtTemperaturaMinima.TabIndex = 44;
     this.m_txtTemperaturaMinima.Text     = "";
     //
     // m_txtContainerLacreArmador
     //
     this.m_txtContainerLacreArmador.Location = new System.Drawing.Point(104, 187);
     this.m_txtContainerLacreArmador.Name     = "m_txtContainerLacreArmador";
     this.m_txtContainerLacreArmador.Size     = new System.Drawing.Size(136, 20);
     this.m_txtContainerLacreArmador.TabIndex = 7;
     this.m_txtContainerLacreArmador.Text     = "";
     //
     // m_lbLacreArmador
     //
     this.m_lbLacreArmador.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbLacreArmador.Location = new System.Drawing.Point(8, 187);
     this.m_lbLacreArmador.Name     = "m_lbLacreArmador";
     this.m_lbLacreArmador.Size     = new System.Drawing.Size(96, 16);
     this.m_lbLacreArmador.TabIndex = 42;
     this.m_lbLacreArmador.Text     = "Lacre Armador:";
     //
     // m_txtContainerTipo
     //
     this.m_txtContainerTipo.Location = new System.Drawing.Point(72, 66);
     this.m_txtContainerTipo.Name     = "m_txtContainerTipo";
     this.m_txtContainerTipo.Size     = new System.Drawing.Size(168, 20);
     this.m_txtContainerTipo.TabIndex = 2;
     this.m_txtContainerTipo.Text     = "";
     //
     // m_lbContainerTipoPopular
     //
     this.m_lbContainerTipoPopular.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbContainerTipoPopular.Location = new System.Drawing.Point(8, 68);
     this.m_lbContainerTipoPopular.Name     = "m_lbContainerTipoPopular";
     this.m_lbContainerTipoPopular.Size     = new System.Drawing.Size(56, 16);
     this.m_lbContainerTipoPopular.TabIndex = 40;
     this.m_lbContainerTipoPopular.Text     = "Tipo:";
     //
     // m_btContainerTaraUnidade
     //
     this.m_btContainerTaraUnidade.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.m_btContainerTaraUnidade.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btContainerTaraUnidade.Location = new System.Drawing.Point(210, 139);
     this.m_btContainerTaraUnidade.Name     = "m_btContainerTaraUnidade";
     this.m_btContainerTaraUnidade.Size     = new System.Drawing.Size(28, 24);
     this.m_btContainerTaraUnidade.TabIndex = 5;
     this.m_btContainerTaraUnidade.TabStop  = false;
     this.m_btContainerTaraUnidade.Text     = "Kg";
     this.m_btContainerTaraUnidade.Click   += new System.EventHandler(this.m_btContainerTaraUnidade_Click);
     //
     // m_txtContainerTara
     //
     this.m_txtContainerTara.Location    = new System.Drawing.Point(72, 139);
     this.m_txtContainerTara.Name        = "m_txtContainerTara";
     this.m_txtContainerTara.OnlyNumbers = true;
     this.m_txtContainerTara.Size        = new System.Drawing.Size(136, 20);
     this.m_txtContainerTara.TabIndex    = 5;
     this.m_txtContainerTara.Text        = "";
     //
     // m_lbContainerTara
     //
     this.m_lbContainerTara.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbContainerTara.Location = new System.Drawing.Point(8, 139);
     this.m_lbContainerTara.Name     = "m_lbContainerTara";
     this.m_lbContainerTara.Size     = new System.Drawing.Size(56, 16);
     this.m_lbContainerTara.TabIndex = 37;
     this.m_lbContainerTara.Text     = "Tara:";
     //
     // m_txtContainerLacre
     //
     this.m_txtContainerLacre.Location = new System.Drawing.Point(72, 163);
     this.m_txtContainerLacre.Name     = "m_txtContainerLacre";
     this.m_txtContainerLacre.Size     = new System.Drawing.Size(168, 20);
     this.m_txtContainerLacre.TabIndex = 6;
     this.m_txtContainerLacre.Text     = "";
     //
     // m_lbContainerLacre
     //
     this.m_lbContainerLacre.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbContainerLacre.Location = new System.Drawing.Point(8, 163);
     this.m_lbContainerLacre.Name     = "m_lbContainerLacre";
     this.m_lbContainerLacre.Size     = new System.Drawing.Size(56, 16);
     this.m_lbContainerLacre.TabIndex = 35;
     this.m_lbContainerLacre.Text     = "Lacre(s):";
     //
     // m_cbContainersTamanho
     //
     this.m_cbContainersTamanho.GoToNextControlWithEnter = true;
     this.m_cbContainersTamanho.Location = new System.Drawing.Point(72, 112);
     this.m_cbContainersTamanho.Name     = "m_cbContainersTamanho";
     this.m_cbContainersTamanho.Size     = new System.Drawing.Size(168, 22);
     this.m_cbContainersTamanho.TabIndex = 4;
     //
     // m_lbContainerTamanho
     //
     this.m_lbContainerTamanho.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbContainerTamanho.Location = new System.Drawing.Point(8, 115);
     this.m_lbContainerTamanho.Name     = "m_lbContainerTamanho";
     this.m_lbContainerTamanho.Size     = new System.Drawing.Size(63, 16);
     this.m_lbContainerTamanho.TabIndex = 33;
     this.m_lbContainerTamanho.Text     = "Tamanho:";
     //
     // m_btContainerTipo
     //
     this.m_btContainerTipo.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.m_btContainerTipo.Location = new System.Drawing.Point(72, 40);
     this.m_btContainerTipo.Name     = "m_btContainerTipo";
     this.m_btContainerTipo.Size     = new System.Drawing.Size(167, 24);
     this.m_btContainerTipo.TabIndex = 1;
     this.m_btContainerTipo.TabStop  = false;
     this.m_btContainerTipo.Click   += new System.EventHandler(this.m_btContainerTipo_Click);
     //
     // m_lbContainerTipo
     //
     this.m_lbContainerTipo.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbContainerTipo.Location = new System.Drawing.Point(8, 43);
     this.m_lbContainerTipo.Name     = "m_lbContainerTipo";
     this.m_lbContainerTipo.Size     = new System.Drawing.Size(40, 16);
     this.m_lbContainerTipo.TabIndex = 31;
     this.m_lbContainerTipo.Text     = "Tipo:";
     //
     // m_txtContainerNumero
     //
     this.m_txtContainerNumero.Location = new System.Drawing.Point(72, 16);
     this.m_txtContainerNumero.Mask     = true;
     this.m_txtContainerNumero.MaskText = "CCCCNNNNNNN";
     this.m_txtContainerNumero.Name     = "m_txtContainerNumero";
     this.m_txtContainerNumero.Size     = new System.Drawing.Size(168, 20);
     this.m_txtContainerNumero.TabIndex = 0;
     this.m_txtContainerNumero.Text     = "";
     //
     // m_lbContainerNumero
     //
     this.m_lbContainerNumero.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lbContainerNumero.ForeColor = System.Drawing.SystemColors.ControlText;
     this.m_lbContainerNumero.Location  = new System.Drawing.Point(9, 19);
     this.m_lbContainerNumero.Name      = "m_lbContainerNumero";
     this.m_lbContainerNumero.Size      = new System.Drawing.Size(56, 16);
     this.m_lbContainerNumero.TabIndex  = 29;
     this.m_lbContainerNumero.Text      = "Número:";
     //
     // m_btOk
     //
     this.m_btOk.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btOk.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btOk.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btOk.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btOk.Image       = ((System.Drawing.Image)(resources.GetObject("m_btOk.Image")));
     this.m_btOk.Location    = new System.Drawing.Point(68, 392);
     this.m_btOk.Name        = "m_btOk";
     this.m_btOk.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btOk.Size        = new System.Drawing.Size(57, 25);
     this.m_btOk.TabIndex    = 1;
     this.m_btOk.Click      += new System.EventHandler(this.m_btOk_Click);
     //
     // m_btCancelar
     //
     this.m_btCancelar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btCancelar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btCancelar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btCancelar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btCancelar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btCancelar.Image")));
     this.m_btCancelar.Location    = new System.Drawing.Point(132, 392);
     this.m_btCancelar.Name        = "m_btCancelar";
     this.m_btCancelar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btCancelar.Size        = new System.Drawing.Size(57, 25);
     this.m_btCancelar.TabIndex    = 2;
     this.m_btCancelar.Click      += new System.EventHandler(this.m_btCancelar_Click);
     //
     // frmFContainersEditar
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(266, 423);
     this.Controls.Add(this.m_gbGeral);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFContainersEditar";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Container Edição";
     this.Load           += new System.EventHandler(this.frmFContainersEditar_Load);
     this.m_gbGeral.ResumeLayout(false);
     this.m_gbContainer.ResumeLayout(false);
     this.m_gbCargaPerigosa.ResumeLayout(false);
     this.m_gbExcessoCarga.ResumeLayout(false);
     this.m_gbTemperatura.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #22
0
 /// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFCadastroDespachante));
     this.m_gbFrame               = new System.Windows.Forms.GroupBox();
     this.m_btOk                  = new System.Windows.Forms.Button();
     this.m_btCancelar            = new System.Windows.Forms.Button();
     this.m_gbFields              = new System.Windows.Forms.GroupBox();
     this.m_tbEndereco            = new mdlComponentesGraficos.TextBox();
     this.m_tbCEP                 = new mdlComponentesGraficos.TextBox();
     this.m_lCEP                  = new System.Windows.Forms.Label();
     this.m_cbEstado              = new mdlComponentesGraficos.ComboBox();
     this.m_lEstado               = new System.Windows.Forms.Label();
     this.m_tbCidade              = new mdlComponentesGraficos.TextBox();
     this.m_lCidade               = new System.Windows.Forms.Label();
     this.m_tbEmailDespachante    = new mdlComponentesGraficos.TextBox();
     this.m_lEmail                = new System.Windows.Forms.Label();
     this.m_tbTelefoneDespachante = new mdlComponentesGraficos.TextBox();
     this.m_lTelefone             = new System.Windows.Forms.Label();
     this.m_tbNomeDespachante     = new mdlComponentesGraficos.TextBox();
     this.m_lNome                 = new System.Windows.Forms.Label();
     this.m_lEndereco             = new System.Windows.Forms.Label();
     this.m_ttCadastroDespachante = new System.Windows.Forms.ToolTip(this.components);
     this.m_gbFrame.SuspendLayout();
     this.m_gbFields.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbFrame
     //
     this.m_gbFrame.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbFrame.Controls.Add(this.m_btOk);
     this.m_gbFrame.Controls.Add(this.m_btCancelar);
     this.m_gbFrame.Controls.Add(this.m_gbFields);
     this.m_gbFrame.Location = new System.Drawing.Point(2, 0);
     this.m_gbFrame.Name     = "m_gbFrame";
     this.m_gbFrame.Size     = new System.Drawing.Size(288, 217);
     this.m_gbFrame.TabIndex = 0;
     this.m_gbFrame.TabStop  = false;
     //
     // m_btOk
     //
     this.m_btOk.Anchor      = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_btOk.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btOk.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btOk.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btOk.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btOk.Image       = ((System.Drawing.Image)(resources.GetObject("m_btOk.Image")));
     this.m_btOk.Location    = new System.Drawing.Point(84, 186);
     this.m_btOk.Name        = "m_btOk";
     this.m_btOk.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btOk.Size        = new System.Drawing.Size(57, 25);
     this.m_btOk.TabIndex    = 1;
     this.m_ttCadastroDespachante.SetToolTip(this.m_btOk, "Confirmar");
     this.m_btOk.Click += new System.EventHandler(this.m_btOk_Click);
     //
     // m_btCancelar
     //
     this.m_btCancelar.Anchor      = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_btCancelar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btCancelar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btCancelar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btCancelar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btCancelar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btCancelar.Image")));
     this.m_btCancelar.Location    = new System.Drawing.Point(148, 186);
     this.m_btCancelar.Name        = "m_btCancelar";
     this.m_btCancelar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btCancelar.Size        = new System.Drawing.Size(57, 25);
     this.m_btCancelar.TabIndex    = 2;
     this.m_ttCadastroDespachante.SetToolTip(this.m_btCancelar, "Cancelar");
     this.m_btCancelar.Click += new System.EventHandler(this.m_btCancelar_Click);
     //
     // m_gbFields
     //
     this.m_gbFields.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbFields.Controls.Add(this.m_tbEndereco);
     this.m_gbFields.Controls.Add(this.m_tbCEP);
     this.m_gbFields.Controls.Add(this.m_lCEP);
     this.m_gbFields.Controls.Add(this.m_cbEstado);
     this.m_gbFields.Controls.Add(this.m_lEstado);
     this.m_gbFields.Controls.Add(this.m_tbCidade);
     this.m_gbFields.Controls.Add(this.m_lCidade);
     this.m_gbFields.Controls.Add(this.m_tbEmailDespachante);
     this.m_gbFields.Controls.Add(this.m_lEmail);
     this.m_gbFields.Controls.Add(this.m_tbTelefoneDespachante);
     this.m_gbFields.Controls.Add(this.m_lTelefone);
     this.m_gbFields.Controls.Add(this.m_tbNomeDespachante);
     this.m_gbFields.Controls.Add(this.m_lNome);
     this.m_gbFields.Controls.Add(this.m_lEndereco);
     this.m_gbFields.Font     = new System.Drawing.Font("Arial", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_gbFields.Location = new System.Drawing.Point(8, 8);
     this.m_gbFields.Name     = "m_gbFields";
     this.m_gbFields.Size     = new System.Drawing.Size(272, 173);
     this.m_gbFields.TabIndex = 0;
     this.m_gbFields.TabStop  = false;
     this.m_gbFields.Text     = "Cadastro / Edição";
     //
     // m_tbEndereco
     //
     this.m_tbEndereco.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_tbEndereco.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_tbEndereco.Location = new System.Drawing.Point(65, 47);
     this.m_tbEndereco.Name     = "m_tbEndereco";
     this.m_tbEndereco.Size     = new System.Drawing.Size(199, 20);
     this.m_tbEndereco.TabIndex = 2;
     this.m_tbEndereco.Text     = "";
     //
     // m_tbCEP
     //
     this.m_tbCEP.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_tbCEP.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_tbCEP.Location = new System.Drawing.Point(144, 95);
     this.m_tbCEP.Mask     = true;
     this.m_tbCEP.MaskAutomaticSpecialCharacters = true;
     this.m_tbCEP.MaskText = "NNNNN-NNN";
     this.m_tbCEP.Name     = "m_tbCEP";
     this.m_tbCEP.Size     = new System.Drawing.Size(58, 20);
     this.m_tbCEP.TabIndex = 5;
     this.m_tbCEP.Text     = "";
     //
     // m_lCEP
     //
     this.m_lCEP.Anchor    = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_lCEP.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lCEP.Location  = new System.Drawing.Point(109, 97);
     this.m_lCEP.Name      = "m_lCEP";
     this.m_lCEP.Size      = new System.Drawing.Size(31, 16);
     this.m_lCEP.TabIndex  = 0;
     this.m_lCEP.Text      = "CEP:";
     this.m_lCEP.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_cbEstado
     //
     this.m_cbEstado.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_cbEstado.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_cbEstado.Location = new System.Drawing.Point(65, 94);
     this.m_cbEstado.Name     = "m_cbEstado";
     this.m_cbEstado.Size     = new System.Drawing.Size(37, 22);
     this.m_cbEstado.TabIndex = 4;
     this.m_ttCadastroDespachante.SetToolTip(this.m_cbEstado, "Selecione o estado");
     //
     // m_lEstado
     //
     this.m_lEstado.Anchor    = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_lEstado.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lEstado.Location  = new System.Drawing.Point(8, 97);
     this.m_lEstado.Name      = "m_lEstado";
     this.m_lEstado.Size      = new System.Drawing.Size(43, 16);
     this.m_lEstado.TabIndex  = 0;
     this.m_lEstado.Text      = "Estado:";
     this.m_lEstado.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_tbCidade
     //
     this.m_tbCidade.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_tbCidade.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_tbCidade.Location = new System.Drawing.Point(65, 71);
     this.m_tbCidade.Name     = "m_tbCidade";
     this.m_tbCidade.Size     = new System.Drawing.Size(199, 20);
     this.m_tbCidade.TabIndex = 3;
     this.m_tbCidade.Text     = "";
     //
     // m_lCidade
     //
     this.m_lCidade.Anchor    = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_lCidade.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lCidade.Location  = new System.Drawing.Point(8, 73);
     this.m_lCidade.Name      = "m_lCidade";
     this.m_lCidade.Size      = new System.Drawing.Size(43, 16);
     this.m_lCidade.TabIndex  = 0;
     this.m_lCidade.Text      = "Cidade:";
     this.m_lCidade.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_tbEmailDespachante
     //
     this.m_tbEmailDespachante.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_tbEmailDespachante.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_tbEmailDespachante.Location = new System.Drawing.Point(65, 143);
     this.m_tbEmailDespachante.Name     = "m_tbEmailDespachante";
     this.m_tbEmailDespachante.Size     = new System.Drawing.Size(199, 20);
     this.m_tbEmailDespachante.TabIndex = 7;
     this.m_tbEmailDespachante.Text     = "";
     //
     // m_lEmail
     //
     this.m_lEmail.Anchor    = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_lEmail.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lEmail.Location  = new System.Drawing.Point(8, 145);
     this.m_lEmail.Name      = "m_lEmail";
     this.m_lEmail.Size      = new System.Drawing.Size(39, 16);
     this.m_lEmail.TabIndex  = 0;
     this.m_lEmail.Text      = "E-mail:";
     this.m_lEmail.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_tbTelefoneDespachante
     //
     this.m_tbTelefoneDespachante.Anchor   = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_tbTelefoneDespachante.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_tbTelefoneDespachante.Location = new System.Drawing.Point(65, 119);
     this.m_tbTelefoneDespachante.Name     = "m_tbTelefoneDespachante";
     this.m_tbTelefoneDespachante.Size     = new System.Drawing.Size(199, 20);
     this.m_tbTelefoneDespachante.TabIndex = 6;
     this.m_tbTelefoneDespachante.Text     = "";
     //
     // m_lTelefone
     //
     this.m_lTelefone.Anchor    = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_lTelefone.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lTelefone.Location  = new System.Drawing.Point(8, 121);
     this.m_lTelefone.Name      = "m_lTelefone";
     this.m_lTelefone.Size      = new System.Drawing.Size(51, 16);
     this.m_lTelefone.TabIndex  = 0;
     this.m_lTelefone.Text      = "Telefone:";
     this.m_lTelefone.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_tbNomeDespachante
     //
     this.m_tbNomeDespachante.Anchor   = System.Windows.Forms.AnchorStyles.Top;
     this.m_tbNomeDespachante.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_tbNomeDespachante.Location = new System.Drawing.Point(48, 21);
     this.m_tbNomeDespachante.Name     = "m_tbNomeDespachante";
     this.m_tbNomeDespachante.Size     = new System.Drawing.Size(216, 20);
     this.m_tbNomeDespachante.TabIndex = 1;
     this.m_tbNomeDespachante.Text     = "";
     //
     // m_lNome
     //
     this.m_lNome.Anchor    = System.Windows.Forms.AnchorStyles.Top;
     this.m_lNome.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lNome.Location  = new System.Drawing.Point(8, 23);
     this.m_lNome.Name      = "m_lNome";
     this.m_lNome.Size      = new System.Drawing.Size(38, 16);
     this.m_lNome.TabIndex  = 0;
     this.m_lNome.Text      = "Nome:";
     this.m_lNome.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_lEndereco
     //
     this.m_lEndereco.Anchor    = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_lEndereco.Font      = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lEndereco.Location  = new System.Drawing.Point(8, 49);
     this.m_lEndereco.Name      = "m_lEndereco";
     this.m_lEndereco.Size      = new System.Drawing.Size(56, 16);
     this.m_lEndereco.TabIndex  = 7;
     this.m_lEndereco.Text      = "Endereço:";
     this.m_lEndereco.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_ttCadastroDespachante
     //
     this.m_ttCadastroDespachante.AutomaticDelay = 100;
     this.m_ttCadastroDespachante.AutoPopDelay   = 5000;
     this.m_ttCadastroDespachante.InitialDelay   = 100;
     this.m_ttCadastroDespachante.ReshowDelay    = 20;
     //
     // frmFCadastroDespachante
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(292, 219);
     this.Controls.Add(this.m_gbFrame);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFCadastroDespachante";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Despachantes";
     this.Load           += new System.EventHandler(this.frmFCadastroDespachante_Load);
     this.m_gbFrame.ResumeLayout(false);
     this.m_gbFields.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #23
0
 /// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFPaisIdioma));
     this.m_gbFrame              = new System.Windows.Forms.GroupBox();
     this.m_btOk                 = new System.Windows.Forms.Button();
     this.m_btCancelar           = new System.Windows.Forms.Button();
     this.m_btTrocarCor          = new System.Windows.Forms.Button();
     this.m_gbPaisIdiomaEditar   = new System.Windows.Forms.GroupBox();
     this.m_ctbEditar            = new mdlComponentesGraficos.TextBox();
     this.m_ctbIdioma            = new mdlComponentesGraficos.TextBox();
     this.m_cbPais               = new mdlComponentesGraficos.ComboBox();
     this.m_lEditar              = new System.Windows.Forms.Label();
     this.m_lIdioma              = new System.Windows.Forms.Label();
     this.m_lPais                = new System.Windows.Forms.Label();
     this.m_ttDicaFrmFPaisIdioma = new System.Windows.Forms.ToolTip(this.components);
     this.m_gbFrame.SuspendLayout();
     this.m_gbPaisIdiomaEditar.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbFrame
     //
     this.m_gbFrame.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbFrame.Controls.Add(this.m_btOk);
     this.m_gbFrame.Controls.Add(this.m_btCancelar);
     this.m_gbFrame.Controls.Add(this.m_btTrocarCor);
     this.m_gbFrame.Controls.Add(this.m_gbPaisIdiomaEditar);
     this.m_gbFrame.Location = new System.Drawing.Point(2, 0);
     this.m_gbFrame.Name     = "m_gbFrame";
     this.m_gbFrame.Size     = new System.Drawing.Size(246, 161);
     this.m_gbFrame.TabIndex = 0;
     this.m_gbFrame.TabStop  = false;
     //
     // m_btOk
     //
     this.m_btOk.Anchor      = System.Windows.Forms.AnchorStyles.None;
     this.m_btOk.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btOk.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btOk.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btOk.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btOk.Image       = ((System.Drawing.Image)(resources.GetObject("m_btOk.Image")));
     this.m_btOk.Location    = new System.Drawing.Point(63, 128);
     this.m_btOk.Name        = "m_btOk";
     this.m_btOk.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btOk.Size        = new System.Drawing.Size(57, 27);
     this.m_btOk.TabIndex    = 1;
     this.m_btOk.Click      += new System.EventHandler(this.m_btOk_Click);
     //
     // m_btCancelar
     //
     this.m_btCancelar.Anchor      = System.Windows.Forms.AnchorStyles.None;
     this.m_btCancelar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btCancelar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btCancelar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btCancelar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btCancelar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btCancelar.Image")));
     this.m_btCancelar.Location    = new System.Drawing.Point(127, 128);
     this.m_btCancelar.Name        = "m_btCancelar";
     this.m_btCancelar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btCancelar.Size        = new System.Drawing.Size(57, 27);
     this.m_btCancelar.TabIndex    = 2;
     this.m_btCancelar.Click      += new System.EventHandler(this.m_btCancelar_Click);
     //
     // m_btTrocarCor
     //
     this.m_btTrocarCor.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(64)), ((System.Byte)(0)));
     this.m_btTrocarCor.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.m_btTrocarCor.Location  = new System.Drawing.Point(3, 9);
     this.m_btTrocarCor.Name      = "m_btTrocarCor";
     this.m_btTrocarCor.Size      = new System.Drawing.Size(4, 4);
     this.m_btTrocarCor.TabIndex  = 3;
     this.m_ttDicaFrmFPaisIdioma.SetToolTip(this.m_btTrocarCor, "Cor");
     this.m_btTrocarCor.Click += new System.EventHandler(this.m_btTrocarCor_Click);
     //
     // m_gbPaisIdiomaEditar
     //
     this.m_gbPaisIdiomaEditar.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                               | System.Windows.Forms.AnchorStyles.Left)
                                                                              | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbPaisIdiomaEditar.Controls.Add(this.m_ctbEditar);
     this.m_gbPaisIdiomaEditar.Controls.Add(this.m_ctbIdioma);
     this.m_gbPaisIdiomaEditar.Controls.Add(this.m_cbPais);
     this.m_gbPaisIdiomaEditar.Controls.Add(this.m_lEditar);
     this.m_gbPaisIdiomaEditar.Controls.Add(this.m_lIdioma);
     this.m_gbPaisIdiomaEditar.Controls.Add(this.m_lPais);
     this.m_gbPaisIdiomaEditar.Location = new System.Drawing.Point(8, 8);
     this.m_gbPaisIdiomaEditar.Name     = "m_gbPaisIdiomaEditar";
     this.m_gbPaisIdiomaEditar.Size     = new System.Drawing.Size(230, 116);
     this.m_gbPaisIdiomaEditar.TabIndex = 0;
     this.m_gbPaisIdiomaEditar.TabStop  = false;
     //
     // m_ctbEditar
     //
     this.m_ctbEditar.Location = new System.Drawing.Point(76, 85);
     this.m_ctbEditar.Name     = "m_ctbEditar";
     this.m_ctbEditar.Size     = new System.Drawing.Size(141, 20);
     this.m_ctbEditar.TabIndex = 2;
     this.m_ctbEditar.Text     = "";
     this.m_ttDicaFrmFPaisIdioma.SetToolTip(this.m_ctbEditar, "Edite aqui o nome do país no idioma selecionado");
     this.m_ctbEditar.TextChanged += new System.EventHandler(this.m_ctbEditar_TextChanged);
     //
     // m_ctbIdioma
     //
     this.m_ctbIdioma.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.m_ctbIdioma.BackColor   = System.Drawing.SystemColors.Window;
     this.m_ctbIdioma.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.m_ctbIdioma.Enabled     = false;
     this.m_ctbIdioma.ForeColor   = System.Drawing.SystemColors.WindowText;
     this.m_ctbIdioma.Location    = new System.Drawing.Point(76, 49);
     this.m_ctbIdioma.Name        = "m_ctbIdioma";
     this.m_ctbIdioma.Size        = new System.Drawing.Size(141, 20);
     this.m_ctbIdioma.TabIndex    = 0;
     this.m_ctbIdioma.Text        = "";
     this.m_ttDicaFrmFPaisIdioma.SetToolTip(this.m_ctbIdioma, "Idioma atual");
     //
     // m_cbPais
     //
     this.m_cbPais.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.m_cbPais.Location = new System.Drawing.Point(76, 15);
     this.m_cbPais.Name     = "m_cbPais";
     this.m_cbPais.Size     = new System.Drawing.Size(141, 21);
     this.m_cbPais.TabIndex = 1;
     this.m_ttDicaFrmFPaisIdioma.SetToolTip(this.m_cbPais, "Selecione o país desejado");
     this.m_cbPais.SelectedIndexChanged += new System.EventHandler(this.m_cbPais_SelectedIndexChanged);
     //
     // m_lEditar
     //
     this.m_lEditar.Font     = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lEditar.Location = new System.Drawing.Point(14, 85);
     this.m_lEditar.Name     = "m_lEditar";
     this.m_lEditar.Size     = new System.Drawing.Size(50, 15);
     this.m_lEditar.TabIndex = 0;
     this.m_lEditar.Text     = "Editar:";
     //
     // m_lIdioma
     //
     this.m_lIdioma.Font     = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lIdioma.Location = new System.Drawing.Point(14, 51);
     this.m_lIdioma.Name     = "m_lIdioma";
     this.m_lIdioma.Size     = new System.Drawing.Size(50, 15);
     this.m_lIdioma.TabIndex = 0;
     this.m_lIdioma.Text     = "Idioma:";
     //
     // m_lPais
     //
     this.m_lPais.Font     = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lPais.Location = new System.Drawing.Point(14, 17);
     this.m_lPais.Name     = "m_lPais";
     this.m_lPais.Size     = new System.Drawing.Size(50, 15);
     this.m_lPais.TabIndex = 0;
     this.m_lPais.Text     = "País:";
     //
     // m_ttDicaFrmFPaisIdioma
     //
     this.m_ttDicaFrmFPaisIdioma.AutomaticDelay = 100;
     this.m_ttDicaFrmFPaisIdioma.AutoPopDelay   = 5000;
     this.m_ttDicaFrmFPaisIdioma.InitialDelay   = 100;
     this.m_ttDicaFrmFPaisIdioma.ReshowDelay    = 20;
     //
     // frmFPaisIdioma
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(250, 163);
     this.Controls.Add(this.m_gbFrame);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFPaisIdioma";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "País";
     this.Load           += new System.EventHandler(this.frmFPaisIdiomas_Load);
     this.m_gbFrame.ResumeLayout(false);
     this.m_gbPaisIdiomaEditar.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #24
0
 /// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFCotacoes));
     this.m_ttCotacao         = new System.Windows.Forms.ToolTip(this.components);
     this.m_btTrocarCor       = new System.Windows.Forms.Button();
     this.m_btExcluir         = new System.Windows.Forms.Button();
     this.m_btEditar          = new System.Windows.Forms.Button();
     this.m_btNovo            = new System.Windows.Forms.Button();
     this.m_gbFrame           = new System.Windows.Forms.GroupBox();
     this.m_cbTipoView        = new mdlComponentesGraficos.ComboBox();
     this.m_lvCotacoes        = new mdlComponentesGraficos.ListView();
     this.m_chFirst           = new System.Windows.Forms.ColumnHeader();
     this.m_chSecond          = new System.Windows.Forms.ColumnHeader();
     this.m_ilCotacaoGrandes  = new System.Windows.Forms.ImageList(this.components);
     this.m_ilCotacaoPequenos = new System.Windows.Forms.ImageList(this.components);
     this.m_gbFrame.SuspendLayout();
     this.SuspendLayout();
     //
     // m_ttCotacao
     //
     this.m_ttCotacao.AutomaticDelay = 100;
     this.m_ttCotacao.AutoPopDelay   = 5000;
     this.m_ttCotacao.InitialDelay   = 100;
     this.m_ttCotacao.ReshowDelay    = 20;
     //
     // m_btTrocarCor
     //
     this.m_btTrocarCor.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(64)), ((System.Byte)(0)));
     this.m_btTrocarCor.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.m_btTrocarCor.Location  = new System.Drawing.Point(3, 12);
     this.m_btTrocarCor.Name      = "m_btTrocarCor";
     this.m_btTrocarCor.Size      = new System.Drawing.Size(4, 4);
     this.m_btTrocarCor.TabIndex  = 6;
     this.m_ttCotacao.SetToolTip(this.m_btTrocarCor, "Cor");
     this.m_btTrocarCor.Click += new System.EventHandler(this.m_btTrocarCor_Click);
     //
     // m_btExcluir
     //
     this.m_btExcluir.Anchor      = System.Windows.Forms.AnchorStyles.Top;
     this.m_btExcluir.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btExcluir.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btExcluir.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btExcluir.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btExcluir.Image       = ((System.Drawing.Image)(resources.GetObject("m_btExcluir.Image")));
     this.m_btExcluir.Location    = new System.Drawing.Point(494, 16);
     this.m_btExcluir.Name        = "m_btExcluir";
     this.m_btExcluir.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btExcluir.Size        = new System.Drawing.Size(25, 25);
     this.m_btExcluir.TabIndex    = 4;
     this.m_btExcluir.TextAlign   = System.Drawing.ContentAlignment.BottomCenter;
     this.m_ttCotacao.SetToolTip(this.m_btExcluir, "Excluir");
     this.m_btExcluir.Click += new System.EventHandler(this.m_btExcluir_Click);
     //
     // m_btEditar
     //
     this.m_btEditar.Anchor      = System.Windows.Forms.AnchorStyles.Top;
     this.m_btEditar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btEditar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btEditar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btEditar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btEditar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btEditar.Image")));
     this.m_btEditar.Location    = new System.Drawing.Point(462, 16);
     this.m_btEditar.Name        = "m_btEditar";
     this.m_btEditar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btEditar.Size        = new System.Drawing.Size(25, 25);
     this.m_btEditar.TabIndex    = 3;
     this.m_btEditar.TextAlign   = System.Drawing.ContentAlignment.BottomCenter;
     this.m_ttCotacao.SetToolTip(this.m_btEditar, "Editar");
     this.m_btEditar.Click += new System.EventHandler(this.m_btEditar_Click);
     //
     // m_btNovo
     //
     this.m_btNovo.Anchor      = System.Windows.Forms.AnchorStyles.Top;
     this.m_btNovo.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btNovo.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btNovo.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btNovo.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btNovo.Image       = ((System.Drawing.Image)(resources.GetObject("m_btNovo.Image")));
     this.m_btNovo.Location    = new System.Drawing.Point(430, 16);
     this.m_btNovo.Name        = "m_btNovo";
     this.m_btNovo.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btNovo.Size        = new System.Drawing.Size(25, 25);
     this.m_btNovo.TabIndex    = 2;
     this.m_btNovo.TextAlign   = System.Drawing.ContentAlignment.BottomCenter;
     this.m_ttCotacao.SetToolTip(this.m_btNovo, "Nova");
     this.m_btNovo.Click += new System.EventHandler(this.m_btNovo_Click);
     //
     // m_gbFrame
     //
     this.m_gbFrame.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbFrame.Controls.Add(this.m_cbTipoView);
     this.m_gbFrame.Controls.Add(this.m_btTrocarCor);
     this.m_gbFrame.Controls.Add(this.m_lvCotacoes);
     this.m_gbFrame.Controls.Add(this.m_btExcluir);
     this.m_gbFrame.Controls.Add(this.m_btEditar);
     this.m_gbFrame.Controls.Add(this.m_btNovo);
     this.m_gbFrame.Font     = new System.Drawing.Font("Arial", 11.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_gbFrame.Location = new System.Drawing.Point(73, -1);
     this.m_gbFrame.Name     = "m_gbFrame";
     this.m_gbFrame.Size     = new System.Drawing.Size(949, 567);
     this.m_gbFrame.TabIndex = 1;
     this.m_gbFrame.TabStop  = false;
     this.m_gbFrame.Text     = "Biblioteca de Cotações";
     //
     // m_cbTipoView
     //
     this.m_cbTipoView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.m_cbTipoView.Font   = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_cbTipoView.Items.AddRange(new object[] {
         "Ícones Grandes",
         "Detalhes",
         "Ícones Pequenos",
         "Lista"
     });
     this.m_cbTipoView.Location     = new System.Drawing.Point(777, 27);
     this.m_cbTipoView.Name         = "m_cbTipoView";
     this.m_cbTipoView.Size         = new System.Drawing.Size(164, 22);
     this.m_cbTipoView.TabIndex     = 5;
     this.m_cbTipoView.TextChanged += new System.EventHandler(this.m_cbTipoView_TextChanged);
     //
     // m_lvCotacoes
     //
     this.m_lvCotacoes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.m_lvCotacoes.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.m_lvCotacoes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.m_chFirst,
         this.m_chSecond
     });
     this.m_lvCotacoes.Font           = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lvCotacoes.FullRowSelect  = true;
     this.m_lvCotacoes.HideSelection  = false;
     this.m_lvCotacoes.LargeImageList = this.m_ilCotacaoGrandes;
     this.m_lvCotacoes.Location       = new System.Drawing.Point(8, 54);
     this.m_lvCotacoes.Name           = "m_lvCotacoes";
     this.m_lvCotacoes.Size           = new System.Drawing.Size(933, 505);
     this.m_lvCotacoes.SmallImageList = this.m_ilCotacaoPequenos;
     this.m_lvCotacoes.StateImageList = this.m_ilCotacaoPequenos;
     this.m_lvCotacoes.TabIndex       = 1;
     this.m_lvCotacoes.ItemActivate  += new System.EventHandler(this.m_lvCotacoes_ItemActivate);
     this.m_lvCotacoes.Click         += new System.EventHandler(this.m_lvCotacoes_Click);
     this.m_lvCotacoes.ColumnClick   += new System.Windows.Forms.ColumnClickEventHandler(this.m_lvCotacoes_ColumnClick);
     //
     // m_chFirst
     //
     this.m_chFirst.Text  = "Número da Cotação";
     this.m_chFirst.Width = 200;
     //
     // m_chSecond
     //
     this.m_chSecond.Text  = "Nome do Importador";
     this.m_chSecond.Width = 680;
     //
     // m_ilCotacaoGrandes
     //
     this.m_ilCotacaoGrandes.ImageSize        = new System.Drawing.Size(32, 32);
     this.m_ilCotacaoGrandes.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_ilCotacaoGrandes.ImageStream")));
     this.m_ilCotacaoGrandes.TransparentColor = System.Drawing.Color.Transparent;
     //
     // m_ilCotacaoPequenos
     //
     this.m_ilCotacaoPequenos.ImageSize        = new System.Drawing.Size(16, 16);
     this.m_ilCotacaoPequenos.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_ilCotacaoPequenos.ImageStream")));
     this.m_ilCotacaoPequenos.TransparentColor = System.Drawing.Color.Transparent;
     //
     // frmFCotacoes
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1024, 568);
     this.Controls.Add(this.m_gbFrame);
     this.Font            = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFCotacoes";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Text            = "Cotacoes";
     this.Load           += new System.EventHandler(this.frmFCotacoes_Load);
     this.m_gbFrame.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #25
0
 /// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFAgentesCargaEdicao));
     this.m_gbGeral       = new System.Windows.Forms.GroupBox();
     this.m_gbAgenteCarga = new System.Windows.Forms.GroupBox();
     this.m_cbEstado      = new mdlComponentesGraficos.ComboBox();
     this.m_lbEstado      = new System.Windows.Forms.Label();
     this.m_txtSite       = new mdlComponentesGraficos.TextBox();
     this.m_txtEmail      = new mdlComponentesGraficos.TextBox();
     this.m_lbSite        = new System.Windows.Forms.Label();
     this.m_lbEmail       = new System.Windows.Forms.Label();
     this.m_txtBairro     = new mdlComponentesGraficos.TextBox();
     this.m_lbBairro      = new System.Windows.Forms.Label();
     this.m_txtCep        = new mdlComponentesGraficos.TextBox();
     this.m_lbCep         = new System.Windows.Forms.Label();
     this.m_txtFax        = new mdlComponentesGraficos.TextBox();
     this.m_txtTelefone   = new mdlComponentesGraficos.TextBox();
     this.m_lbFax         = new System.Windows.Forms.Label();
     this.m_lbTelefone    = new System.Windows.Forms.Label();
     this.m_txtCidade     = new mdlComponentesGraficos.TextBox();
     this.m_txtEndereco   = new mdlComponentesGraficos.TextBox();
     this.m_txtNome       = new mdlComponentesGraficos.TextBox();
     this.m_lbCidade      = new System.Windows.Forms.Label();
     this.m_lbEndereco    = new System.Windows.Forms.Label();
     this.m_lbNome        = new System.Windows.Forms.Label();
     this.m_btOk          = new System.Windows.Forms.Button();
     this.m_btCancelar    = new System.Windows.Forms.Button();
     this.m_ttDicas       = new System.Windows.Forms.ToolTip(this.components);
     this.m_gbGeral.SuspendLayout();
     this.m_gbAgenteCarga.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbGeral
     //
     this.m_gbGeral.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbGeral.Controls.Add(this.m_gbAgenteCarga);
     this.m_gbGeral.Controls.Add(this.m_btOk);
     this.m_gbGeral.Controls.Add(this.m_btCancelar);
     this.m_gbGeral.Location = new System.Drawing.Point(3, -2);
     this.m_gbGeral.Name     = "m_gbGeral";
     this.m_gbGeral.Size     = new System.Drawing.Size(345, 296);
     this.m_gbGeral.TabIndex = 0;
     this.m_gbGeral.TabStop  = false;
     //
     // m_gbAgenteCarga
     //
     this.m_gbAgenteCarga.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbAgenteCarga.Controls.Add(this.m_cbEstado);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbEstado);
     this.m_gbAgenteCarga.Controls.Add(this.m_txtSite);
     this.m_gbAgenteCarga.Controls.Add(this.m_txtEmail);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbSite);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbEmail);
     this.m_gbAgenteCarga.Controls.Add(this.m_txtBairro);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbBairro);
     this.m_gbAgenteCarga.Controls.Add(this.m_txtCep);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbCep);
     this.m_gbAgenteCarga.Controls.Add(this.m_txtFax);
     this.m_gbAgenteCarga.Controls.Add(this.m_txtTelefone);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbFax);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbTelefone);
     this.m_gbAgenteCarga.Controls.Add(this.m_txtCidade);
     this.m_gbAgenteCarga.Controls.Add(this.m_txtEndereco);
     this.m_gbAgenteCarga.Controls.Add(this.m_txtNome);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbCidade);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbEndereco);
     this.m_gbAgenteCarga.Controls.Add(this.m_lbNome);
     this.m_gbAgenteCarga.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_gbAgenteCarga.Location = new System.Drawing.Point(6, 6);
     this.m_gbAgenteCarga.Name     = "m_gbAgenteCarga";
     this.m_gbAgenteCarga.Size     = new System.Drawing.Size(334, 258);
     this.m_gbAgenteCarga.TabIndex = 0;
     this.m_gbAgenteCarga.TabStop  = false;
     this.m_gbAgenteCarga.Text     = "Cadastro / Edição";
     //
     // m_cbEstado
     //
     this.m_cbEstado.Location = new System.Drawing.Point(67, 136);
     this.m_cbEstado.Name     = "m_cbEstado";
     this.m_cbEstado.Size     = new System.Drawing.Size(261, 22);
     this.m_cbEstado.TabIndex = 5;
     //
     // m_lbEstado
     //
     this.m_lbEstado.Location  = new System.Drawing.Point(10, 137);
     this.m_lbEstado.Name      = "m_lbEstado";
     this.m_lbEstado.Size      = new System.Drawing.Size(48, 16);
     this.m_lbEstado.TabIndex  = 22;
     this.m_lbEstado.Text      = "Estado:";
     this.m_lbEstado.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtSite
     //
     this.m_txtSite.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtSite.Location = new System.Drawing.Point(67, 184);
     this.m_txtSite.Name     = "m_txtSite";
     this.m_txtSite.Size     = new System.Drawing.Size(259, 20);
     this.m_txtSite.TabIndex = 7;
     this.m_txtSite.Text     = "";
     //
     // m_txtEmail
     //
     this.m_txtEmail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtEmail.Location = new System.Drawing.Point(67, 160);
     this.m_txtEmail.Name     = "m_txtEmail";
     this.m_txtEmail.Size     = new System.Drawing.Size(259, 20);
     this.m_txtEmail.TabIndex = 6;
     this.m_txtEmail.Text     = "";
     //
     // m_lbSite
     //
     this.m_lbSite.Location  = new System.Drawing.Point(9, 184);
     this.m_lbSite.Name      = "m_lbSite";
     this.m_lbSite.Size      = new System.Drawing.Size(32, 16);
     this.m_lbSite.TabIndex  = 19;
     this.m_lbSite.Text      = "Site:";
     this.m_lbSite.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_lbEmail
     //
     this.m_lbEmail.Location  = new System.Drawing.Point(9, 160);
     this.m_lbEmail.Name      = "m_lbEmail";
     this.m_lbEmail.Size      = new System.Drawing.Size(48, 16);
     this.m_lbEmail.TabIndex  = 18;
     this.m_lbEmail.Text      = "E-mail:";
     this.m_lbEmail.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtBairro
     //
     this.m_txtBairro.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtBairro.Location = new System.Drawing.Point(67, 87);
     this.m_txtBairro.Name     = "m_txtBairro";
     this.m_txtBairro.Size     = new System.Drawing.Size(259, 20);
     this.m_txtBairro.TabIndex = 3;
     this.m_txtBairro.Text     = "";
     //
     // m_lbBairro
     //
     this.m_lbBairro.Location  = new System.Drawing.Point(9, 87);
     this.m_lbBairro.Name      = "m_lbBairro";
     this.m_lbBairro.Size      = new System.Drawing.Size(48, 16);
     this.m_lbBairro.TabIndex  = 16;
     this.m_lbBairro.Text      = "Bairro:";
     this.m_lbBairro.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtCep
     //
     this.m_txtCep.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtCep.Location = new System.Drawing.Point(67, 63);
     this.m_txtCep.Mask     = true;
     this.m_txtCep.MaskText = "NNNNN-NNN";
     this.m_txtCep.Name     = "m_txtCep";
     this.m_txtCep.Size     = new System.Drawing.Size(259, 20);
     this.m_txtCep.TabIndex = 2;
     this.m_txtCep.Text     = "";
     //
     // m_lbCep
     //
     this.m_lbCep.Location  = new System.Drawing.Point(9, 63);
     this.m_lbCep.Name      = "m_lbCep";
     this.m_lbCep.Size      = new System.Drawing.Size(48, 16);
     this.m_lbCep.TabIndex  = 14;
     this.m_lbCep.Text      = "CEP:";
     this.m_lbCep.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtFax
     //
     this.m_txtFax.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtFax.Location = new System.Drawing.Point(67, 232);
     this.m_txtFax.Name     = "m_txtFax";
     this.m_txtFax.Size     = new System.Drawing.Size(259, 20);
     this.m_txtFax.TabIndex = 9;
     this.m_txtFax.Text     = "";
     //
     // m_txtTelefone
     //
     this.m_txtTelefone.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtTelefone.Location = new System.Drawing.Point(67, 208);
     this.m_txtTelefone.Name     = "m_txtTelefone";
     this.m_txtTelefone.Size     = new System.Drawing.Size(259, 20);
     this.m_txtTelefone.TabIndex = 8;
     this.m_txtTelefone.Text     = "";
     //
     // m_lbFax
     //
     this.m_lbFax.Location  = new System.Drawing.Point(9, 232);
     this.m_lbFax.Name      = "m_lbFax";
     this.m_lbFax.Size      = new System.Drawing.Size(32, 16);
     this.m_lbFax.TabIndex  = 11;
     this.m_lbFax.Text      = "Fax:";
     this.m_lbFax.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_lbTelefone
     //
     this.m_lbTelefone.Location  = new System.Drawing.Point(9, 208);
     this.m_lbTelefone.Name      = "m_lbTelefone";
     this.m_lbTelefone.Size      = new System.Drawing.Size(56, 16);
     this.m_lbTelefone.TabIndex  = 10;
     this.m_lbTelefone.Text      = "Telefone:";
     this.m_lbTelefone.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_txtCidade
     //
     this.m_txtCidade.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtCidade.Location = new System.Drawing.Point(67, 112);
     this.m_txtCidade.Name     = "m_txtCidade";
     this.m_txtCidade.Size     = new System.Drawing.Size(259, 20);
     this.m_txtCidade.TabIndex = 4;
     this.m_txtCidade.Text     = "";
     //
     // m_txtEndereco
     //
     this.m_txtEndereco.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtEndereco.Location = new System.Drawing.Point(67, 41);
     this.m_txtEndereco.Name     = "m_txtEndereco";
     this.m_txtEndereco.Size     = new System.Drawing.Size(259, 20);
     this.m_txtEndereco.TabIndex = 1;
     this.m_txtEndereco.Text     = "";
     //
     // m_txtNome
     //
     this.m_txtNome.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_txtNome.Location = new System.Drawing.Point(67, 17);
     this.m_txtNome.Name     = "m_txtNome";
     this.m_txtNome.Size     = new System.Drawing.Size(259, 20);
     this.m_txtNome.TabIndex = 0;
     this.m_txtNome.Text     = "";
     //
     // m_lbCidade
     //
     this.m_lbCidade.Location  = new System.Drawing.Point(9, 112);
     this.m_lbCidade.Name      = "m_lbCidade";
     this.m_lbCidade.Size      = new System.Drawing.Size(48, 16);
     this.m_lbCidade.TabIndex  = 2;
     this.m_lbCidade.Text      = "Cidade:";
     this.m_lbCidade.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_lbEndereco
     //
     this.m_lbEndereco.Location  = new System.Drawing.Point(9, 43);
     this.m_lbEndereco.Name      = "m_lbEndereco";
     this.m_lbEndereco.Size      = new System.Drawing.Size(64, 16);
     this.m_lbEndereco.TabIndex  = 1;
     this.m_lbEndereco.Text      = "Endereço:";
     this.m_lbEndereco.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_lbNome
     //
     this.m_lbNome.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(192)), ((System.Byte)(0)), ((System.Byte)(0)));
     this.m_lbNome.Location  = new System.Drawing.Point(9, 21);
     this.m_lbNome.Name      = "m_lbNome";
     this.m_lbNome.Size      = new System.Drawing.Size(40, 14);
     this.m_lbNome.TabIndex  = 0;
     this.m_lbNome.Text      = "Nome:";
     this.m_lbNome.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // m_btOk
     //
     this.m_btOk.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btOk.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btOk.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btOk.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btOk.Image       = ((System.Drawing.Image)(resources.GetObject("m_btOk.Image")));
     this.m_btOk.Location    = new System.Drawing.Point(112, 266);
     this.m_btOk.Name        = "m_btOk";
     this.m_btOk.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btOk.Size        = new System.Drawing.Size(57, 25);
     this.m_btOk.TabIndex    = 1;
     this.m_ttDicas.SetToolTip(this.m_btOk, "Confirmar");
     this.m_btOk.Click += new System.EventHandler(this.m_btOk_Click);
     //
     // m_btCancelar
     //
     this.m_btCancelar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btCancelar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btCancelar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btCancelar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btCancelar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btCancelar.Image")));
     this.m_btCancelar.Location    = new System.Drawing.Point(176, 266);
     this.m_btCancelar.Name        = "m_btCancelar";
     this.m_btCancelar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btCancelar.Size        = new System.Drawing.Size(57, 25);
     this.m_btCancelar.TabIndex    = 2;
     this.m_ttDicas.SetToolTip(this.m_btCancelar, "Cancelar");
     this.m_btCancelar.Click += new System.EventHandler(this.m_btCancelar_Click);
     //
     // m_ttDicas
     //
     this.m_ttDicas.AutomaticDelay = 100;
     this.m_ttDicas.AutoPopDelay   = 5000;
     this.m_ttDicas.InitialDelay   = 100;
     this.m_ttDicas.ReshowDelay    = 20;
     //
     // frmFAgentesCargaEdicao
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(352, 296);
     this.Controls.Add(this.m_gbGeral);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFAgentesCargaEdicao";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Agente de Carga";
     this.Load           += new System.EventHandler(this.frmFAgentesCargaEdicao_Load);
     this.m_gbGeral.ResumeLayout(false);
     this.m_gbAgenteCarga.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #26
0
 /// <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();
     this.m_gbGeral          = new System.Windows.Forms.GroupBox();
     this.m_gbParametros     = new System.Windows.Forms.GroupBox();
     this.m_cbIdioma         = new mdlComponentesGraficos.ComboBox();
     this.m_cbRelatorio      = new mdlComponentesGraficos.ComboBox();
     this.m_lbRelatorio      = new System.Windows.Forms.Label();
     this.m_txtPagina        = new System.Windows.Forms.TextBox();
     this.m_lbIdioma         = new System.Windows.Forms.Label();
     this.m_lbPagina         = new System.Windows.Forms.Label();
     this.m_txtIdCodigo      = new System.Windows.Forms.TextBox();
     this.m_txtIdExportador  = new System.Windows.Forms.TextBox();
     this.m_lbIdCodigo       = new System.Windows.Forms.Label();
     this.m_lbIdExportador   = new System.Windows.Forms.Label();
     this.m_gbRetorno        = new System.Windows.Forms.GroupBox();
     this.m_tvRetorno        = new System.Windows.Forms.TreeView();
     this.m_gbBD             = new System.Windows.Forms.GroupBox();
     this.m_gbConfiguracao   = new System.Windows.Forms.GroupBox();
     this.m_txtPath          = new System.Windows.Forms.TextBox();
     this.m_lbPath           = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.m_txtDataBaseName  = new System.Windows.Forms.TextBox();
     this.m_gbTipoAcesso     = new System.Windows.Forms.GroupBox();
     this.m_txtPortMySql     = new System.Windows.Forms.TextBox();
     this.label2             = new System.Windows.Forms.Label();
     this.m_txtPortSqlServer = new System.Windows.Forms.TextBox();
     this.m_lbPortSqlServer  = new System.Windows.Forms.Label();
     this.m_rbSqlServer      = new System.Windows.Forms.RadioButton();
     this.m_btReset          = new System.Windows.Forms.Button();
     this.m_rbMySql          = new System.Windows.Forms.RadioButton();
     this.m_rbJet40          = new System.Windows.Forms.RadioButton();
     this.m_gbLogin          = new System.Windows.Forms.GroupBox();
     this.m_txtHost          = new System.Windows.Forms.TextBox();
     this.m_lbHost           = new System.Windows.Forms.Label();
     this.m_txtPassword      = new System.Windows.Forms.TextBox();
     this.m_txtUser          = new System.Windows.Forms.TextBox();
     this.m_lbPassword       = new System.Windows.Forms.Label();
     this.m_lbUser           = new System.Windows.Forms.Label();
     this.m_gbMoeda          = new System.Windows.Forms.GroupBox();
     this.m_btShowDialog     = new System.Windows.Forms.Button();
     this.m_btCarregaDados   = new System.Windows.Forms.Button();
     this.m_ilBandeiras      = new System.Windows.Forms.ImageList(this.components);
     this.m_gbGeral.SuspendLayout();
     this.m_gbParametros.SuspendLayout();
     this.m_gbRetorno.SuspendLayout();
     this.m_gbBD.SuspendLayout();
     this.m_gbConfiguracao.SuspendLayout();
     this.m_gbTipoAcesso.SuspendLayout();
     this.m_gbLogin.SuspendLayout();
     this.m_gbMoeda.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbGeral
     //
     this.m_gbGeral.Controls.Add(this.m_gbParametros);
     this.m_gbGeral.Controls.Add(this.m_gbRetorno);
     this.m_gbGeral.Controls.Add(this.m_gbBD);
     this.m_gbGeral.Controls.Add(this.m_gbMoeda);
     this.m_gbGeral.Location = new System.Drawing.Point(5, -1);
     this.m_gbGeral.Name     = "m_gbGeral";
     this.m_gbGeral.Size     = new System.Drawing.Size(867, 633);
     this.m_gbGeral.TabIndex = 2;
     this.m_gbGeral.TabStop  = false;
     //
     // m_gbParametros
     //
     this.m_gbParametros.Controls.Add(this.m_cbIdioma);
     this.m_gbParametros.Controls.Add(this.m_cbRelatorio);
     this.m_gbParametros.Controls.Add(this.m_lbRelatorio);
     this.m_gbParametros.Controls.Add(this.m_txtPagina);
     this.m_gbParametros.Controls.Add(this.m_lbIdioma);
     this.m_gbParametros.Controls.Add(this.m_lbPagina);
     this.m_gbParametros.Controls.Add(this.m_txtIdCodigo);
     this.m_gbParametros.Controls.Add(this.m_txtIdExportador);
     this.m_gbParametros.Controls.Add(this.m_lbIdCodigo);
     this.m_gbParametros.Controls.Add(this.m_lbIdExportador);
     this.m_gbParametros.Location = new System.Drawing.Point(8, 248);
     this.m_gbParametros.Name     = "m_gbParametros";
     this.m_gbParametros.Size     = new System.Drawing.Size(848, 80);
     this.m_gbParametros.TabIndex = 3;
     this.m_gbParametros.TabStop  = false;
     this.m_gbParametros.Text     = "Parametros";
     //
     // m_cbIdioma
     //
     this.m_cbIdioma.ItemHeight = 13;
     this.m_cbIdioma.Location   = new System.Drawing.Point(240, 48);
     this.m_cbIdioma.Name       = "m_cbIdioma";
     this.m_cbIdioma.Size       = new System.Drawing.Size(120, 21);
     this.m_cbIdioma.TabIndex   = 14;
     //
     // m_cbRelatorio
     //
     this.m_cbRelatorio.ItemHeight = 13;
     this.m_cbRelatorio.Location   = new System.Drawing.Point(445, 20);
     this.m_cbRelatorio.Name       = "m_cbRelatorio";
     this.m_cbRelatorio.Size       = new System.Drawing.Size(195, 21);
     this.m_cbRelatorio.TabIndex   = 13;
     //
     // m_lbRelatorio
     //
     this.m_lbRelatorio.Location = new System.Drawing.Point(384, 22);
     this.m_lbRelatorio.Name     = "m_lbRelatorio";
     this.m_lbRelatorio.Size     = new System.Drawing.Size(88, 16);
     this.m_lbRelatorio.TabIndex = 12;
     this.m_lbRelatorio.Text     = "Relatorio";
     //
     // m_txtPagina
     //
     this.m_txtPagina.Location  = new System.Drawing.Point(240, 23);
     this.m_txtPagina.Name      = "m_txtPagina";
     this.m_txtPagina.Size      = new System.Drawing.Size(120, 20);
     this.m_txtPagina.TabIndex  = 10;
     this.m_txtPagina.Text      = "1";
     this.m_txtPagina.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // m_lbIdioma
     //
     this.m_lbIdioma.Location = new System.Drawing.Point(193, 46);
     this.m_lbIdioma.Name     = "m_lbIdioma";
     this.m_lbIdioma.Size     = new System.Drawing.Size(88, 16);
     this.m_lbIdioma.TabIndex = 9;
     this.m_lbIdioma.Text     = "Idioma";
     //
     // m_lbPagina
     //
     this.m_lbPagina.Location = new System.Drawing.Point(193, 27);
     this.m_lbPagina.Name     = "m_lbPagina";
     this.m_lbPagina.Size     = new System.Drawing.Size(75, 16);
     this.m_lbPagina.TabIndex = 8;
     this.m_lbPagina.Text     = "Pagina";
     //
     // m_txtIdCodigo
     //
     this.m_txtIdCodigo.Location  = new System.Drawing.Point(88, 47);
     this.m_txtIdCodigo.Name      = "m_txtIdCodigo";
     this.m_txtIdCodigo.Size      = new System.Drawing.Size(91, 20);
     this.m_txtIdCodigo.TabIndex  = 7;
     this.m_txtIdCodigo.Text      = "158";
     this.m_txtIdCodigo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // m_txtIdExportador
     //
     this.m_txtIdExportador.Location  = new System.Drawing.Point(87, 23);
     this.m_txtIdExportador.Name      = "m_txtIdExportador";
     this.m_txtIdExportador.Size      = new System.Drawing.Size(91, 20);
     this.m_txtIdExportador.TabIndex  = 6;
     this.m_txtIdExportador.Text      = "1";
     this.m_txtIdExportador.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // m_lbIdCodigo
     //
     this.m_lbIdCodigo.Location = new System.Drawing.Point(13, 46);
     this.m_lbIdCodigo.Name     = "m_lbIdCodigo";
     this.m_lbIdCodigo.Size     = new System.Drawing.Size(88, 16);
     this.m_lbIdCodigo.TabIndex = 5;
     this.m_lbIdCodigo.Text     = "idCodigo";
     //
     // m_lbIdExportador
     //
     this.m_lbIdExportador.Location = new System.Drawing.Point(14, 27);
     this.m_lbIdExportador.Name     = "m_lbIdExportador";
     this.m_lbIdExportador.Size     = new System.Drawing.Size(75, 16);
     this.m_lbIdExportador.TabIndex = 4;
     this.m_lbIdExportador.Text     = "idExportador";
     //
     // m_gbRetorno
     //
     this.m_gbRetorno.Controls.Add(this.m_tvRetorno);
     this.m_gbRetorno.Location = new System.Drawing.Point(8, 392);
     this.m_gbRetorno.Name     = "m_gbRetorno";
     this.m_gbRetorno.Size     = new System.Drawing.Size(848, 232);
     this.m_gbRetorno.TabIndex = 2;
     this.m_gbRetorno.TabStop  = false;
     this.m_gbRetorno.Text     = "Retorno";
     //
     // m_tvRetorno
     //
     this.m_tvRetorno.ImageIndex         = -1;
     this.m_tvRetorno.Location           = new System.Drawing.Point(8, 16);
     this.m_tvRetorno.Name               = "m_tvRetorno";
     this.m_tvRetorno.SelectedImageIndex = -1;
     this.m_tvRetorno.Size               = new System.Drawing.Size(832, 208);
     this.m_tvRetorno.TabIndex           = 3;
     //
     // m_gbBD
     //
     this.m_gbBD.Controls.Add(this.m_gbConfiguracao);
     this.m_gbBD.Controls.Add(this.m_gbTipoAcesso);
     this.m_gbBD.Controls.Add(this.m_gbLogin);
     this.m_gbBD.Location = new System.Drawing.Point(8, 16);
     this.m_gbBD.Name     = "m_gbBD";
     this.m_gbBD.Size     = new System.Drawing.Size(848, 232);
     this.m_gbBD.TabIndex = 0;
     this.m_gbBD.TabStop  = false;
     this.m_gbBD.Text     = "Acesso Banco Dados";
     //
     // m_gbConfiguracao
     //
     this.m_gbConfiguracao.Controls.Add(this.m_txtPath);
     this.m_gbConfiguracao.Controls.Add(this.m_lbPath);
     this.m_gbConfiguracao.Controls.Add(this.label1);
     this.m_gbConfiguracao.Controls.Add(this.m_txtDataBaseName);
     this.m_gbConfiguracao.Location = new System.Drawing.Point(8, 16);
     this.m_gbConfiguracao.Name     = "m_gbConfiguracao";
     this.m_gbConfiguracao.Size     = new System.Drawing.Size(384, 72);
     this.m_gbConfiguracao.TabIndex = 11;
     this.m_gbConfiguracao.TabStop  = false;
     this.m_gbConfiguracao.Text     = "Configuracao";
     //
     // m_txtPath
     //
     this.m_txtPath.Location = new System.Drawing.Point(108, 20);
     this.m_txtPath.Name     = "m_txtPath";
     this.m_txtPath.Size     = new System.Drawing.Size(264, 20);
     this.m_txtPath.TabIndex = 2;
     this.m_txtPath.Text     = "C:\\Projetos\\Siscobras\\Binarios\\";
     //
     // m_lbPath
     //
     this.m_lbPath.Location = new System.Drawing.Point(12, 20);
     this.m_lbPath.Name     = "m_lbPath";
     this.m_lbPath.Size     = new System.Drawing.Size(40, 16);
     this.m_lbPath.TabIndex = 0;
     this.m_lbPath.Text     = "Path";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 44);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(88, 16);
     this.label1.TabIndex = 1;
     this.label1.Text     = "DataBaseName";
     //
     // m_txtDataBaseName
     //
     this.m_txtDataBaseName.Location = new System.Drawing.Point(108, 44);
     this.m_txtDataBaseName.Name     = "m_txtDataBaseName";
     this.m_txtDataBaseName.Size     = new System.Drawing.Size(264, 20);
     this.m_txtDataBaseName.TabIndex = 3;
     this.m_txtDataBaseName.Text     = "JP";
     //
     // m_gbTipoAcesso
     //
     this.m_gbTipoAcesso.Controls.Add(this.m_txtPortMySql);
     this.m_gbTipoAcesso.Controls.Add(this.label2);
     this.m_gbTipoAcesso.Controls.Add(this.m_txtPortSqlServer);
     this.m_gbTipoAcesso.Controls.Add(this.m_lbPortSqlServer);
     this.m_gbTipoAcesso.Controls.Add(this.m_rbSqlServer);
     this.m_gbTipoAcesso.Controls.Add(this.m_btReset);
     this.m_gbTipoAcesso.Controls.Add(this.m_rbMySql);
     this.m_gbTipoAcesso.Controls.Add(this.m_rbJet40);
     this.m_gbTipoAcesso.Location = new System.Drawing.Point(7, 94);
     this.m_gbTipoAcesso.Name     = "m_gbTipoAcesso";
     this.m_gbTipoAcesso.Size     = new System.Drawing.Size(833, 128);
     this.m_gbTipoAcesso.TabIndex = 10;
     this.m_gbTipoAcesso.TabStop  = false;
     this.m_gbTipoAcesso.Text     = "Tipo Acesso";
     //
     // m_txtPortMySql
     //
     this.m_txtPortMySql.Location = new System.Drawing.Point(164, 23);
     this.m_txtPortMySql.Name     = "m_txtPortMySql";
     this.m_txtPortMySql.Size     = new System.Drawing.Size(74, 20);
     this.m_txtPortMySql.TabIndex = 12;
     this.m_txtPortMySql.Text     = "3306";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(124, 23);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(34, 16);
     this.label2.TabIndex = 11;
     this.label2.Text     = "Port:";
     //
     // m_txtPortSqlServer
     //
     this.m_txtPortSqlServer.Location = new System.Drawing.Point(164, 47);
     this.m_txtPortSqlServer.Name     = "m_txtPortSqlServer";
     this.m_txtPortSqlServer.Size     = new System.Drawing.Size(74, 20);
     this.m_txtPortSqlServer.TabIndex = 10;
     this.m_txtPortSqlServer.Text     = "1433";
     //
     // m_lbPortSqlServer
     //
     this.m_lbPortSqlServer.Location = new System.Drawing.Point(126, 50);
     this.m_lbPortSqlServer.Name     = "m_lbPortSqlServer";
     this.m_lbPortSqlServer.Size     = new System.Drawing.Size(34, 16);
     this.m_lbPortSqlServer.TabIndex = 9;
     this.m_lbPortSqlServer.Text     = "Port:";
     //
     // m_rbSqlServer
     //
     this.m_rbSqlServer.Checked  = true;
     this.m_rbSqlServer.Location = new System.Drawing.Point(24, 49);
     this.m_rbSqlServer.Name     = "m_rbSqlServer";
     this.m_rbSqlServer.Size     = new System.Drawing.Size(96, 16);
     this.m_rbSqlServer.TabIndex = 7;
     this.m_rbSqlServer.TabStop  = true;
     this.m_rbSqlServer.Text     = "SqlServer";
     //
     // m_btReset
     //
     this.m_btReset.Location = new System.Drawing.Point(7, 89);
     this.m_btReset.Name     = "m_btReset";
     this.m_btReset.Size     = new System.Drawing.Size(96, 32);
     this.m_btReset.TabIndex = 6;
     this.m_btReset.Text     = "Reset Parametros";
     this.m_btReset.Click   += new System.EventHandler(this.m_btReset_Click);
     //
     // m_rbMySql
     //
     this.m_rbMySql.Location = new System.Drawing.Point(24, 32);
     this.m_rbMySql.Name     = "m_rbMySql";
     this.m_rbMySql.Size     = new System.Drawing.Size(56, 16);
     this.m_rbMySql.TabIndex = 5;
     this.m_rbMySql.Text     = "MySql";
     //
     // m_rbJet40
     //
     this.m_rbJet40.Location = new System.Drawing.Point(24, 16);
     this.m_rbJet40.Name     = "m_rbJet40";
     this.m_rbJet40.Size     = new System.Drawing.Size(200, 16);
     this.m_rbJet40.TabIndex = 4;
     this.m_rbJet40.Text     = "Jet40";
     //
     // m_gbLogin
     //
     this.m_gbLogin.Controls.Add(this.m_txtHost);
     this.m_gbLogin.Controls.Add(this.m_lbHost);
     this.m_gbLogin.Controls.Add(this.m_txtPassword);
     this.m_gbLogin.Controls.Add(this.m_txtUser);
     this.m_gbLogin.Controls.Add(this.m_lbPassword);
     this.m_gbLogin.Controls.Add(this.m_lbUser);
     this.m_gbLogin.Location = new System.Drawing.Point(396, 8);
     this.m_gbLogin.Name     = "m_gbLogin";
     this.m_gbLogin.Size     = new System.Drawing.Size(444, 80);
     this.m_gbLogin.TabIndex = 9;
     this.m_gbLogin.TabStop  = false;
     this.m_gbLogin.Text     = "Login";
     //
     // m_txtHost
     //
     this.m_txtHost.Location = new System.Drawing.Point(62, 12);
     this.m_txtHost.Name     = "m_txtHost";
     this.m_txtHost.Size     = new System.Drawing.Size(122, 20);
     this.m_txtHost.TabIndex = 10;
     this.m_txtHost.Text     = "CRON";
     //
     // m_lbHost
     //
     this.m_lbHost.Location = new System.Drawing.Point(7, 20);
     this.m_lbHost.Name     = "m_lbHost";
     this.m_lbHost.Size     = new System.Drawing.Size(32, 16);
     this.m_lbHost.TabIndex = 9;
     this.m_lbHost.Text     = "Host";
     //
     // m_txtPassword
     //
     this.m_txtPassword.Location = new System.Drawing.Point(62, 55);
     this.m_txtPassword.Name     = "m_txtPassword";
     this.m_txtPassword.Size     = new System.Drawing.Size(122, 20);
     this.m_txtPassword.TabIndex = 8;
     this.m_txtPassword.Text     = "JP";
     //
     // m_txtUser
     //
     this.m_txtUser.Location = new System.Drawing.Point(62, 34);
     this.m_txtUser.Name     = "m_txtUser";
     this.m_txtUser.Size     = new System.Drawing.Size(122, 20);
     this.m_txtUser.TabIndex = 7;
     this.m_txtUser.Text     = "JP";
     //
     // m_lbPassword
     //
     this.m_lbPassword.Location = new System.Drawing.Point(7, 57);
     this.m_lbPassword.Name     = "m_lbPassword";
     this.m_lbPassword.Size     = new System.Drawing.Size(56, 16);
     this.m_lbPassword.TabIndex = 6;
     this.m_lbPassword.Text     = "Password";
     //
     // m_lbUser
     //
     this.m_lbUser.Location = new System.Drawing.Point(8, 40);
     this.m_lbUser.Name     = "m_lbUser";
     this.m_lbUser.Size     = new System.Drawing.Size(32, 16);
     this.m_lbUser.TabIndex = 5;
     this.m_lbUser.Text     = "User";
     //
     // m_gbMoeda
     //
     this.m_gbMoeda.Controls.Add(this.m_btShowDialog);
     this.m_gbMoeda.Controls.Add(this.m_btCarregaDados);
     this.m_gbMoeda.Location = new System.Drawing.Point(8, 328);
     this.m_gbMoeda.Name     = "m_gbMoeda";
     this.m_gbMoeda.Size     = new System.Drawing.Size(848, 62);
     this.m_gbMoeda.TabIndex = 1;
     this.m_gbMoeda.TabStop  = false;
     this.m_gbMoeda.Text     = "Negócio";
     //
     // m_btShowDialog
     //
     this.m_btShowDialog.Location = new System.Drawing.Point(111, 18);
     this.m_btShowDialog.Name     = "m_btShowDialog";
     this.m_btShowDialog.Size     = new System.Drawing.Size(96, 32);
     this.m_btShowDialog.TabIndex = 3;
     this.m_btShowDialog.Text     = "Show Dialog";
     this.m_btShowDialog.Click   += new System.EventHandler(this.m_btShowDialog_Click);
     //
     // m_btCarregaDados
     //
     this.m_btCarregaDados.Location = new System.Drawing.Point(9, 19);
     this.m_btCarregaDados.Name     = "m_btCarregaDados";
     this.m_btCarregaDados.Size     = new System.Drawing.Size(96, 32);
     this.m_btCarregaDados.TabIndex = 2;
     this.m_btCarregaDados.Text     = "Carrega Dados";
     this.m_btCarregaDados.Click   += new System.EventHandler(this.m_btCarregaDados_Click);
     //
     // m_ilBandeiras
     //
     this.m_ilBandeiras.ImageSize        = new System.Drawing.Size(16, 16);
     this.m_ilBandeiras.TransparentColor = System.Drawing.Color.Transparent;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(880, 638);
     this.Controls.Add(this.m_gbGeral);
     this.Name          = "Form1";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Area Produtos";
     this.Load         += new System.EventHandler(this.Form1_Load);
     this.m_gbGeral.ResumeLayout(false);
     this.m_gbParametros.ResumeLayout(false);
     this.m_gbRetorno.ResumeLayout(false);
     this.m_gbBD.ResumeLayout(false);
     this.m_gbConfiguracao.ResumeLayout(false);
     this.m_gbTipoAcesso.ResumeLayout(false);
     this.m_gbLogin.ResumeLayout(false);
     this.m_gbMoeda.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 protected void salvaDadosInterfaceEndereco(ref mdlComponentesGraficos.TextBox ctbEndereco, ref mdlComponentesGraficos.TextBox ctbCidade, ref mdlComponentesGraficos.TextBox ctbEstado, ref mdlComponentesGraficos.ComboBox cbPaises)
 {
     try
     {
         m_strEnderecoEntrega = ctbEndereco.Text;
         m_strCidadeEntrega   = ctbCidade.Text;
         m_strEstadoEntrega   = ctbEstado.Text;
         m_nIdPais            = Int32.Parse(cbPaises.ReturnObjectSelectedItem().ToString());
         m_strPaisEntrega     = cbPaises.SelectedItem.ToString();
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
예제 #28
0
 protected void salvaDadosInterfaceBanco(ref mdlComponentesGraficos.TextBox ctbNome, ref mdlComponentesGraficos.TextBox ctbEndereco, ref mdlComponentesGraficos.TextBox ctbComplemento, ref mdlComponentesGraficos.TextBox ctbCidade, ref mdlComponentesGraficos.TextBox ctbEstado, ref mdlComponentesGraficos.ComboBox cbPaises, ref System.Windows.Forms.TextBox ctbObs)
 {
     try
     {
         m_strBanco       = ctbNome.Text;
         m_strEndereco    = ctbEndereco.Text;
         m_strComplemento = ctbComplemento.Text;
         m_strCidade      = ctbCidade.Text;
         m_strEstado      = ctbEstado.Text;
         m_nIdPais        = Int32.Parse(cbPaises.ReturnObjectSelectedItem().ToString());
         m_strPais        = cbPaises.SelectedItem.ToString();
         m_strObs         = ctbObs.Text;
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
예제 #29
0
 /// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFImportadorCadEdit));
     this.m_gbFrame             = new System.Windows.Forms.GroupBox();
     this.m_btTrocarCor         = new System.Windows.Forms.Button();
     this.m_btOk                = new System.Windows.Forms.Button();
     this.m_btCancelar          = new System.Windows.Forms.Button();
     this.m_gbFields            = new System.Windows.Forms.GroupBox();
     this.m_ctbObs              = new System.Windows.Forms.TextBox();
     this.m_lObs                = new System.Windows.Forms.Label();
     this.m_ctbSite             = new mdlComponentesGraficos.TextBox();
     this.m_lSite               = new System.Windows.Forms.Label();
     this.m_ctbEMail            = new mdlComponentesGraficos.TextBox();
     this.m_lEMail              = new System.Windows.Forms.Label();
     this.m_cbPais              = new mdlComponentesGraficos.ComboBox();
     this.m_lTelefone           = new System.Windows.Forms.Label();
     this.m_ctbFax              = new mdlComponentesGraficos.TextBox();
     this.m_lFax                = new System.Windows.Forms.Label();
     this.m_ctbTelefone         = new mdlComponentesGraficos.TextBox();
     this.m_ctbEstado           = new mdlComponentesGraficos.TextBox();
     this.m_lPais               = new System.Windows.Forms.Label();
     this.m_lEstado             = new System.Windows.Forms.Label();
     this.m_ctbCidade           = new mdlComponentesGraficos.TextBox();
     this.m_lCidade             = new System.Windows.Forms.Label();
     this.m_ctbEndereco         = new mdlComponentesGraficos.TextBox();
     this.m_lEndereco           = new System.Windows.Forms.Label();
     this.m_ctbNome             = new mdlComponentesGraficos.TextBox();
     this.m_lNome               = new System.Windows.Forms.Label();
     this.m_ttImportadorCadEdit = new System.Windows.Forms.ToolTip(this.components);
     this.m_gbFrame.SuspendLayout();
     this.m_gbFields.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbFrame
     //
     this.m_gbFrame.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbFrame.Controls.Add(this.m_btTrocarCor);
     this.m_gbFrame.Controls.Add(this.m_btOk);
     this.m_gbFrame.Controls.Add(this.m_btCancelar);
     this.m_gbFrame.Controls.Add(this.m_gbFields);
     this.m_gbFrame.Location = new System.Drawing.Point(3, 0);
     this.m_gbFrame.Name     = "m_gbFrame";
     this.m_gbFrame.Size     = new System.Drawing.Size(380, 300);
     this.m_gbFrame.TabIndex = 0;
     this.m_gbFrame.TabStop  = false;
     //
     // m_btTrocarCor
     //
     this.m_btTrocarCor.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(64)), ((System.Byte)(0)));
     this.m_btTrocarCor.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.m_btTrocarCor.Location  = new System.Drawing.Point(4, 9);
     this.m_btTrocarCor.Name      = "m_btTrocarCor";
     this.m_btTrocarCor.Size      = new System.Drawing.Size(4, 4);
     this.m_btTrocarCor.TabIndex  = 13;
     this.m_ttImportadorCadEdit.SetToolTip(this.m_btTrocarCor, "Cor");
     this.m_btTrocarCor.Click += new System.EventHandler(this.m_btTrocarCor_Click);
     //
     // m_btOk
     //
     this.m_btOk.Anchor      = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_btOk.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btOk.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btOk.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btOk.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btOk.Image       = ((System.Drawing.Image)(resources.GetObject("m_btOk.Image")));
     this.m_btOk.Location    = new System.Drawing.Point(130, 269);
     this.m_btOk.Name        = "m_btOk";
     this.m_btOk.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btOk.Size        = new System.Drawing.Size(57, 25);
     this.m_btOk.TabIndex    = 11;
     this.m_ttImportadorCadEdit.SetToolTip(this.m_btOk, "Confirmar");
     this.m_btOk.Click += new System.EventHandler(this.m_btOk_Click);
     //
     // m_btCancelar
     //
     this.m_btCancelar.Anchor      = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_btCancelar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btCancelar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btCancelar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btCancelar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btCancelar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btCancelar.Image")));
     this.m_btCancelar.Location    = new System.Drawing.Point(194, 269);
     this.m_btCancelar.Name        = "m_btCancelar";
     this.m_btCancelar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btCancelar.Size        = new System.Drawing.Size(57, 25);
     this.m_btCancelar.TabIndex    = 12;
     this.m_ttImportadorCadEdit.SetToolTip(this.m_btCancelar, "Cancelar");
     this.m_btCancelar.Click += new System.EventHandler(this.m_btCancelar_Click);
     //
     // m_gbFields
     //
     this.m_gbFields.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbFields.Controls.Add(this.m_ctbObs);
     this.m_gbFields.Controls.Add(this.m_lObs);
     this.m_gbFields.Controls.Add(this.m_ctbSite);
     this.m_gbFields.Controls.Add(this.m_lSite);
     this.m_gbFields.Controls.Add(this.m_ctbEMail);
     this.m_gbFields.Controls.Add(this.m_lEMail);
     this.m_gbFields.Controls.Add(this.m_cbPais);
     this.m_gbFields.Controls.Add(this.m_lTelefone);
     this.m_gbFields.Controls.Add(this.m_ctbFax);
     this.m_gbFields.Controls.Add(this.m_lFax);
     this.m_gbFields.Controls.Add(this.m_ctbTelefone);
     this.m_gbFields.Controls.Add(this.m_ctbEstado);
     this.m_gbFields.Controls.Add(this.m_lPais);
     this.m_gbFields.Controls.Add(this.m_lEstado);
     this.m_gbFields.Controls.Add(this.m_ctbCidade);
     this.m_gbFields.Controls.Add(this.m_lCidade);
     this.m_gbFields.Controls.Add(this.m_ctbEndereco);
     this.m_gbFields.Controls.Add(this.m_lEndereco);
     this.m_gbFields.Controls.Add(this.m_ctbNome);
     this.m_gbFields.Controls.Add(this.m_lNome);
     this.m_gbFields.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_gbFields.Location = new System.Drawing.Point(8, 8);
     this.m_gbFields.Name     = "m_gbFields";
     this.m_gbFields.Size     = new System.Drawing.Size(364, 257);
     this.m_gbFields.TabIndex = 0;
     this.m_gbFields.TabStop  = false;
     this.m_gbFields.Text     = "Cadastro / Edição";
     //
     // m_ctbObs
     //
     this.m_ctbObs.Anchor    = System.Windows.Forms.AnchorStyles.None;
     this.m_ctbObs.Font      = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_ctbObs.Location  = new System.Drawing.Point(71, 188);
     this.m_ctbObs.Multiline = true;
     this.m_ctbObs.Name      = "m_ctbObs";
     this.m_ctbObs.Size      = new System.Drawing.Size(284, 61);
     this.m_ctbObs.TabIndex  = 10;
     this.m_ctbObs.Text      = "";
     //
     // m_lObs
     //
     this.m_lObs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lObs.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lObs.Location = new System.Drawing.Point(8, 189);
     this.m_lObs.Name     = "m_lObs";
     this.m_lObs.Size     = new System.Drawing.Size(34, 19);
     this.m_lObs.TabIndex = 0;
     this.m_lObs.Text     = "Obs.:";
     //
     // m_ctbSite
     //
     this.m_ctbSite.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.m_ctbSite.Font     = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_ctbSite.Location = new System.Drawing.Point(71, 164);
     this.m_ctbSite.Name     = "m_ctbSite";
     this.m_ctbSite.Size     = new System.Drawing.Size(284, 20);
     this.m_ctbSite.TabIndex = 9;
     this.m_ctbSite.Text     = "";
     //
     // m_lSite
     //
     this.m_lSite.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lSite.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lSite.Location = new System.Drawing.Point(8, 165);
     this.m_lSite.Name     = "m_lSite";
     this.m_lSite.Size     = new System.Drawing.Size(29, 19);
     this.m_lSite.TabIndex = 0;
     this.m_lSite.Text     = "Site:";
     //
     // m_ctbEMail
     //
     this.m_ctbEMail.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.m_ctbEMail.Font     = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_ctbEMail.Location = new System.Drawing.Point(71, 140);
     this.m_ctbEMail.Name     = "m_ctbEMail";
     this.m_ctbEMail.Size     = new System.Drawing.Size(284, 20);
     this.m_ctbEMail.TabIndex = 8;
     this.m_ctbEMail.Text     = "";
     //
     // m_lEMail
     //
     this.m_lEMail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                  | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lEMail.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lEMail.Location = new System.Drawing.Point(8, 141);
     this.m_lEMail.Name     = "m_lEMail";
     this.m_lEMail.Size     = new System.Drawing.Size(43, 19);
     this.m_lEMail.TabIndex = 0;
     this.m_lEMail.Text     = "E-mail:";
     //
     // m_cbPais
     //
     this.m_cbPais.Anchor = System.Windows.Forms.AnchorStyles.None;
     this.m_cbPais.Font   = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_cbPais.GoToNextControlWithEnter = true;
     this.m_cbPais.Location = new System.Drawing.Point(219, 92);
     this.m_cbPais.Name     = "m_cbPais";
     this.m_cbPais.Size     = new System.Drawing.Size(136, 22);
     this.m_cbPais.TabIndex = 5;
     this.m_ttImportadorCadEdit.SetToolTip(this.m_cbPais, "Selecione o país");
     //
     // m_lTelefone
     //
     this.m_lTelefone.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lTelefone.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lTelefone.Location = new System.Drawing.Point(8, 117);
     this.m_lTelefone.Name     = "m_lTelefone";
     this.m_lTelefone.Size     = new System.Drawing.Size(56, 19);
     this.m_lTelefone.TabIndex = 0;
     this.m_lTelefone.Text     = "Telefone:";
     //
     // m_ctbFax
     //
     this.m_ctbFax.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.m_ctbFax.Font     = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_ctbFax.Location = new System.Drawing.Point(219, 116);
     this.m_ctbFax.Name     = "m_ctbFax";
     this.m_ctbFax.Size     = new System.Drawing.Size(136, 20);
     this.m_ctbFax.TabIndex = 7;
     this.m_ctbFax.Text     = "";
     //
     // m_lFax
     //
     this.m_lFax.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lFax.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lFax.Location = new System.Drawing.Point(186, 117);
     this.m_lFax.Name     = "m_lFax";
     this.m_lFax.Size     = new System.Drawing.Size(29, 19);
     this.m_lFax.TabIndex = 0;
     this.m_lFax.Text     = "Fax:";
     //
     // m_ctbTelefone
     //
     this.m_ctbTelefone.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.m_ctbTelefone.Font     = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_ctbTelefone.Location = new System.Drawing.Point(71, 116);
     this.m_ctbTelefone.Name     = "m_ctbTelefone";
     this.m_ctbTelefone.Size     = new System.Drawing.Size(110, 20);
     this.m_ctbTelefone.TabIndex = 6;
     this.m_ctbTelefone.Text     = "";
     //
     // m_ctbEstado
     //
     this.m_ctbEstado.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.m_ctbEstado.Font     = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_ctbEstado.Location = new System.Drawing.Point(71, 92);
     this.m_ctbEstado.Name     = "m_ctbEstado";
     this.m_ctbEstado.Size     = new System.Drawing.Size(110, 20);
     this.m_ctbEstado.TabIndex = 4;
     this.m_ctbEstado.Text     = "";
     //
     // m_lPais
     //
     this.m_lPais.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lPais.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lPais.Location = new System.Drawing.Point(186, 93);
     this.m_lPais.Name     = "m_lPais";
     this.m_lPais.Size     = new System.Drawing.Size(33, 19);
     this.m_lPais.TabIndex = 0;
     this.m_lPais.Text     = "País:";
     //
     // m_lEstado
     //
     this.m_lEstado.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lEstado.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lEstado.Location = new System.Drawing.Point(8, 93);
     this.m_lEstado.Name     = "m_lEstado";
     this.m_lEstado.Size     = new System.Drawing.Size(48, 19);
     this.m_lEstado.TabIndex = 0;
     this.m_lEstado.Text     = "Estado:";
     //
     // m_ctbCidade
     //
     this.m_ctbCidade.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.m_ctbCidade.Font     = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_ctbCidade.Location = new System.Drawing.Point(71, 68);
     this.m_ctbCidade.Name     = "m_ctbCidade";
     this.m_ctbCidade.Size     = new System.Drawing.Size(284, 20);
     this.m_ctbCidade.TabIndex = 3;
     this.m_ctbCidade.Text     = "";
     //
     // m_lCidade
     //
     this.m_lCidade.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lCidade.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lCidade.Location = new System.Drawing.Point(8, 69);
     this.m_lCidade.Name     = "m_lCidade";
     this.m_lCidade.Size     = new System.Drawing.Size(48, 19);
     this.m_lCidade.TabIndex = 0;
     this.m_lCidade.Text     = "Cidade:";
     //
     // m_ctbEndereco
     //
     this.m_ctbEndereco.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.m_ctbEndereco.Font     = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_ctbEndereco.Location = new System.Drawing.Point(71, 44);
     this.m_ctbEndereco.Name     = "m_ctbEndereco";
     this.m_ctbEndereco.Size     = new System.Drawing.Size(284, 20);
     this.m_ctbEndereco.TabIndex = 2;
     this.m_ctbEndereco.Text     = "";
     //
     // m_lEndereco
     //
     this.m_lEndereco.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lEndereco.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lEndereco.Location = new System.Drawing.Point(8, 45);
     this.m_lEndereco.Name     = "m_lEndereco";
     this.m_lEndereco.Size     = new System.Drawing.Size(61, 19);
     this.m_lEndereco.TabIndex = 0;
     this.m_lEndereco.Text     = "Endereço:";
     //
     // m_ctbNome
     //
     this.m_ctbNome.Anchor   = System.Windows.Forms.AnchorStyles.None;
     this.m_ctbNome.Font     = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_ctbNome.Location = new System.Drawing.Point(71, 20);
     this.m_ctbNome.Name     = "m_ctbNome";
     this.m_ctbNome.Size     = new System.Drawing.Size(284, 20);
     this.m_ctbNome.TabIndex = 1;
     this.m_ctbNome.Text     = "";
     //
     // m_lNome
     //
     this.m_lNome.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                 | System.Windows.Forms.AnchorStyles.Left)));
     this.m_lNome.Font     = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lNome.Location = new System.Drawing.Point(8, 22);
     this.m_lNome.Name     = "m_lNome";
     this.m_lNome.Size     = new System.Drawing.Size(41, 19);
     this.m_lNome.TabIndex = 0;
     this.m_lNome.Text     = "Nome:";
     //
     // m_ttImportadorCadEdit
     //
     this.m_ttImportadorCadEdit.AutomaticDelay = 100;
     this.m_ttImportadorCadEdit.AutoPopDelay   = 5000;
     this.m_ttImportadorCadEdit.InitialDelay   = 100;
     this.m_ttImportadorCadEdit.ReshowDelay    = 20;
     //
     // frmFImportadorCadEdit
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(386, 303);
     this.Controls.Add(this.m_gbFrame);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFImportadorCadEdit";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Importadores";
     this.Load           += new System.EventHandler(this.frmFImportadorCadEdit_Load);
     this.m_gbFrame.ResumeLayout(false);
     this.m_gbFields.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #30
0
 /// <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.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFPermissoesUsuario));
     this.m_gbFrame            = new System.Windows.Forms.GroupBox();
     this.m_btTrocarCor        = new System.Windows.Forms.Button();
     this.m_btOk               = new System.Windows.Forms.Button();
     this.m_btCancelar         = new System.Windows.Forms.Button();
     this.m_gbFields           = new System.Windows.Forms.GroupBox();
     this.m_btSalvar           = new System.Windows.Forms.Button();
     this.m_cbItemsEspecificos = new mdlComponentesGraficos.ComboBox();
     this.m_lItem              = new System.Windows.Forms.Label();
     this.m_cbConcessoes       = new mdlComponentesGraficos.ComboBox();
     this.m_cbPermissoes       = new mdlComponentesGraficos.ComboBox();
     this.m_lPermitir          = new System.Windows.Forms.Label();
     this.m_cbUsuarios         = new mdlComponentesGraficos.ComboBox();
     this.m_ttUsuarios         = new System.Windows.Forms.ToolTip(this.components);
     this.m_gbFrame.SuspendLayout();
     this.m_gbFields.SuspendLayout();
     this.SuspendLayout();
     //
     // m_gbFrame
     //
     this.m_gbFrame.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                    | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbFrame.Controls.Add(this.m_btTrocarCor);
     this.m_gbFrame.Controls.Add(this.m_btOk);
     this.m_gbFrame.Controls.Add(this.m_btCancelar);
     this.m_gbFrame.Controls.Add(this.m_gbFields);
     this.m_gbFrame.Location = new System.Drawing.Point(2, 0);
     this.m_gbFrame.Name     = "m_gbFrame";
     this.m_gbFrame.Size     = new System.Drawing.Size(422, 157);
     this.m_gbFrame.TabIndex = 0;
     this.m_gbFrame.TabStop  = false;
     //
     // m_btTrocarCor
     //
     this.m_btTrocarCor.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(0)), ((System.Byte)(64)), ((System.Byte)(0)));
     this.m_btTrocarCor.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.m_btTrocarCor.Location  = new System.Drawing.Point(4, 10);
     this.m_btTrocarCor.Name      = "m_btTrocarCor";
     this.m_btTrocarCor.Size      = new System.Drawing.Size(4, 4);
     this.m_btTrocarCor.TabIndex  = 13;
     this.m_ttUsuarios.SetToolTip(this.m_btTrocarCor, "Cor");
     this.m_btTrocarCor.Click += new System.EventHandler(this.m_btTrocarCor_Click);
     //
     // m_btOk
     //
     this.m_btOk.Anchor      = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_btOk.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btOk.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btOk.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btOk.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btOk.Image       = ((System.Drawing.Image)(resources.GetObject("m_btOk.Image")));
     this.m_btOk.Location    = new System.Drawing.Point(151, 125);
     this.m_btOk.Name        = "m_btOk";
     this.m_btOk.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btOk.Size        = new System.Drawing.Size(57, 27);
     this.m_btOk.TabIndex    = 11;
     this.m_ttUsuarios.SetToolTip(this.m_btOk, "Confirmar");
     this.m_btOk.Click += new System.EventHandler(this.m_btOk_Click);
     //
     // m_btCancelar
     //
     this.m_btCancelar.Anchor      = System.Windows.Forms.AnchorStyles.Bottom;
     this.m_btCancelar.BackColor   = System.Drawing.SystemColors.Control;
     this.m_btCancelar.Cursor      = System.Windows.Forms.Cursors.Hand;
     this.m_btCancelar.Font        = new System.Drawing.Font("Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btCancelar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.m_btCancelar.Image       = ((System.Drawing.Image)(resources.GetObject("m_btCancelar.Image")));
     this.m_btCancelar.Location    = new System.Drawing.Point(215, 125);
     this.m_btCancelar.Name        = "m_btCancelar";
     this.m_btCancelar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.m_btCancelar.Size        = new System.Drawing.Size(57, 27);
     this.m_btCancelar.TabIndex    = 12;
     this.m_ttUsuarios.SetToolTip(this.m_btCancelar, "Cancelar");
     this.m_btCancelar.Click += new System.EventHandler(this.m_btCancelar_Click);
     //
     // m_gbFields
     //
     this.m_gbFields.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.m_gbFields.Controls.Add(this.m_btSalvar);
     this.m_gbFields.Controls.Add(this.m_cbItemsEspecificos);
     this.m_gbFields.Controls.Add(this.m_lItem);
     this.m_gbFields.Controls.Add(this.m_cbConcessoes);
     this.m_gbFields.Controls.Add(this.m_cbPermissoes);
     this.m_gbFields.Controls.Add(this.m_lPermitir);
     this.m_gbFields.Controls.Add(this.m_cbUsuarios);
     this.m_gbFields.Font     = new System.Drawing.Font("Arial", 11.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_gbFields.Location = new System.Drawing.Point(8, 8);
     this.m_gbFields.Name     = "m_gbFields";
     this.m_gbFields.Size     = new System.Drawing.Size(406, 113);
     this.m_gbFields.TabIndex = 0;
     this.m_gbFields.TabStop  = false;
     //
     // m_btSalvar
     //
     this.m_btSalvar.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_btSalvar.Location = new System.Drawing.Point(346, 85);
     this.m_btSalvar.Name     = "m_btSalvar";
     this.m_btSalvar.Size     = new System.Drawing.Size(56, 24);
     this.m_btSalvar.TabIndex = 6;
     this.m_btSalvar.Text     = "Salvar";
     this.m_ttUsuarios.SetToolTip(this.m_btSalvar, "Salvar alteração");
     this.m_btSalvar.Click += new System.EventHandler(this.m_btSalvar_Click);
     //
     // m_cbItemsEspecificos
     //
     this.m_cbItemsEspecificos.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_cbItemsEspecificos.Location = new System.Drawing.Point(150, 83);
     this.m_cbItemsEspecificos.Name     = "m_cbItemsEspecificos";
     this.m_cbItemsEspecificos.Size     = new System.Drawing.Size(147, 22);
     this.m_cbItemsEspecificos.TabIndex = 5;
     this.m_ttUsuarios.SetToolTip(this.m_cbItemsEspecificos, "Selecionar item");
     //
     // m_lItem
     //
     this.m_lItem.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lItem.Location = new System.Drawing.Point(110, 85);
     this.m_lItem.Name     = "m_lItem";
     this.m_lItem.Size     = new System.Drawing.Size(40, 14);
     this.m_lItem.TabIndex = 4;
     this.m_lItem.Text     = "o item";
     //
     // m_cbConcessoes
     //
     this.m_cbConcessoes.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_cbConcessoes.Location = new System.Drawing.Point(103, 19);
     this.m_cbConcessoes.Name     = "m_cbConcessoes";
     this.m_cbConcessoes.Size     = new System.Drawing.Size(200, 22);
     this.m_cbConcessoes.TabIndex = 3;
     this.m_ttUsuarios.SetToolTip(this.m_cbConcessoes, "Concessões");
     this.m_cbConcessoes.SelectedIndexChanged += new System.EventHandler(this.m_cbConcessoes_SelectedIndexChanged);
     //
     // m_cbPermissoes
     //
     this.m_cbPermissoes.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_cbPermissoes.Location = new System.Drawing.Point(280, 55);
     this.m_cbPermissoes.Name     = "m_cbPermissoes";
     this.m_cbPermissoes.Size     = new System.Drawing.Size(118, 22);
     this.m_cbPermissoes.TabIndex = 2;
     this.m_ttUsuarios.SetToolTip(this.m_cbPermissoes, "Selecionar permissão");
     //
     // m_lPermitir
     //
     this.m_lPermitir.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_lPermitir.Location = new System.Drawing.Point(24, 57);
     this.m_lPermitir.Name     = "m_lPermitir";
     this.m_lPermitir.Size     = new System.Drawing.Size(99, 15);
     this.m_lPermitir.TabIndex = 1;
     this.m_lPermitir.Text     = "Permitir ao usuário";
     //
     // m_cbUsuarios
     //
     this.m_cbUsuarios.Font     = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.m_cbUsuarios.Location = new System.Drawing.Point(125, 55);
     this.m_cbUsuarios.Name     = "m_cbUsuarios";
     this.m_cbUsuarios.Size     = new System.Drawing.Size(147, 22);
     this.m_cbUsuarios.TabIndex = 0;
     this.m_ttUsuarios.SetToolTip(this.m_cbUsuarios, "Selecionar usuário");
     //
     // m_ttUsuarios
     //
     this.m_ttUsuarios.AutomaticDelay = 100;
     this.m_ttUsuarios.AutoPopDelay   = 5000;
     this.m_ttUsuarios.InitialDelay   = 100;
     this.m_ttUsuarios.ReshowDelay    = 20;
     //
     // frmFPermissoesUsuario
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(426, 159);
     this.Controls.Add(this.m_gbFrame);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmFPermissoesUsuario";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Permissões";
     this.Load           += new System.EventHandler(this.frmFPermissoesUsuario_Load);
     this.Activated      += new System.EventHandler(this.frmFPermissoesUsuario_Activated);
     this.m_gbFrame.ResumeLayout(false);
     this.m_gbFields.ResumeLayout(false);
     this.ResumeLayout(false);
 }