Exemple #1
0
        private void btnCANCELAMENTOMASTER_Click(object sender, EventArgs e)
        {
            url = "http://www.gtaassist.com.br/sitev2/biblioteca/cg/CANCELAMENTO_MASTER_GTA.PDF";
            frmCondicoesGerais f = new frmCondicoesGerais(url);

            f.MdiParent = this;
            f.Show();
        }
Exemple #2
0
        private void btnMARITIMOCOBERTURADEREPARODEBAGAGEM_Click(object sender, EventArgs e)
        {
            url = "http://www.gtaassist.com.br/sitev2/home/cg/BENEFICIO%20EXTRA%20-%20COBERTURA%20DE%20REPARO%20DE%20BAGAGEM.pdf";
            frmCondicoesGerais f = new frmCondicoesGerais(url);

            f.MdiParent = this;
            f.Show();
        }
Exemple #3
0
        private void btnBRAZILIANASSISTNACIONAL_Click(object sender, EventArgs e)
        {
            url = "http://www.gtaassist.com.br/sitev2/home/cg/COND.%20GERAIS%20BRAZILIAN%20ASSIST%202014.PDF";
            frmCondicoesGerais f = new frmCondicoesGerais(url);

            f.MdiParent = this;
            f.Show();
        }
Exemple #4
0
        private void btnCOBERTURADEGRAVIDEZ_Click(object sender, EventArgs e)
        {
            url = "http://www.gtaassist.com.br/sitev2/home/cg/COBERTURA%20DE%20GRAVIDEZ.PDF";
            frmCondicoesGerais f = new frmCondicoesGerais(url);

            f.MdiParent = this;
            f.Show();
        }
Exemple #5
0
        private void btnADICIONALDECANCELAMENTODEVIAGEM_Click(object sender, EventArgs e)
        {
            url = "http://www.gtaassist.com.br/sitev2/home/cg/CANCELAMENTO%20DE%20VIAGEM%20ADICIONAL.PDF";
            frmCondicoesGerais f = new frmCondicoesGerais(url);

            f.MdiParent = this;
            f.Show();
        }
Exemple #6
0
        private void btnGTAGLOBALTRAVELASSISTANCEinglês_Click(object sender, EventArgs e)
        {
            url = "http://www.gtaassist.com.br/sitev2/biblioteca/cg/cgIngles.pdf";
            frmCondicoesGerais f = new frmCondicoesGerais(url);

            f.MdiParent = this;
            f.Show();
        }
Exemple #7
0
 private void button5_Click(object sender, EventArgs e)
 {
     if (Application.OpenForms.OfType <frmCondicoesGerais>().Count() > 0)
     {
         MessageBox.Show("FORMULÁRIO DE LOGIN JÁ ESTÁ ABERTO");
         return;
     }
     else
     {
         string url;
         url = "http://www.gtaassist.com.br/sitev2/biblioteca/cg/Condicoes_Gerais.pdf";
         frmCondicoesGerais f = new frmCondicoesGerais(url);
         f.ShowDialog();
     }
 }