I have a felling I am missing a Set in the Form_Load but when I type out "Set TCalculateBandwidth =" a true false select box comes up. :sVB Code:
Option Explicit Private WithEvents TCalculateBandwidth As Timer Private Sub Form_Load() Me.Move 0, 0 With TCalculateBandwidth .Interval = 1000 .Enabled = True End With End Sub Private Sub TCalculateBandwidth_Timer() MsgBox "yay" End End Sub




Reply With Quote