Search results

  1. E

    Open a MS Word template via command button on a form

    morning all, I need to create a button to open a MS word template (currently saved in the usual folder for word templates) - my DB skills (!) allow me to create a button that will open MS word, but for ease of use I would really like to be able to click on a button and have the template open...
  2. E

    Autonumber reset

    the problem seemed to be with the form...i created a new form from scratch and the problem was no longer there. anyone got an explanation for this?
  3. E

    Autonumber reset

    i reset an autonumber field using the method Pat desribed above (delete all records then compact)....this worked but now whenever i try ro add a new record via a form a warning box appears and says 'record cannot be updated'. once I click on OK then I can update the record freely. how can i...
  4. E

    check user defined reference

    Afternoon All, I've got another problem, no doubt simply solved by some access expert - I have a user defined, indexed unique reference number on a form. How can I get access to check whether a reference that is entered has not been used in a previous record? The way I have the form set up...
  5. E

    changing the table that a form gets data from

    Problem sorted! in the query design view i had added another related table to bring through department names....i didn't actually need this - all i had to do instead was to type in the primary key number of the department rather than its name in the query in order to filter the records. the...
  6. E

    changing the table that a form gets data from

    Pat, tried to update the table by altering info in the query itself - access would not allow this and said 'this record set is not updatable'.
  7. E

    changing the table that a form gets data from

    Now that I have got a form using a query from a table is there any way I can allow the form to add records to the table? on the form properties I have set the 'allow additions' to yes but I still cannot add a new record.....anyone know where I am going wrong???
  8. 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!
  9. 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.
  10. E

    code resets form to first record

    Thanks John, that's sorted it out!!:D
  11. 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?"...
  12. 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...
  13. 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...
  14. 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.
  15. 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?
  16. 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