Search results

  1. C

    Exit users via code. Is it possible?

    I have an Access97 DB which does not use security. Through code, is there a way to force users out of the app?
  2. C

    Stop ADD rec at the end of recordset

    Ok, thanks Len. 'I'm buying the beer'
  3. C

    Stop ADD rec at the end of recordset

    Mile-O-Phile This also gets rid of those annoying 'end of recordset' messages. When I grow up, I wanna be just like you :D Thanks a heap.
  4. C

    Who is using the database?

    Thanks all. Yes, I can't actually 'grab' the users name using access97 and NT :confused: My workaround is courtesy our NT Team: A txt file populated with the name, computer name etc. is appended to each time someone logs on to the network. In my access app, I can look at the .LDB file to...
  5. C

    Stop ADD rec at the end of recordset

    I have two forms: One form is for adding a record, the other for editing an existing record. I have some custom buttons for navigation on the form used for editing. When navigating to the end of the recordset in the editing form, the user is presented with a blank form (as in ADD mode). I...
  6. C

    Corrupt DB

    Hi John Repaired the BE and now running with the backup version of the FE MDE and all looks good. Cheers Carl
  7. C

    'Optimistic record locking' - what is it?

    Thanks for the reply :) Is there a chance that with Optimistic locking, two users updating the same object can cause DB corruption? Oh, and how does one turn off Optimistic locking? Can't seem to find anything in Access97 with any reference to this.
  8. C

    'Optimistic record locking' - what is it?

    What is 'Optimistic record locking'? Can't find anything in the access97 help (even though it is referenced in an error). Can someone explain what it is, and how to control it (ie. can it be turned on/off)? Thanks
  9. C

    Corrupt DB

    We are using a split database (access97). Both the backend(MDB) and frontend(MDE) reside on the network. We are experiencing corruption on a daily basis. Some records are ending up #ERROR and some #DELETE This requires a repair of the backend which rebuilds the index ok but now if you try to...
  10. C

    Yet another Validation teaser (for me anyway)

    Hehe, beginning to have fun... Tried that but I do have a Close button running a DoCmd.Close of the form. This has a conflict: The error is something like I am trying to issue a DoCmd and Cancel in a dialogue at the same time. Oh, all window close 'x' buttons have been disabled so the only way...
  11. C

    Yet another Validation teaser (for me anyway)

    I have a form which is opened in ADD mode. There are three fields (ImpDate, Group, Crit) which the users must complete before they can close the form. We are running with Validation rule set to 'Is Not Null' and having some Validation text prompt the users. Unfortuantely, this is no longer...
  12. C

    Query requery headache

    Hi Rich Sweet :) Private Sub ClosedDate_AfterUpdate() DoCmd.RunCommand acCmdSave DoCmd.GoToRecord , , acNext Combo141.Requery DoCmd.GoToRecord , , acPrevious End Sub Also do a refresh on the AfterUpdate of the CheckBox, just in case a user decides to uncheck it (this puts the record back in...
  13. C

    Query requery headache

    Hi Rich Tried that but same result. I'm doing a DoCmd.Save (is this correct?) If I do a Records/Save record from the menu, it works but the record still appears in the ComboBox.
  14. C

    Query requery headache

    On my form, I have an unbound ComboBox with a rowsouce of: SELECT DISTINCTROW [qryOverDue].[ChangeID], [qryOverDue].[ImplementationDate], [qryOverDue].[Group] FROM [qryOverDue]; Also on the form are a CheckBox (Closed) and a TextBox (ClosedDate). The underlying query displays records whose...
  15. C

    Hiding buttons on form when in ADD but not when in EDIT

    Sorted. :) Thanks Rich
  16. C

    Hiding buttons on form when in ADD but not when in EDIT

    Hi I am using a standard access switchboard (Access 97) On my main form I have several custom buttons for navigation, deleting, copying records etc. The first button on the switchboard opens my main form in ADD mode ie. a blank form. The second button opens the same form but in EDIT mode ie...
  17. C

    Who is using the database?

    Thanks everyone. AWF saves my bacon (once again).
  18. C

    Who is using the database?

    Hi Thanks for the reply. My Mum always said I was never really that smart when it came to making myself understood... after 36 and some years, nothing has changed... I can see who has used the DB and what fields they have edited etc. via an audit feature. No probs there. What I am after is a...
  19. C

    Who is using the database?

    I have a shared database. Is there an 'easy' way to monitor who is using the database? Thanks oh, it's Access '97
  20. C

    Can't get reports 'Visible'

    Same result. Everything still disappears.
Back
Top Bottom