Jump to content


cris_gavioli's Content

There have been 55 items by cris_gavioli (Search limited from 25/04/2023)



Ordernar por                Order  

#884648 Email Cópia Oculta

Posted by cris_gavioli on 30/11/2007, 15:52 in Visual Basic

Olá Pessoal!

Preciso de uma ajuda para saber como envia email cópia oculta através do VB com MAPI(Outlook)

Tenho o seguinte código que já esta enviando corretamente o email, mas não está como cópia oculta:

MAPISession1.SignOn
MAPIMessages1.SessionID = MAPISession1.SessionID
MAPIMessages1.Compose
MAPIMessages1.RecipAddress = email
MAPIMessages1.MsgSubject = txtAss.Text
MAPIMessages1.MsgNoteText = TxtCorp.Text

'anexa no final da mensagem
MAPIMessages1.AttachmentPosition = Len(MAPIMessages1.MsgNoteText)
'define o tipo de dados do anexo
MAPIMessages1.AttachmentType = mapData
'da um nome ao anexo; 'define o caminho e nome do arquivo a anexar
MAPIMessages1.AttachmentName = Anexo
MAPIMessages1.AttachmentPathName = txtAnexo.Text

'envia o arquivo
MAPISession1.SignOff

On Error GoTo rotina
MAPIMessages1.Send True

rotina:
If Err.Number <> 0 Then ' User cancelled
MsgBox "Você cancelou o envio de e-mail!"
On Error GoTo 0
Exit Sub
End If

Barão = MsgBox("Seu email foi enviado!", 48)

Agradeço a qlqr ajuda.



#884647 Email Cópia Oculta

Posted by cris_gavioli on 30/11/2007, 15:49 in Visual Basic

Olá Pessoal!

Preciso de uma ajuda para saber como envia email cópia oculta através do VB com MAPI(Outlook)

Tenho o seguinte código que já esta enviando corretamente o email, mas não está como cópia oculta:

MAPISession1.SignOn
MAPIMessages1.SessionID = MAPISession1.SessionID
MAPIMessages1.Compose
MAPIMessages1.RecipAddress = email
MAPIMessages1.MsgSubject = txtAss.Text
MAPIMessages1.MsgNoteText = TxtCorp.Text

'anexa no final da mensagem
MAPIMessages1.AttachmentPosition = Len(MAPIMessages1.MsgNoteText)
'define o tipo de dados do anexo
MAPIMessages1.AttachmentType = mapData
'da um nome ao anexo; 'define o caminho e nome do arquivo a anexar
MAPIMessages1.AttachmentName = Anexo
MAPIMessages1.AttachmentPathName = txtAnexo.Text

'envia o arquivo
MAPISession1.SignOff

On Error GoTo rotina
MAPIMessages1.Send True

rotina:
If Err.Number <> 0 Then ' User cancelled
MsgBox "Você cancelou o envio de e-mail!"
On Error GoTo 0
Exit Sub
End If

Barão = MsgBox("Seu email foi enviado!", 48)

Agradeço a qlqr ajuda.



#881840 Upload Para Ftp

Posted by cris_gavioli on 13/11/2007, 16:21 in PHP

Sei que tem diversos artigos falando disso, mas nenhum deu certo para mim áté agora.

Seguinte tenho o input de foto:

<input name="foto1" type="file" size="62" />
<input type="hidden" name="MAX_FILE_SIZE" value="3000000" />

Preciso que essa foto seja salva no ftp.

Como faço isso?? é com move_upload mesmo??

Alguém pode me ajudar??

Grata.



#880268 Problema: Document.form.campo é Nulo

Posted by cris_gavioli on 06/11/2007, 14:29 in HTML, CSS e Metodologias

Agora faz mais sentido o problema é o seguinte ...
Pelo que entendi você quer pegar o nome do campo atual no caso o "anual1" e ao mesmo tempo da um "focus" em outro campo no formulário 2, só que você quer usar o mesmo nome do primeiro campo para ativar o segundo ... assim:

var camp = campo; // Aqui você pega o nome do campo no caso "anual1"

// Logo em seguida quer usar o nome para ativar o campo
// Resultado:  document.form2.anual1.focus();
document.form2.camp.focus();

Porém isso não funciona em JavaScript ele não considera uma variavel como nome de campo, você tem 2 soluções para resolver esse embrolio ...

1- Coloca o nome de campo direto sem dinamismo
document.form2.anual1.focus();

2- Usar a função "eval()" que fazem os códigos serem emulados pelo JS
eval("document.form2." + camp + ".focus();");


Espero que tenha entendido ...


Não dava para colocar direto porque essa função vai ser usada para vários campos...

Então usei Eval....Deu certinho...

Obrigada...



#880254 Problema: Document.form.campo é Nulo

Posted by cris_gavioli on 06/11/2007, 14:02 in HTML, CSS e Metodologias

Tem certeza que não está funcionado ... ou qual parte não está funcionado, na hora de pegar os valores ou na hora de um "focus" no outro formulário pois testei aqui e está OK ... testei assim:

&lt;script>
function VerificaData(digData, campo){
var data = digData;
var tam = data.length;
var camp = campo;

alert(tam + " - " + camp);

// document.form2.camp.focus(); 
}
</script>
<input name="anual1" size="7" onblur="VerificaData(this.value, this.name)">

Vele lembrar que o método "onblur" só vai ativar a função quando você tirar o foco dessa caisa de texto ou seja clicar em qualquer área fora da mesma ...


Pois é, eu tinha testado com alert aqui tbm...é mostrou o nome do campo certinho...

O problema é na hora do focus mesmo....Nessa hora que fala que é nulo ou não é um objeto...

Valew



#880249 Problema: Document.form.campo é Nulo

Posted by cris_gavioli on 06/11/2007, 13:41 in HTML, CSS e Metodologias

Olá pessoal!

Estou com o seguinte Problema:

Tenho o input:

<input name="anual1" size="7" onblur="VerificaData(this.value,this.name)">

E a função:

function VerificaData(digData,campo)
{
var data = digData;
var tam = data.length;
var camp = campo;
.
.
.
document.form2.camp.focus();
}

O problema é com o nome do input que não está pegando.... Alguém sabe pq??

Grata...



#879666 Concatenar Variáveis Php

Posted by cris_gavioli on 04/11/2007, 17:26 in PHP

Hummm...Eu já havia feito isso, mas o problema é quenão está pegando o valor da variável, dai achei que tinha algo errado ai...

Valew então...vou tentar descobrir ql é o problema..

Poxa, não tinha visto sua resposta antes...

Fiz aqui eu deu certo com array...

Brigadão pela ajuda... :rolleyes:

Esse tipo de cocatenação não existe é totalmente exdruxula e anti-semantica ...
O único jeito de juntar as variaeis desse jeito é usando a função "eval()" que emula códigos PHP ...

<?php
$id1 = "1";
eval("\$nome$id1 = $_POST["nasc" . $id1];");
eval("\$peso$id1 = $_POST["peso" . $id1];");

echo $nome1;
echo $peso1;
?>

A maneira mais correta de se fazer isso ao meu modo de intender é com Arrays associar o número em questão a variavel desejada ... tipo assim:

<?php

$nasc[$id1] = $_POST["nasc" . $id1];
$peso[$id1] = $_POST["peso" . $id1];

?>




#879654 Concatenar Variáveis Php

Posted by cris_gavioli on 04/11/2007, 16:08 in PHP

Err.

if($id1 = 1){
$variavel = $variavelfinal;
} else {
$variavel = $variavelinicial;
}
Se não for isso, se explique melhor, porque está difícil de comprender direito o que tu quer.


Seguinte, tenho o código :

while($id1!=0){
$"nasc$id1" = $_POST["nasc.$id1"];
$"peso$id1" = $_POST["peso.$id1"];
$"sexo$id1" = $_POST["pet.$id1"];
$"pet$id1" = $_POST["pet.$id1"];
$"racao$id1" = $_POST["racao.$id1"];
$"anual$id1" = $_POST["anual.$id1"];
$"raiva$id1" = $_POST["raiva.$id1"];
$"giardia$id1" = $_POST["giardia.$id1"];
$"gripe$id1" = $_POST["gripe.$id1"];
$"verm$id1" = $_POST["verm.$id1"];
$id1--;
}

Do jeito que está está dando o erro: unexpected T_CONSTANT_ENCAPSED_STRING, expecting T_VARIABLE .

Preciso que o nome da variavel junte-se com o numero da variável id.
Por exemplo: Se $id1=1 variável vai ter o nome $nasc1, $peso1 , $sexo1, etc.

Valew



#879650 Concatenar Variáveis Php

Posted by cris_gavioli on 04/11/2007, 15:46 in PHP

Olá pessoaL!

Estou com um problema na seguinte sintaxe:

$"nomcao$id1" = $_POST["nomcao.$id1"];

Preciso que a variável seja nomcao mais o valor da variável $id1, ou seja, se $id1=1, variável = $nomcao1

Já tentei de todas as formas possiveis, mas não consegui.

Se alguém tiver alguma idéia me fale.

Grata.



#873781 Imprimir Arquivo

Posted by cris_gavioli on 02/10/2007, 16:47 in PHP

Olá!!! Tudo certo??

Bom tenho uma pergunta, é o seguinte: Tenho um relatório feito em Crystal Report, quando o usuário entrar no site e clicar no botão de imprimir queria que este arquivo fosse impresso... como imprimo ele??Tem jeito de o usuário clicar no botão e já imprimir, sem exibir o relatório??? Se tem, digam, pois vão ajudar muito..

Caso não, eu fiz aparacer na tela esse arquivo, só que na hora da impressão sai tudo sem formatação. São duas folhas dai em vez de sair uma follha em uma página e a folha2 na outra página, sai metade da ultima folha na primeira página.

A página é a seguinte:

[codebox]<HTML>

<STYLE TYPE="text/css">
.folha {
page-break-after: always;
}
</STYLE>

<STYLE>
A {text-decoration:none}
A IMG {border-style:none; border-width:0;}
.fontColor10 {FONT-SIZE:9PT; ; FONT-FAMILY:Times New Roman; }
.fontColor11 {FONT-SIZE:9PT; ; FONT-FAMILY:Times New Roman; FONT-WEIGHT:BOLD; }
.fontColor12 {FONT-SIZE:11PT; ; FONT-FAMILY:Monotype Corsiva; }
.adornment10 {border:0PX none 000000; }
.adornment11 {border:0PX none 000000; }
.adornment12 {border-left:0PX none 000000; border-right:0PX none 000000; border-top:1PX solid 000000; border-bottom:0PX none 000000; }
</STYLE>

<BODY onload="java script:window.print()";'LEFTMARGIN="0" TOPMARGIN="0" BOTTOMMARGIN="0" RIGHTMARGIN="0">

<div class="folha">
<div style="position: absolute; width: 844px; height: 1089px; z-index: 1; left:88px; top:140px" id="camada1">
<div style="z-index:25; position:absolute; left:131PX; top:157PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:608PX; ">
<table height="0px" width="607PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:613PX; z-index:25; position:absolute; left:131PX; top:157PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:373PX; top:180PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:366PX; ">
<table height="0px" width="365PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:371PX; z-index:25; position:absolute; left:373PX; top:180PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:107PX; top:244PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:312PX; ">
<table height="0px" width="311PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:317PX; z-index:25; position:absolute; left:107PX; top:244PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:107PX; top:267PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:312PX; ">
<table height="0px" width="311PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:317PX; z-index:25; position:absolute; left:107PX; top:267PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:488PX; top:244PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:69PX; ">
<table height="0px" width="68PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:74PX; z-index:25; position:absolute; left:488PX; top:244PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:488PX; top:267PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:69PX; ">
<table height="0px" width="68PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:74PX; z-index:25; position:absolute; left:488PX; top:267PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:180PX; top:292PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:279PX; ">
<table height="0px" width="278PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:284PX; z-index:25; position:absolute; left:180PX; top:292PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:408PX; top:315PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:331PX; ">
<table height="0px" width="330PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:336PX; z-index:25; position:absolute; left:408PX; top:315PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:152PX; top:396PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:327PX; ">
<table height="0px" width="326PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:332PX; z-index:25; position:absolute; left:152PX; top:396PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:520PX; top:397PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:33PX; ">
<table height="0px" width="32PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:38PX; z-index:25; position:absolute; left:520PX; top:397PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:656PX; top:397PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:83PX; ">
<table height="0px" width="82PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:88PX; z-index:25; position:absolute; left:656PX; top:397PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:56PX; top:421PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:240PX; ">
<table height="0px" width="239PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:245PX; z-index:25; position:absolute; left:56PX; top:421PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:617PX; top:421PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:122PX; ">
<table height="0px" width="121PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:127PX; z-index:25; position:absolute; left:617PX; top:421PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:360PX; top:421PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:209PX; ">
<table height="0px" width="208PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:214PX; z-index:25; position:absolute; left:360PX; top:421PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:72PX; top:443PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:182PX; ">
<table height="0px" width="181PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:187PX; z-index:25; position:absolute; left:72PX; top:443PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:552PX; top:443PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:187PX; ">
<table height="0px" width="186PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:192PX; z-index:25; position:absolute; left:552PX; top:443PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:304PX; top:443PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:176PX; ">
<table height="0px" width="175PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:181PX; z-index:25; position:absolute; left:304PX; top:443PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:152PX; top:484PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:281PX; ">
<table height="0px" width="280PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:286PX; z-index:25; position:absolute; left:152PX; top:484PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:664PX; top:484PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:75PX; ">
<table height="0px" width="74PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:80PX; z-index:25; position:absolute; left:664PX; top:484PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:152PX; top:507PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:279PX; ">
<table height="0px" width="278PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:284PX; z-index:25; position:absolute; left:152PX; top:507PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:480PX; top:484PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:99PX; ">
<table height="0px" width="98PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:104PX; z-index:25; position:absolute; left:480PX; top:484PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:480PX; top:507PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:96PX; ">
<table height="0px" width="95PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:101PX; z-index:25; position:absolute; left:480PX; top:507PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:664PX; top:507PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:75PX; ">
<table height="0px" width="74PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:80PX; z-index:25; position:absolute; left:664PX; top:507PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:170PX; top:619PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:569PX; ">
<table height="0px" width="568PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:574PX; z-index:25; position:absolute; left:170PX; top:619PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:216PX; top:660PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:63PX; ">
<table height="0px" width="62PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:68PX; z-index:25; position:absolute; left:216PX; top:660PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:16PX; top:638PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:723PX; ">
<table height="0px" width="722PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:728PX; z-index:25; position:absolute; left:16PX; top:638PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:632PX; top:244PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:107PX; ">
<table height="0px" width="106PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:112PX; z-index:25; position:absolute; left:632PX; top:244PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:632PX; top:267PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:107PX; ">
<table height="0px" width="106PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:112PX; z-index:25; position:absolute; left:632PX; top:267PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:574PX; top:569PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:165PX; ">
<table height="0px" width="164PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:170PX; z-index:25; position:absolute; left:574PX; top:569PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:7PX; top:688PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:7PX; top:688PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:384PX; top:688PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:384PX; top:688PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:8PX; top:710PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:8PX; top:710PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:385PX; top:710PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:385PX; top:710PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:8PX; top:734PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:8PX; top:734PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:385PX; top:734PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:385PX; top:734PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:8PX; top:758PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:8PX; top:758PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:385PX; top:758PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:385PX; top:758PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:8PX; top:782PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:8PX; top:782PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:385PX; top:782PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:385PX; top:782PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:8PX; top:806PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:8PX; top:806PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:385PX; top:806PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:385PX; top:806PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:8PX; top:830PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:8PX; top:830PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:385PX; top:830PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:385PX; top:830PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:8PX; top:854PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:8PX; top:854PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:385PX; top:854PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:385PX; top:854PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:8PX; top:878PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:8PX; top:878PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:385PX; top:878PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:385PX; top:878PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:8PX; top:902PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:8PX; top:902PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:385PX; top:902PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:356PX; ">
<table height="0px" width="355PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:361PX; z-index:25; position:absolute; left:385PX; top:902PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:72PX; top:958PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:255PX; ">
<table height="0px" width="254PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:260PX; z-index:25; position:absolute; left:72PX; top:958PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:488PX; top:958PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:251PX; ">
<table height="0px" width="250PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:256PX; z-index:25; position:absolute; left:488PX; top:958PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:186PX; top:982PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:553PX; ">
<table height="0px" width="552PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:558PX; z-index:25; position:absolute; left:186PX; top:982PX; ">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:134PX; top:1006PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:605PX; ">
<table height="0px" width="604PX"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:610PX; z-index:25; position:absolute; left:134PX; top:1006PX; ">
<TR><TD></TD></TR></TABLE>

<DIV style="z-index:15; position:absolute; left:19PX; top:8PX; width:729PX; height:81PX; " class="adornment10" >
<img SRC="http://www.mgisoft.c...anco10000.jpg">
</DIV>
<DIV style="z-index:25; position:absolute; left:16PX; top:142PX; width:752PX; height:16PX; " class="adornment11" >
<table width="747PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Casais Responsáveis:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:166PX; width:248PX; height:15PX; " class="adornment11" >
<table width="243PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Data da reunião: ___/___/___ - _________</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:15PX; top:190PX; width:737PX; height:16PX; " class="adornment11" ALIGN="CENTER">
<table width="732PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph" ALIGN="CENTER"><span class="fontColor11">(DEIXAR ESTA FICHA NA SACRISTIA APÓS O CASAMENTO )</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:264PX; top:166PX; width:501PX; height:15PX; " class="adornment11" >
<table width="496PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Com a Presença de:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:230PX; width:120PX; height:15PX; " class="adornment11" >
<table width="115PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Nome da Noiva:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:254PX; width:120PX; height:15PX; " class="adornment11" >
<table width="115PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Nome do Noivo: </span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:432PX; top:230PX; width:48PX; height:15PX; " class="adornment11" >
<table width="43PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Celular: </span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:432PX; top:254PX; width:48PX; height:15PX; " class="adornment11" >
<table width="43PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Celular:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:302PX; width:360PX; height:16PX; " class="adornment11" >
<table width="355PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Data\Horário do Casamento: ___/___/___ - _________</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:472PX; top:278PX; width:136PX; height:15PX; " class="adornment11" >
<table width="131PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Paróquia ( )</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:278PX; width:168PX; height:15PX; " class="adornment11" >
<table width="163PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Paróquia do curso dos noivos:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:616PX; top:278PX; width:128PX; height:16PX; " class="adornment11" >
<table width="123PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Capela ( )</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:8PX; top:334PX; width:752PX; height:32PX; " class="adornment11" ALIGN="CENTER">
<table width="747PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph" ALIGN="CENTER"><span class="fontColor11">(Obs: Padre convidado tem que ter autorização prévia da Paróquia e para efeito civil tem que ter firma aberta no cartório de </span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:336PX; top:302PX; width:112PX; height:15PX; " class="adornment11" >
<table width="107PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Celebrante:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:584PX; top:406PX; width:169PX; height:15PX; " class="adornment11" >
<table width="164PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">CEP:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:312PX; top:406PX; width:169PX; height:15PX; " class="adornment11" >
<table width="164PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Bairro:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:496PX; top:430PX; width:169PX; height:15PX; " class="adornment11" >
<table width="164PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Paróquia:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:382PX; width:169PX; height:15PX; " class="adornment11" >
<table width="164PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Endereço futuro do casal:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:496PX; top:382PX; width:24PX; height:15PX; " class="adornment11" >
<table width="19PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Nº:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:568PX; top:382PX; width:88PX; height:15PX; " class="adornment11" >
<table width="83PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Complemento:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:264PX; top:430PX; width:169PX; height:15PX; " class="adornment11" >
<table width="164PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Email:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:430PX; width:169PX; height:15PX; " class="adornment11" >
<table width="164PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Telefone:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:406PX; width:56PX; height:15PX; " class="adornment11" >
<table width="51PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Cidade:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:470PX; width:143PX; height:15PX; " class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Nome dos Pais da Noiva:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:448PX; top:470PX; width:143PX; height:15PX; " class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Tel:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:448PX; top:494PX; width:143PX; height:15PX; " class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Tel:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:494PX; width:143PX; height:15PX; " class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Nome dos Pais da Noivo:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:592PX; top:470PX; width:143PX; height:15PX; " class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Estado Civil:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:592PX; top:494PX; width:143PX; height:15PX; " class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Estado Civil:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:534PX; width:248PX; height:15PX; " class="adornment11" >
<table width="243PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Casamento será realizado com efeito Civil:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:288PX; top:534PX; width:96PX; height:15PX; " class="adornment11" >
<table width="91PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Sim</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:368PX; top:534PX; width:88PX; height:15PX; " class="adornment11" >
<table width="83PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Não</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:558PX; width:248PX; height:15PX; " class="adornment11" >
<table width="243PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Mestre de cerimônia contratado:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:582PX; width:56PX; height:16PX; " class="adornment11" >
<table width="51PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor11">Entrada:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:80PX; top:582PX; width:416PX; height:16PX; " class="adornment11" >
<table width="411PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Padrinhos entrarão com uma música. Noivo com sua mãe com outra música</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:12PX; top:606PX; width:744PX; height:16PX; " class="adornment11" >
<table width="739PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Outra forma para a entrada: </span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:646PX; width:226PX; height:15PX; " class="adornment11" >
<table width="221PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Quantidade de Padrinhos dos noivos:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:12PX; top:670PX; width:744PX; height:16PX; " class="adornment11" ALIGN="CENTER">
<table width="739PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph" ALIGN="CENTER"><span class="fontColor10">(Se houver ordem de entrada, utilizar as linhas abaixo - Não há necessidade de sugerir para os noivos)</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:288PX; top:558PX; width:96PX; height:15PX; " class="adornment11" >
<table width="91PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Sim</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:368PX; top:558PX; width:88PX; height:15PX; " class="adornment11" >
<table width="83PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Não</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:528PX; top:582PX; width:96PX; height:15PX; " class="adornment11" >
<table width="91PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Sim</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:608PX; top:582PX; width:88PX; height:15PX; " class="adornment11" >
<table width="83PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Não</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:472PX; top:558PX; width:116PX; height:15PX; " class="adornment11" >
<table width="111PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">- Nome\Telefone:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:568PX; top:230PX; width:61PX; height:15PX; " class="adornment11" >
<table width="56PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Paróquia: </span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:568PX; top:254PX; width:61PX; height:15PX; " class="adornment11" >
<table width="56PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Paróquia: </span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:945PX; width:116PX; height:15PX; " class="adornment11" >
<table width="111PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">1ª Leitura:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:969PX; width:169PX; height:15PX; " class="adornment11" >
<table width="164PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Dama de honra (Nome\Idade):</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16PX; top:993PX; width:169PX; height:15PX; " class="adornment11" >
<table width="164PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Pajem (Nome\Idade):</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:344PX; top:945PX; width:169PX; height:15PX; " class="adornment11" >
<table width="164PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Salmo ou Prece dos fiéis:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:8PX; top:1025PX; width:752PX; height:19PX; " class="adornment11" ALIGN="CENTER">
<table width="747PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph" ALIGN="CENTER"><span class="fontColor12">"Trabalhar com amor é orar com as mâos" - Dom Bosco</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:8PX; top:1049PX; width:752PX; height:16PX; " class="adornment11" ALIGN="CENTER">
<table width="747PX" border=0 cellpadding="0" cellspacing="0"><tr><td NOWRAP class="paragraph" ALIGN="CENTER"><span class="fontColor10">Programa feito por Gsystem - Telefone para contato 9745-0436 </span></td></tr></table>
</DIV>
<BR>

</div>
</div>

<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>

<div class="folha">
<div style="position: absolute; width: 777px; height: 1028px; z-index: 1; left: 87px; top: 1235px" id="camada2">
<div style="z-index:25; position:absolute; left:155PX; top:154PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:576PX; ">
<table height="0px" width="575PX" id="table1"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:581PX; z-index:25; position:absolute; left:155PX; top:154PX; " id="table2">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:168PX; top:220PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:563PX; ">
<table height="0px" width="562PX" id="table3"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:568PX; z-index:25; position:absolute; left:168PX; top:220PX; " id="table4">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:22PX; top:243PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:709PX; ">
<table height="0px" width="708PX" id="table5"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:714PX; z-index:25; position:absolute; left:22PX; top:243PX; " id="table6">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:420PX; top:301PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:311PX; ">
<table height="0px" width="310PX" id="table7"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:316PX; z-index:25; position:absolute; left:420PX; top:301PX; " id="table8">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:24PX; top:350PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:707PX; ">
<table height="0px" width="706PX" id="table9"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:712PX; z-index:25; position:absolute; left:24PX; top:350PX; " id="table10">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:94PX; top:326PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:637PX; ">
<table height="0px" width="636PX" id="table11"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:642PX; z-index:25; position:absolute; left:94PX; top:326PX; " id="table12">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:24PX; top:374PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:707PX; ">
<table height="0px" width="706PX" id="table13"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:712PX; z-index:25; position:absolute; left:24PX; top:374PX; " id="table14">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:24PX; top:398PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:707PX; ">
<table height="0px" width="706PX" id="table15"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:712PX; z-index:25; position:absolute; left:24PX; top:398PX; " id="table16">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:24PX; top:422PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:707PX; ">
<table height="0px" width="706PX" id="table17"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:712PX; z-index:25; position:absolute; left:24PX; top:422PX; " id="table18">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:24PX; top:446PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:707PX; ">
<table height="0px" width="706PX" id="table19"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:712PX; z-index:25; position:absolute; left:24PX; top:446PX; " id="table20">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:24PX; top:470PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:707PX; ">
<table height="0px" width="706PX" id="table21"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:712PX; z-index:25; position:absolute; left:24PX; top:470PX; " id="table22">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:24PX; top:494PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:707PX; ">
<table height="0px" width="706PX" id="table23"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:712PX; z-index:25; position:absolute; left:24PX; top:494PX; " id="table24">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:24PX; top:518PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:707PX; ">
<table height="0px" width="706PX" id="table25"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:712PX; z-index:25; position:absolute; left:24PX; top:518PX; " id="table26">
<TR><TD></TD></TR></TABLE>
<div style="z-index:25; position:absolute; left:24PX; top:542PX; border-color:000000; border-style:solid; border-top-width:1PX; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;width:707PX; ">
<table height="0px" width="706PX" id="table27"><tr><td>&nbsp;</td></tr></table>
</div>

<TABLE border=1 style=" border-color:000000; border-style:solid; border-left-width:0px;border-right-width:0px; border-bottom-width:0px;height:0px; width:712PX; z-index:25; position:absolute; left:24PX; top:542PX; " id="table28">
<TR><TD></TD></TR></TABLE>

<DIV style="z-index:15; position:absolute; left:24PX; top:8PX; width:729PX; height:81PX; " class="adornment10" >
<img SRC="http://www.mgisoft.c...anco10000.jpg">
</DIV>
<DIV style="z-index:25; position:absolute; left:24PX; top:118PX; width:143PX; height:15PX; " class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0" id="table29"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Os noivos irão comungar:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:24PX; top:142PX; width:143PX; height:15PX; " class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0" id="table30"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Florista (Nome\Idade):</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:58px; top:166px; width:713PX; height:16PX" class="adornment11" >
<table width="708PX" border=0 cellpadding="0" cellspacing="0" id="table31"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Os padrinhos cumprimentam os noivos no centro do altar,
(respeitando a ordem de entrada) e saem pelo corredor central:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:24PX; top:206PX; width:143PX; height:15PX; " class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0" id="table32"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Outra forma para a saída:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:24PX; top:254PX; width:329PX; height:15PX; " class="adornment11" >
<table width="324PX" border=0 cellpadding="0" cellspacing="0" id="table33"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Noivos receberão os cumprimentos dos convidados na igreja:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:20px; top:166px; width:143PX; height:16PX" class="adornment11" >
<table width="138PX" border=0 cellpadding="0" cellspacing="0" id="table34"><tr><td NOWRAP class="paragraph"><span class="fontColor11">Saída:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:256PX; top:118PX; width:88PX; height:15PX; " class="adornment11" >
<table width="83PX" border=0 cellpadding="0" cellspacing="0" id="table35"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Não</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:176PX; top:118PX; width:96PX; height:15PX; " class="adornment11" >
<table width="91PX" border=0 cellpadding="0" cellspacing="0" id="table36"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Sim</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:104PX; top:182PX; width:88PX; height:15PX; " class="adornment11" >
<table width="83PX" border=0 cellpadding="0" cellspacing="0" id="table37"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Não</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:24PX; top:182PX; width:96PX; height:15PX; " class="adornment11" >
<table width="91PX" border=0 cellpadding="0" cellspacing="0" id="table38"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Sim</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:496PX; top:254PX; width:88PX; height:15PX; " class="adornment11" >
<table width="83PX" border=0 cellpadding="0" cellspacing="0" id="table39"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Não</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:416PX; top:254PX; width:96PX; height:15PX; " class="adornment11" >
<table width="91PX" border=0 cellpadding="0" cellspacing="0" id="table40"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Sim</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:352PX; top:118PX; width:388PX; height:16PX; " class="adornment11" >
<table width="383PX" border=0 cellpadding="0" cellspacing="0" id="table41"><tr><td NOWRAP class="paragraph"><span class="fontColor11">Música instrumental em nível baixo, quando da fala do Celebrante</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:24PX; top:286PX; width:329PX; height:15PX; " class="adornment11" >
<table width="324PX" border=0 cellpadding="0" cellspacing="0" id="table42"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Deseja indicar o local da recepção:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:240PX; top:286PX; width:96PX; height:15PX; " class="adornment11" >
<table width="91PX" border=0 cellpadding="0" cellspacing="0" id="table43"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Sim</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:320PX; top:286PX; width:88PX; height:15PX; " class="adornment11" >
<table width="83PX" border=0 cellpadding="0" cellspacing="0" id="table44"><tr><td NOWRAP class="paragraph"><span class="fontColor10">( ) Não</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:24PX; top:310PX; width:116PX; height:15PX; " class="adornment11" >
<table width="111PX" border=0 cellpadding="0" cellspacing="0" id="table45"><tr><td NOWRAP class="paragraph"><span class="fontColor10">Observação:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:10px; top:1005px; width:752PX; height:16PX" class="adornment11" ALIGN="CENTER">
<table width="747PX" border=0 cellpadding="0" cellspacing="0" id="table46"><tr><td NOWRAP class="paragraph" ALIGN="CENTER"><span class="fontColor10">Programa feito por Gsystem - Telefone para contato 9745-0436 </span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:10px; top:981px; width:752PX; height:19PX" class="adornment11" ALIGN="CENTER">
<table width="747PX" border=0 cellpadding="0" cellspacing="0" id="table47"><tr><td NOWRAP class="paragraph" ALIGN="CENTER"><span class="fontColor12">"Trabalhar com amor é orar com as mâos" - Dom Bosco</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16px; top:669px; width:329PX; height:15PX" class="adornment11" >
<table width="324PX" border=0 cellpadding="0" cellspacing="0" id="table48"><tr><td NOWRAP class="paragraph"><span class="fontColor13">LEMBRETES AOS NOIVOS:</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:21px; top:693px; width:712PX; height:40PX" class="adornment11" >
<table width="707PX" border=0 cellpadding="0" cellspacing="0" id="table49"><tr><td NOWRAP class="paragraph">
<p style="margin-top: 0; margin-bottom: 0"><span class="fontColor11"> Cuidado com o atraso! Caso ultrapasse 15 minutos, o celebrante poderá ir embora ou iniciar o próximo casamento.
É muito importatnte o </span></p>
<p style="margin-top: 0; margin-bottom: 0"><span class="fontColor11">
respeito de todos.</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:9px; top:733px; width:688PX; height:17PX" class="adornment11" >
<table width="683PX" border=0 cellpadding="0" cellspacing="0" id="table50"><tr><td NOWRAP class="paragraph"><span class="fontColor14">2. Não é permitido jogar arroz ou pétalas de rosas dentro ou fora da Igreja.</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:11px; top:757px; width:688PX; height:15PX" class="adornment11" >
<table width="683PX" border=0 cellpadding="0" cellspacing="0" id="table51"><tr><td NOWRAP class="paragraph"><span class="fontColor11">3. Obter assinatura dos Padrinhos (testemunhas antes da Cerimônia)</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:16px; top:805px; width:329PX; height:15PX" class="adornment11" >
<table width="324PX" border=0 cellpadding="0" cellspacing="0" id="table52"><tr><td NOWRAP class="paragraph"><span class="fontColor13">LEMBRETES PARA A EQUIPE DE CELEBRAÇÃO::</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:32px; top:837px; width:680PX; height:32PX" class="adornment11" >
<table width="675PX" border=0 cellpadding="0" cellspacing="0" id="table53"><tr><td NOWRAP class="paragraph"><span class="fontColor11"> É proibido utilizar os equipamentos de som, data show, apagar as luzes da igreja durante cerimônia e cadeiras no </span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:32px; top:877px; width:688PX; height:15PX" class="adornment11" >
<table width="683PX" border=0 cellpadding="0" cellspacing="0" id="table54"><tr><td NOWRAP class="paragraph"><span class="fontColor11">Se algum destes itens mencionados acima forem extremamente necessários, é preciso autorização do Padre.</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:32px; top:901px; width:688PX; height:56PX" class="adornment11" >
<table width="683PX" border=0 cellpadding="0" cellspacing="0" id="table55"><tr><td NOWRAP class="paragraph">
<p style="margin-top: 0; margin-bottom: 0"><span class="fontColor11"> Ajustes na decoração da Igreja, é responsabilidade da floricultura. (ex: acender as velas das pilastras). Não é&nbsp;
permitido retirar os enfeites </span></p>
<p style="margin-top: 0; margin-bottom: 0"><span class="fontColor11"> da
igreja antes do segundo casamento.</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:9px; top:693px; width:116PX; height:16PX" class="adornment11" >
<table width="111PX" border=0 cellpadding="0" cellspacing="0" id="table56"><tr><td NOWRAP class="paragraph"><span class="fontColor11">1.</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:20px; top:837px; width:116PX; height:16PX" class="adornment11" >
<table width="111PX" border=0 cellpadding="0" cellspacing="0" id="table57"><tr><td NOWRAP class="paragraph"><span class="fontColor11">1.</span></td></tr></table>
</DIV>

<DIV style="z-index:25; position:absolute; left:20px; top:901px; width:116PX; height:16PX" class="adornment11" >
<table width="111PX" border=0 cellpadding="0" cellspacing="0" id="table58"><tr><td NOWRAP class="paragraph"><span class="fontColor11">2.</span></td></tr></table>
</DIV>
<BR>

</div>
</div>
</BODY>
</HTML>[/codebox]



#869219 Desativar Imput Dependendo Do Value Da Combobox

Posted by cris_gavioli on 05/09/2007, 17:18 in HTML, CSS e Metodologias

Olá...Tdo bem??

Prciso desativar um input(local) se a option do combobox for igual a Não....


[codebox]<select size="1" name="recep" onKeyDown="if(event.keyCode==13) event.keyCode=9;">
<option <?if($recep=='Não'){echo 'selected';}?> value="Não">Não</option>
<option <?if($recep=='Sim'){echo 'selected';}?> value="Sim">Sim</option>
</select>    </b>
<input type="text" name="local" value="<?=$localrecep?>" <?//if($recep!='' and $recep=='Não'){echo 'disabled';}?> size="93" onKeyDown="if(event.keyCode==13) event.keyCode=9;"><b> </b></p>
[/codebox]

Como faço?? Alguém pode me ajudar?

Grata...



#868034 Selecionar Opção No Combobox

Posted by cris_gavioli on 30/08/2007, 14:08 in HTML, CSS e Metodologias

Desculpe a demora em responder...

é o seguinte tenho a combo:

<select size="1" name="mes" style="width: 107; height: 22" onfocus="VerificaData(data.value);">
<option>Janeiro</option>
<option>Fevereiro</option>
<option>Março</option>
<option>Abril</option>
<option>Maio</option>
<option>Junho</option>
<option>Julho</option>
<option>Agosto</option>
<option>Setembro</option>
<option>Outubro</option>
<option>Novembro</option>
<option>Dezembro</option>
</select>
No banco de dados tenho cadastrado Dezembro.

Como faço para selecionar a opção Dezembro??

já tentei <option selected value=' Dezembro'></option> mas não deu certo...

Grata

Preciso selecionar sem adicionar uma opção....



#867384 Selecionar Opção No Combobox

Posted by cris_gavioli on 24/08/2007, 15:32 in HTML, CSS e Metodologias

Boa tarde! Tudo bem?

Bom preciso de uma ajuda para selecionar um registro do combobox.

O que acontece é o seguinte:

Tenho uma combo onde aparece todos os registros mysql..[Vila 1, Vila 2, Vila 3....]
Quero que qd o usuário clique em Vila 1 este registro apareça selecionado na combo.

Alguém sabe como posso fazer isto??


Grata



#866761 Componente Para Exibir Registros[resolvido]

Posted by cris_gavioli on 21/08/2007, 14:56 in PHP

Pode tentar este aqui.
É bem intuitivo: LINK1


Oiii..dei uma olhada...mas acabei achando um mai facim
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"><html><head><title>Tabela</title><style type="text/css">body { font: normal 11px tahoma,arial,serif; }table{margin: 0px;}table,th,td{border-collapse: collapse;}th,td{border-bottom: 1px solid #000000;padding: 0px;}th span,td span{display: block; padding: 3px}#lista table {width: 350px;}#lista th{color: #FFFFFF;background-color: #E92345;text-align: left}#lista.tabContainer {width: 366px;border: 1px solid #000000}#lista .scrollContainer {width: 366px;height: 100px;overflow: auto;}#lista .tabela-coluna0{width: 100px;}#lista .tabela-coluna1{width: 150px;}#lista .tabela-coluna2{width: 100px;}</style></head><body><div class="tabContainer" id="lista">    <table border="0px">        <thead>            <tr>                <th class="tabela-coluna0"><span>CPF</span></th>                <th class="tabela-coluna1"><span>Nome</span></th>                <th class="tabela-coluna2"><span>Cargo</span></th>            </tr>        </thead>    </table>    <div class="scrollContainer">        <table border="0">            <tbody>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>                <tr>                    <td class="tabela-coluna0"><span>111.111.111-11</span></td>                    <td class="tabela-coluna1"><span>Jorge Luiz da Silva</span></td>                    <td class="tabela-coluna2"><span>teste</span></td>                </tr>            </tbody>        </table>    </div></div></body></html>
Vlwww



#866556 Componente Para Exibir Registros[resolvido]

Posted by cris_gavioli on 20/08/2007, 14:30 in PHP

Pessoal...Boa tarde!

Gostaria de saber se alguém tem alguma sugestão de algum componente para exibir registros mysql (em php) como o DBGRID utilizado em VB.



#866035 Pegar Valores Separados Por Ponto[resolvido]

Posted by cris_gavioli on 16/08/2007, 14:06 in PHP

Olá! Tudo bem?


Bom tenho uma dúviada...Queria saber como faço para pegar valor que estão antes do ponto e depois do ponto...

Exemplo: tenho a varavel $od=45.29;
como faço para pegar o valor 45 e 29.
esta varável pode receber numeros com mais algarismos ($od=87925.59)
Da pra usar a função split ?? explode??

Resolvi com isto:
$orig = "10.000.00";
$orig = explode(".",$orig);



#865510 Agendamento De Script

Posted by cris_gavioli on 13/08/2007, 13:45 in PHP

Olá Pessoal!

Preciso fazer um agendamento de script php, mas meu servidor não tem este recurso.

Alguém sabe commo posso fazer isto??(Windows)

Grata



#864593 Subtrair Data[resolvido]

Posted by cris_gavioli on 07/08/2007, 15:09 in PHP

Sim, a data $datas1 busco no bd..
Mudei aqui agora e continua dando errado ...ta dando 0, pelo menos o resultado ta menos absurdo que antes...

$datas1=implode("-",array_reverse(explode("/",$datas)));
setlocale(LC_TIME, "br_BR");
$data_at = strftime("%Y-%m-%d");

if($sit=='Pendente'){
$df1 = mktime(0, 0, 0, $datas1[1], $datas1[0], $datas1[2]);
$d = mktime(0, 0, 0, $data_at[1], $data_at[0], $data_at[2]);

$pend = (($d - $df1)/86400);



#864587 Subtrair Data[resolvido]

Posted by cris_gavioli on 07/08/2007, 14:43 in PHP

Pessoal, não estou conseguindo visualizar o erro da minha função que verifica quantos dias se passaram.

$datas1=implode("-",array_reverse(explode("/",$datas)));//recebe na forma 0000-00-00
if($sit=='Pendente'){

$df1 = mktime(0, 0, 0, $datas1[1], $datas1[0], $datas1[2]);
$pend = (int)((time() - $df1)/86400); //faz a diferença da data atual

}

Alguém sabe ql é o erro?



#863964 Verificar Uma Página Php Todo Dia

Posted by cris_gavioli on 03/08/2007, 13:54 in PHP

Meu sistema é Windowns, meu servidor não tem a opção de agendamento nele...

E não posso usar o agendamento de tarefas do windowns, pois eu queria um sitema que não precisasse manter o Pc ligado.

Ouvi dizer que tem uns sites que deixam fazer isto....Alguém pode me indicar???

Grata....



#863825 Verificar Uma Página Php Todo Dia

Posted by cris_gavioli on 02/08/2007, 16:58 in PHP

Boa Tarde!

Tenho um dúvida a respeito do agendador de tarefa....
Eu criei o arquivo .bat que carrega a página php que quero agendar, porém se ficar em meu coputador, caso este estiver desligado não iráexecutar a tarefa né???

Então tenho que colocar o arquivo .bat no servidor??



#863556 Espaço Entre Tabelas [resolvido]

Posted by cris_gavioli on 01/08/2007, 15:17 in HTML, CSS e Metodologias

Alguém sabe em que outro tipo de tabela eu poderia mostrar os dados mysql, para que não aconteça isso, de ficar com espaço entre as linhas por causa do form.

Grata



#863153 Espaço Entre Tabelas [resolvido]

Posted by cris_gavioli on 30/07/2007, 14:27 in HTML, CSS e Metodologias

Coloquei isso, mas não deu certo...

<div style="position: absolute; width: 680px; height: 250px; z-index: 4; left: 133px; top: 202px" id="camada1">

<fieldset style="width: 655px; height: 240px; padding: 2">
<legend><font size="4" color="#000080"><b><i>Selecione o usuário que deseja
para visualizar a agenda</i></b></font>
</legend>
<table border="1" width="646" id="table5" height="28" cellspacing="0" cellpadding="0">
<tr>
<td width="95" align="center">&nbsp;Clique aqui:</td>
<td width="482" align="center">
Nome:&nbsp; </td>
<td width="187" align="center"> Apelido:&nbsp;&nbsp; </td>
</tr>
</table>

<?

$empresa= $_SESSION["apelido"];
$sql="Select * from usuario_emp where empresa='$empresa'";
$resultado=mysql_query($sql,$conexao) or die (mysql_error());

while ($linha=mysql_fetch_array($resultado)) {
$nome = $linha["nome"];
$apelidol = $linha["login"];

?>

<form name="Nome" method="POST" action="visual_agenda.php?login=<?=$apelidol?>">
<table border="1" width="100%" id="table6" cellspacing="0" cellpadding="0">
<tr>
<td width="83" align="center">
<input type="radio" value="on" name="ok" onClick="form.submit();"></td>
<td width="0" align="center">
<p align="left"><?=$nome?>&nbsp; </td>
<td width="159" align="center"><?=$apelidol?>&nbsp;</td>
</tr>
</table>
</form>
<?
}
?>
</fieldset>
</div>

Continua com o espaço...
Alguém sabe como posso tirar o espaço entre as linhas??



#863146 Espaço Entre Tabelas [resolvido]

Posted by cris_gavioli on 30/07/2007, 14:02 in HTML, CSS e Metodologias

Pessoal tenho o seguinte código:

[codebox]
<div style="position: absolute; width: 680px; height: 250px; z-index: 4; left: 133px; top: 202px" id="camada1">

<fieldset style="width: 655px; height: 240px; padding: 2">
<legend><font size="4" color="#000080"><b><i>Selecione o usuário que deseja
para visualizar a agenda</i></b></font>
</legend>
<table border="1" width="646" id="table5" height="28">
<tr>
<td width="95" align="center">&nbsp;Clique aqui:</td>
<td width="482" align="center">
Nome:&nbsp; </td>
<td width="187" align="center"> Apelido:&nbsp;&nbsp; </td>
</tr>
</table>

<?

$empresa= $_SESSION["apelido"];
$sql="Select * from usuario_emp where empresa='$empresa'";
$resultado=mysql_query($sql,$conexao) or die (mysql_error());

while ($linha=mysql_fetch_array($resultado)) {
$nome = $linha["nome"];
$apelidol = $linha["login"];

?>

<form name="Nome" method="POST" action="visual_agenda.php?login=<?=$apelidol?>">
<table border="1" width="100%" id="table6">
<tr>
<td width="83" align="center">
<input type="radio" value="on" name="ok" onClick="form.submit();"></td>
<td width="0" align="center">
<p align="left"><?=$nome?>&nbsp; </td>
<td width="159" align="center"><?=$apelidol?>&nbsp;</td>
</tr>
</table>
</form>
<?
}
?>
</fieldset>
</div>
[/codebox]

O problema é que por causa do form deixa as linhas da tabela com um grande espaço entre elas...

Alguém sabe como posso solucionar isto???

Grata...



#861585 Aparecer Campo Quando Seleciono Opção Em Select

Posted by cris_gavioli on 22/07/2007, 18:48 in HTML, CSS e Metodologias

Valew era isso mesmo que eu estava querendo....
: )




IPB Skin By Virteq