Programación VB: abra form2 10 segundos después de que se inicie el programa, cierre form2 10 segundos después
TIMER muy simple,
Atenuar i como booleano
Sub privado Form_Load()
i = True
Timer1.Interval = 10000
End Sub
Private Sub Timer1_Timer()
Si yo entonces
Form2.Show
i = False
Else
Descargar Form2
Timer1.Enabled = False
Finalizar si
End Sub