Search results

  1. C

    Creating a command button from a form into a Data Access Page

    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 =...
  2. C

    Creating a command button from a form into a Access Web Page

    Its being put into the VB script editor in Access Data Access page is this still ASP?
  3. C

    Creating a command button from a form into a Access Web Page

    I tried the below but doesn't have any effect <SCRIPT language=vbscript event=onclick for=ActiveXCtl0> TimeFinished = time () TimeTaken = TimeFinished - TimeStarted </SCRIPT>
  4. C

    Creating a command button from a form into a Access Web Page

    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...
Back
Top Bottom