Recent content by paulsimo

  1. P

    table relationship understanding

    Could anybody please help with a problem I have regarding extracting data from 2 tables. I am currently building a database that will allow users to complete their details to enter an event. I am building a register / log in section, a user enters their personal details on the database including...
  2. P

    auto insert data

    Could anybody please help with a problem I have regarding extracting data from 2 tables. I am trying to build a database that will allow users to complete their details to enter an event. The way I would like it to work is for the user to register their personal details on the database including...
  3. P

    Controlling cursor in form

    Many thanks for that, I suspected it would be quite straightforward, but I just couldn't figure it out. Once again the forum has proved to be invaluable. Keep up the good work. :)
  4. P

    Controlling cursor in form

    I am trying to find a solution to what seems quite an easy task, but it is baffling me. I have a database which provides a manual back up timing for sports events. My main form of timing uses an RFID system, linked to a separate database, however I wish to add the manual back up as extra...
  5. P

    Opening form on startup

    Thanks for your answers to my question. I tried the data entry option and it works as I wanted it to, although I was alarmed when all the previous records seemed to disappear. As I had it bound to a table I realised the records were still there and showed in the table, but now hidden in the form...
  6. P

    Opening form on startup

    The form is in datasheet view, as the rifd is detected and recorded in the 1st field, named "ChipID" the 2nd field, named "Time" automatically records the time and date, keeping a record of which rfid was recorded and when. Many thanks.
  7. P

    Opening form on startup

    Yes, it is a form I wish to open, not sure what you mean by continous form mode, but each entry does go onto a new record. I collect the information from the reader via a piece of software called BC Wedge. This places the rfid identity number into the next available record in the first field...
  8. P

    Opening form on startup

    Hi there I hope somebody can help answer this seemingly easy question, although only easy if you know the answer. I wish to open a form on start up of the PC. This part is simple enough, however I need it to place the cursor in the next available row in the first column. When I open the form...
  9. P

    Manipulating records into one column

    Hi Jal That is just brilliant, I do appreciate the time you have spent on this problem, I certainly would never have got there on my own, however it has made me more determined than ever to try and grasp the sql language. As far as performance goes, I shall test it with more records, I expect...
  10. P

    Manipulating records into one column

    What can I say Jal but thanks very much, that is just amazing that you have solved that problem, I shall test it through with a whole load of records and times but from the initial results it seems to be achieving what I wanted from it. I have tried adding the final INNERJOIN statement as you...
  11. P

    Manipulating records into one column

    I would really like a little help with an amendment to an SQL Query I have. Jal very kindly sorted out this Query for me, which produces one list of recorded times from 2 tables. However, using this method, I have encountered a problem, if the objects were to travel around a circuit and be...
  12. P

    Separating Lap Times

    Many thanks Jal That is exactly what I was looking for, it works perfectly. As regards the "date" portion of the datetime field I don't actually have that stored within the database, I can't ever see it being a problem as I don't expect any of the race times would fall either side of midnight...
  13. P

    Separating Lap Times

    Yes, that is what I thought, I need to have some way of building the Lap Number column, this has to be done automatically without a user having to type in each lap number. I had thought of using something like an IF THEN statement, stating :- IF RaceNo = RaceNo AND Time > (previous) Time THEN...
  14. P

    Separating Lap Times

    Could anybody please help me with a problem I have come across. I am currently working on a project database to distinguish lap times from a bunch of athletic competitors. The database includes 2 tables, namely, Competitors and LapTimes. In the LapTimes table there are 2 fields which simply...
  15. P

    Manipulating records into one column

    Okay, everything is sorted and working brilliantly. When checking the SQL code I realised that the tables Zone 1 & Zone 2 only have 2 fields each, namely BadgeID and Time, so I simply omitted the extra non existant fields (Zone1 & Zone2) from the code, and hey presto it works. Many many thanks...
Back
Top Bottom