[Pedido] Visual Basic

Topic created · 11 Posts · 1175 Views
  • @Anghios said:

    *Como enlacar cuadratido con boton de exit, algo parecido a (Marcar casilla si quieres salir) y que se necesite tener la casilla marcada que si no no funca el boton de exit

    Añades un checkbox y un botón. Dentro del botón pones:

    if checkbox1.checked = true then
    close()
    else
    msgbox("Necesitas marcar la casilla para cerrar la ventana")
    end if
    

    if checkbox1.checked = true then
    close()
    else
    end if
    No creo que sea necesario el msgbox 🙂

Log in to reply