OPCAO PARA NAO ENCERRAR PROGRAMA

USUARIO.EXCLUIDOS 11/09/2007 17:48:34
#235111
Pessoal,

montei um programa, e tenho uma Variavel booleana.
Eu quero fazer com o que o aplicativo só seja encerrado se a variável estiver como False.

Se estiver True, o aplicativo continua aberto.

Alguem pode me ajudar?

ICEMAN 11/09/2007 17:56:27
#235114
Resposta escolhida
no form principal vc coloca assim
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
if variavel=false then
end
elseif varialvel=true then
Cancel = True
msgbox "O aplicativo não pode ser encerrado",vbcritical +vbokonly,"Erro ao finalizar"
end if
exit sub

USUARIO.EXCLUIDOS 11/09/2007 18:00:07
#235116
OK, funcionou.

Obrigado.
Tópico encerrado , respostas não são mais permitidas