Recent content by borolee13

  1. B

    Creating a Pop-up calendar

    Does anyone know if it is possible to create a calendar, with term dates inserted by myself, that others could then use when planning courses ???
  2. B

    Form validation

    Thanks Pat. Where else would you suggest that i put the code???
  3. B

    Form validation

    Thanks for that All working ok now
  4. B

    Form validation

    Thanks for that. I have now found another problem. If all of the fields have been completed, then I want to send an email too the user. If not, i don't, until all the fields have been completed. Thnis is the end of my code, and it sends an email even when all the fields ar not complete. I'm...
  5. B

    Form validation

    Does anyone understand why I am having this problem????
  6. B

    Open form to new record

    Chris, Have compacted your database??? I think this resets the autonumber
  7. B

    Form validation

    Thanks for the help i received. I have now changed my code as suggested, but when i click on the Save Input button, I now get 'Run Time Error 13 - Type Mismatch' When i debug, it goes to the following line of the code: ElseIf ((IsNull(Me.Address1) Or Me.Address1 = "")) Then MsgBox "You...
  8. B

    Form validation

    So it is ok to have this on a Save button on the form???
  9. B

    Audit Trail

    I have a database on a network which is shared by other users. These users are supposed to use this database monthly to montitor there budgets. I want to be able to create an audit trail on each time they open the database. I am using the OSUserName function to get there netwotk login id. Can...
  10. B

    Form validation

    I am trying to validate fields in a form, before an email is sent saying the form is OK. this is my code : Private Sub Save_Click() If Me.Team = "" Then MsgBox "You must enter your Team name", "Data Validation" Me.Team.SetFocus ElseIf Me.Customer = "" Then...
Top Bottom