Recent content by LWCARAB

  1. L

    How to select field from first row where a variable is unticked

    I have a table with contains issue numbers and a tick box to say whether or not it has been published. I need some code that will go through the table and find the first number which is unticked to that I can use that issue number. THanks, Richard
  2. L

    Clearing Table in another database

    Brilliant! Thanks so much, you're a life saver. Richard
  3. L

    Clearing Table in another database

    Because this must happen each time the database is opened, even if I automated the open and delete part, it would take a while.
  4. L

    Clearing Table in another database

    I urgently need a way to clear a table in a different access database, this table is not and connot be a linked table. Please help. Regards, Richard
  5. L

    Clearing Table in another database

    I urgently need a way to clear a table in a different access database, this table is not and cannot be a linked table. Please help. Regards, Richard
  6. L

    Importing from one databse into another

    Hello, I need to import the data from one database into another everytime a form opens, I have some code which works: Function GrabAccessTable() DoCmd.TransferDatabase transfertype:=acImport, _ databasetype:="Microsoft Access", _ databasename:="\\trigger\wwwroot$\AW@RD\AW@RDOnline.mdb"...
  7. L

    Sharing Access database so that ASP can open it

    I've set the database to shared in tools, options, advanced so surely you can't open it in exclusive mode can you? I thought the default was shared anyway. Richard
  8. L

    Sharing Access database so that ASP can open it

    I have an access database which is shared, I can open it on 2 pcs at the same time no problem. I also have an html and asp page which is used to add recoreds to the database, this works fine if the database is closed everywhere else but this cannot be the case. I am now desperate for answer to...
  9. L

    Number Field

    Hello, I have a number field in my table as well as an autonumber field. Eachtime I add a new record I need it to check the number for the last record and add one, this field would be cleared every month. Any suggestions? Thanks Richard
  10. L

    HTML/ASP inputting to table

    Hello, Could you have a look at my code and see if you notice anything wrong as it is not inputting to the database. I have used a very similar process before and it has worked. The 2 files are attached, I can't attach the database due to it's size. Thanks, Richard
  11. L

    numbering

    The records are been input via a form, I can put a hidden textbox that finds the issue number based on the date but I still have the article number problem as I need to store them for previous issues but they must start at 1 each month so that rules out an autonumber field.
  12. L

    go to last page in report using acViewPreview

    Hello, I need the code or key shortcut to get the to the last page of my report in the preview view. The reason for this is that I have some code that creates a table of contents but it has to read through all the pages to fully complete the table. Thanks Richard
  13. L

    numbering

    the issue is worked out using a separate table, each month of each year has a preset issue number. I have created a new table column for the new number but how do I get it to enter a number each time I add a new record?
  14. L

    numbering

    Hello, I have one main table containing most data, that table stores data which is identifies by a unique ID (currently 1-96000), there is also an issue number, I need another numbering system per issue (so you could have issue 166, record 26), any ideas?
  15. L

    Index in Report

    Hello, I have a report which is grouped into subjects and usually occupies around 30 pages. I need to create an index page at the start of the report with the subject names and page numbers next to them. Is this possible and if it is how would I do it? Thanks, Richard
Back
Top Bottom