Hola,
Esto deberia funcionar :
Option Explicit
Dim WithEvents tiempo As VB.Timer
Private Sub Form_Load()
Set tiempo = Form1.Controls.Add("VB.Timer", "tiempo", Form1)
tiempo.Interval = 60000 ' Un Minuto
tiempo.Enabled = True
End Sub
Private Sub tiempo_Timer()
MsgBox ("Hola")
End Sub
Saludos,
MVP - Visual Developer