Creating a command button from a form into a Data Access Page in Access with Java
--------------------------------------------------------------------------------
Hi I created a command button to calculate time taken on a form like below
Private Sub Command46_Click()
Time_Finished.Value =...
I tried the below but doesn't have any effect
<SCRIPT language=vbscript event=onclick for=ActiveXCtl0>
TimeFinished = time ()
TimeTaken = TimeFinished - TimeStarted
</SCRIPT>
Hi I created a command button to calculate time taken on a form like below
Private Sub Command46_Click()
Time_Finished.Value = Time()
Time_Taken.Value = Time_Finished.Value - Time_Started.Value
Complete.Value = True
Could someone please tell me how to do this in a web page do I need to do it...