Recent content by Rogue Programme

  1. R

    Users can't open database?

    Cheers Craig, thanks for the comprehensive reply. I'll be giving everyone a copy of the front end for them to store localy. I'll also be adopting the front end auto update utility. Thanks again Mike
  2. R

    Users can't open database?

    Hi David, yes the database is split. The back end holds the tables and the front end has everything else. I'll look into giving the users their own front end. is this just a case of the users taking a copy of the front end and storing it on their own drive? What about when i want to make...
  3. R

    Users can't open database?

    The latter. Mike
  4. R

    Users can't open database?

    The next morning it worked fine. Thanks for your reply Simon. Mike
  5. R

    Users can't open database?

    Hi all I've made some changes to my existing database (v1.4) but now my users can't open the new version (v1.5). The database is split and I have relinked. The message they are getting is that they are trying to open exclusively or they don't have permission to open. I don't understand why all...
  6. R

    Question Forms/Tables

    Thanks for your replies. jzwp22, the reason I had 2 forms was because although the data was stored in the same table; form 2 had data that would not be known until a later date. I would of created another table but because there was only a 1 to 1 relationship i thought I'd go down the 2 forms...
  7. R

    Question Forms/Tables

    Hi, I have two forms linked to one table. The 2 forms are linked to eachother. I have a button on form 1 that opens form 2. However, if i click to go on form 2 without saving what i've input in form 1 I lose the data. My question - is there a way I can insert a piece of code in the buttons' on...
  8. R

    Question Forms/Tables

    Hi, I have two forms linked to one table. The 2 forms are linked to eachother. I have a button on form 1 that opens form 2. However, if i click to go on form 2 without saving what i've input in form 1 I lose the data. My question - is there a way I can insert a piece of code in the buttons' on...
  9. R

    Question Forms/Tables

    Hi, I have two forms linked to one table. The 2 forms are linked to eachother. I have a button on form 1 that opens form 2. However, if i click to go on form 2 without saving what i've input in form 1 I lose the data. My question - is there a way I can insert a piece of code in the buttons' on...
  10. R

    Sort Query Results

    Brilliant, thankyou.
  11. R

    Sort Query Results

    Sorry, i can't open it, i'm using Access 97.....
  12. R

    Sort Query Results

    The following is produced by a query i've built.... 4a (2007 Jan - Jun) 5a (2008 Jan - Jun) 4b (2007 Jul - Dec 5b (2008 Jul - Dec) I need it in numerical order not alphabetical so it looks like this: 4a (2007 Jan - Jun) 4b (2007 Jul - Dec 5a (2008 Jan - Jun) 5b (2008 Jul - Dec) Any ideas
  13. R

    Comparing 2 tables of data

    Hi guys, i'll try and explain this as best i can.... I have 2 tables: CurrentMonth PreviousMonth Both tables hold financial information by policy number. What i am doing is working out financial movement on a month on month basis. For example, if in previous month the financial position was...
  14. R

    New Record.....

    This is the code i have but doesn't work.... Private Sub cmdnewuser_Click() On Error GoTo Err_cmdnewuser_Click Dim DocName As String Dim LinkCriteria As String DocName = "frmcomplaint" DoCmd.OpenForm DocName, , , LinkCriteria DoCmd.GoToRecord , , A_NEWREC...
  15. R

    New Record.....

    I want to be able to open my main form with a command button that will automatically go to new record rather than record number 1. Can someone help?
Top Bottom