what you will need is to set a timer up from the visual basic bit
set the interval to 1000 for 1 second
at teh top of the code write
Code:
option explicit (i think that how you spell it)
Dim count as Integer
timer1.enabled = false
timer1.interval = 1000
inside the timer code put
to start it with a button just put
Code:
timer1.enabled = true
and
Code:
timer1.enabled = false
for the stop button
for the reset button just put a value into the count var
and to set time
Code:
count = txtbox1.text
also if you want to display it in a txtbox just reverse the code above into the timer
so basically the timer is one big loop that keeps doing the commands inside it every second
im not sure about inputting into a database though
hope this will help