Ejemplo n.º 1
0
        public static Report loadReport(string irelatorioname)
        {
            Report report = new Report();

            try
            {
                report.Load(String.Format("{0}\\Relatorios\\{1}", Ficheiro.getLocalExecutavel(), irelatorioname));
            }
            catch (Exception ex)
            {
                Alert.erro("Erro ao gerar o relatorio \n" + ex.Message);
            }
            return(report);
        }
Ejemplo n.º 2
0
        public static String loadWord(string irelatorioname)
        {
            String report = "";

            try
            {
                report = String.Format("{0}\\Relatorios\\{1}", Ficheiro.getLocalExecutavel(), irelatorioname);
            }
            catch (Exception ex)
            {
                Alert.erro(String.Format("Erro ao acessar o arquivo do Word {0} \n", irelatorioname, ex.Message));
            }
            return(report);
        }