Recent content by marknufc

  1. M

    Adding records only?

    Thank you very much
  2. M

    Adding records only?

    How do I configure a form so it can only add records. I don't want users to see what is currently stored in the table, just add records to it.
  3. M

    This line of code?

    Originally it was now its text
  4. M

    This line of code?

    100% sure, that was my first check. I've found DB that has a working user audit log. I've taken the code from it and I'm trying to modify it to fit my DB. I keep getting error after error, I'm close to giving up on it. I'm a forensic student so coding isn't really my thing, Databases is a unit...
  5. M

    This line of code?

    Done that, its gone back to not liking [LecturerLoginID]
  6. M

    This line of code?

    I now get a compile error, Me.txtpassword = Nz(DLookup("LecturerPassword", "user_tbl", "[LecturerLoginID] = '" & Me.txtuser & "'"), "") then With Forms!frmStoredLogins .txtLecturerLoginID = Me.txtuser .txtDateTimeLogin = Now End With it doesnt like the "Then"
  7. M

    This line of code?

    [LecturerLoginID] is txt Me.txtuser is the text field on a log in form to enter a username
  8. M

    This line of code?

    My DB doesn't like this line of code, why? If Me.txtpassword = Nz(DLookup("LecturerPassword", "user_tbl", "[LecturerLoginID] = " & Chr(34) & Me.txtuser & Chr(34)), "") it has a problem with the [LecturerLoginID], I'm not a coder so I apologise if this is a simple problem.
  9. M

    Track user log in and outs.

    Hi, I want to be able to track users log-ins on my DB, basically when a user enters their username and password I want the the time they log in and their username recorded in table. I tried doing it from the the Helpdesk database found here...
  10. M

    Adding Value to a table field.

    Hi, I am building a DB for my college, it is needed to replace a spreadsheet they have in place. The spreadsheet is used to monitor and track Students grades. Each unit a student passes gives that student a certain number of points, the number of points depends on the grade (e.g. a student...
  11. M

    Question Normalisation and ERDs.

    Entity relationship diagram
  12. M

    Question Normalisation and ERDs.

    Is there anywhere I can get I guide or walkthrough?
  13. M

    Question Audit log?

    just the logins
  14. M

    Question Audit log?

    ^^^^^^^^^^^^^^^^^^^
  15. M

    Question Audit log?

    btw i have a very basic understanding of access
Back
Top Bottom