Recent content by WinDancer

  1. W

    Make completed records read only?

    That works just fine- thanks! Dave
  2. W

    Make completed records read only?

    Is there a way to make some records in a table read only? Thanks, Dave [12 days until retirement!]
  3. W

    syntax help, please?

    tblClassSurvey is the table I want to update from the form
  4. W

    syntax help, please?

    I want to take a field from an open form and change a value in the underlying table based on that date- Table.tblClassSurvey.period.setvalue=Forms!frmTabSurvey!CompletionDate The form field is a ShortDate The table field is just the yyyy-mm datepart Thanks, [Down to 2 paydays left before...
  5. W

    Horrible performance with additional users in 2007?

    FIXED! The problem was reserved chars in the field names. But having followed all the uggestions in the post, it now runs like the wind. It worked fine with a single user but no when more than one. I have been using reserved chars in Access since 1996. I know to bracket those fields and it...
  6. W

    Horrible performance with additional users in 2007?

    Double-checked for indexed fields; Changed all Subdatasheet Names to none; Created a persistant form; Created registry entry for "Sharing Violation Notification" Tables are on the LAN- Front-end on individual PCs on their C:\Drives After all the changes today it still runs much too slowly to...
  7. W

    Horrible performance with additional users in 2007?

    Got the persistant connection working and the form is now hidden [missed one comma].
  8. W

    Horrible performance with additional users in 2007?

    There are only a few hundred records in the db
  9. W

    Horrible performance with additional users in 2007?

    What if you omit "acNormal" from the parameters? No Change Still trying to get the persistant to work-
  10. W

    Horrible performance with additional users in 2007?

    gemma-the-husky Adding the sharing violation entry had no effect-
  11. W

    Horrible performance with additional users in 2007?

    I am going through the suggestions offered- When I create the form for a persistant connection I used the code: DoCmd.OpenForm "frmPCBE", acNormal, , , acHidden When opening the new form it is visible??
  12. W

    Horrible performance with additional users in 2007?

    I finished my work [I thought] on my latest 2007 database. As soon as a second user fired it off response time went WAY beyond usable. I split the database with the BE on the network and installed separate copies on three local desktops. Performance didn't change one iota. When a second user...
  13. W

    Username in query??

    Bob, as soon as you posted I realized tat I have a module already- just copied that into the current project and it worked fine. Thanks, Dave
  14. W

    Username in query??

    Trying to capture the user name in an append query- using RB: Environ("UserName") in a query row errs out Help, Please? Thanks, Dave
  15. W

    Display the very last record created

    I need to open a form and display the last record created. I tried this: DoCmd.OpenForm "frmLocalRecords", , , "TrackingNumber=max()" but all it does is crash the application... any help, please? Thanks, Dave
Back
Top Bottom