jafm Posted February 26, 2013 at 04:03 PM Report #497081 Posted February 26, 2013 at 04:03 PM (edited) Olá, Gostaria que a Msgbox que apresente se fechasse automaticamente. Ser ser necessário clicar em ok Estava a experimentar algo deste gênero, mas não resulta. MsgBox("Com Sucesso!") 'System.Threading.Thread.Sleep("100") Me.Close() Edited February 26, 2013 at 06:38 PM by thoga31 GeSHi
NunoDinis Posted February 26, 2013 at 04:26 PM Report #497087 Posted February 26, 2013 at 04:26 PM Dá uma olhadela nisto: http://www.tomasvasquez.com.br/blog/microsoft-office/vba-fechar-msgboxs-automaticamente Estranha forma de vida que tem a capacidade de transformar comandos em mensagens de erro. ndsotware.org
jafm Posted February 26, 2013 at 04:45 PM Author Report #497088 Posted February 26, 2013 at 04:45 PM (edited) Não me parece que funciona. Coloquei da seguintes forma, Private Sub AutoCloseMsgBox(Mensagem As String, Titulo As String, Segundos As Integer) Dim oSHL = CreateObject("WScript.Shell") oSHL.PopUp(Mensagem, Segundos, Titulo, vbOKOnly + vbInformation) End Sub depois no chamei da seguinte forma, mas dá erro de sintaxe... AutoCloseMsgBox("MsgBox - Com Sucesso!", 2) Edited February 26, 2013 at 06:38 PM by thoga31 GeSHi
NunoDinis Posted February 26, 2013 at 04:56 PM Report #497092 Posted February 26, 2013 at 04:56 PM (edited) Estive a testar e consegui. Falta passar um parâmetro, o titulo: AutoCloseMsgBox("MsgBox - Com Sucesso!", "nuno", 2) Edited February 26, 2013 at 04:57 PM by NunoDinis Estranha forma de vida que tem a capacidade de transformar comandos em mensagens de erro. ndsotware.org
jafm Posted February 26, 2013 at 05:00 PM Author Report #497094 Posted February 26, 2013 at 05:00 PM O erro é o seguinte: Argument not specified for parameter 'Segundos' of 'Private Sub AutoCloseMsgBox (Mensagem As String, Titulo As String, Segundos As Integer)
NunoDinis Posted February 26, 2013 at 05:01 PM Report #497095 Posted February 26, 2013 at 05:01 PM É, é falta de parâmetro. Já corrigi acima.. Estranha forma de vida que tem a capacidade de transformar comandos em mensagens de erro. ndsotware.org
jafm Posted February 26, 2013 at 05:13 PM Author Report #497099 Posted February 26, 2013 at 05:13 PM ya... Obrigado pela ajuda
NunoDinis Posted February 26, 2013 at 07:11 PM Report #497117 Posted February 26, 2013 at 07:11 PM de nada, bom trabalho 🙂 Estranha forma de vida que tem a capacidade de transformar comandos em mensagens de erro. ndsotware.org
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now