Why would you put that functionality in a module? That is straight-up presentation so it belongs in the form itself. You should add the Timer to your form and then in the Tick event handler use:
Code:
Me.lblDateandTime.Text = Date.Now.ToString()
You should use the Date data type rather than the DateAndTime module.