I have placed a txtbox that outputs the time, but I would like it to keep the time rather than display the time the form was loaded. Not sure how to achieve this any ideas?
Access is event-driven. There must be an event that occurs for code to run. Forms have a timer event, text boxes do not. That doesn't mean you have to update the entire form, just that the form has an event that you can set to run periodically. In that event, you can specify an update of the textbox.