Jump to content

Recommended Posts

Posted (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 by thoga31
GeSHi
Posted (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 by thoga31
GeSHi
Posted (edited)

Estive a testar e consegui. Falta passar um parâmetro, o titulo:

 AutoCloseMsgBox("MsgBox - Com Sucesso!", "nuno", 2)
Edited by NunoDinis

Estranha forma de vida que tem a capacidade de transformar comandos em mensagens de erro.

ndsotware.org

Posted

O erro é o seguinte:

Argument not specified for parameter 'Segundos' of 'Private Sub AutoCloseMsgBox (Mensagem As String, Titulo As String, Segundos As Integer)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.