Recent content by kingle1

  1. K

    Table-Level Lock

    But if I'm not mistaken, are you not able to log in exclusively if other users are already logged in? This is an application in which the front and back ends are all shared, the forms are tied directly to the tables (not recordsets) and I have over 300 users that could be logged in at any given...
  2. K

    Table-Level Lock

    It is overkill, but it is the hand I've been dealt. This is not my application -- I've merely been brought in to clean up someone else's mess. This involves a flat (non-normalized) table that has to be sorted horizontally. I can make everything work except keeping users out of the table while...
  3. K

    Table-Level Lock

    I have a multi-user application that requires a table-level lock during an update so no users can write to the table during the update. (All records are written out to a temp table, the records in the main table are then deleted, the records are sorted in the temp table, and the sorted records...
Top Bottom