Search results

  1. E

    changing the table that a form gets data from

    Thanks Pat, i've now set it up using a query on the original table - makes life a lot simpler!
  2. E

    changing the table that a form gets data from

    how do i change the table that a form gets its data from? I want to keep exactly the same format and I have exactly the same table structure and field names.
  3. E

    code resets form to first record

    Thanks John, that's sorted it out!!:D
  4. E

    code resets form to first record

    I have the following code atached to a check box on a form - Private Sub Check63_Click() If IsNull([MitigatingAction7]) Then Me.Check63 = "No" Else If Me.Check63 = "yes" Then Me.Check63 = "No" Exit Sub Else If MsgBox("Is this action completed?"...
  5. E

    Check box and code to control it

    Cheers Howlsta, with some help from you and one of our highly paid developers the code is now - Private Sub Archive_Click() If IsNull([DateArchived]) Then If MsgBox("Are you sure you want to archive?", vbYesNo + vbQuestion, "Archive?") = vbYes Then [DateArchived] = Date...
  6. E

    Check box and code to control it

    I am trying to add a check box to a query that will indicate that a record is out of date and can then be archived by a query (to be done by a totally seperate procedure). I want to provide the user with a warning asking if they are sure that they want to do this - this I have done via the...
  7. E

    Open table on current record

    I have a form that displays summary information about a record - what can I do to open the relevant table at the same record to save the user opening the table and then scrolling down to the correct record? I've tried using a macro with GoToRecord but I can't seem to make it work.
  8. E

    why is record 3 at end of report??

    I've created a report summarising some of the information on one of my tables - the problem is that record number three insists on appearing as the very last record - all other records are displayed in the order they should be.....what's gone wrong?
  9. E

    Primary Key

    I was on an access course recently and the tutor did mention how to do this but, alas, i did not document his response! What I am trying to do is to create a primary key as an autonumber but have it in the format "2003/001" etc. :confused:
Back
Top Bottom