Search results

  1. C

    Looking for a table with directors

    Would anyone have a table with the names of film directors I could have? Just the name is fine, no additional info needed. It would save me a lot of time by not having to create it myself. Thanks Catalina
  2. C

    Remove or Hide File Tab on Custom Ribbon

    Thanks Ari, that's what I did and it works fine. Catalina
  3. C

    Need to gain exclusive access to a multi-user database

    But your application is split in front- and back-end?
  4. C

    Need to gain exclusive access to a multi-user database

    Are you referring to making changes in the back-end?
  5. C

    Help i need Database Design

    May be you can find something here: http://www.databaseanswers.org/data_models/index.htm
  6. C

    Remove or Hide File Tab on Custom Ribbon

    In Access 2010 I made a custom ribbon. The File Tab still gives users access to features that should not be available to them such as: Compact & Repair, Encrypt etc. I spent a few hours looking for a solution but found none that works. It does not seem to be possible to hide the File Tab, but...
  7. C

    'Smart' navigation

    May be this will help, look at post #4. http://www.access-programmers.co.uk/forums/showthread.php?t=163195&highlight=navigation Catalina
  8. C

    goto next record

    The easiest way to identify an unique record is to include an autonumber field in the table. Be sure to include that field in the row in the continuous form, you can make it invisible if you want to. Then in the on click event of every field call a public sub. Like: Call SelectRecord Then...
  9. C

    Form to enter new record.

    In the properties of the form, on the Data Tab set Data entry to Yes. Catalina
  10. C

    goto next record

    I use the bookmark method to open a detail form when clicking on a row in a continuous form: Dim rs As Object Dim lngBookmark As Long 'set a variable to the current record lngBookmark = Me.PEID 'Unique Record ID 'open the new form DoCmd.OpenForm "frmPeopleEdit"...
  11. C

    Create accounting environment within Access

    It will probably be best to ask the accountant for advice about which edition to use.
  12. C

    Create accounting environment within Access

    They have a US edition: http://na.sage.com/sage-50-accounting-us/store?WT.ac=SNA_HP_new_readytobuyS50US_link Catalina
  13. C

    data disappearing, multi user database

    Not splitting it is a recipe for disaster. May be this will help you: http://www.techrepublic.com/blog/10things/10-reasons-to-split-an-access-database/1119 There are a lot of posts here too about this subject. Catalina
  14. C

    Create accounting environment within Access

    Good choice and good luck with the business. Catalina
  15. C

    Create accounting environment within Access

    May be there is something here you can use. http://www.databaseanswers.org/data_models/index.htm Catalina
  16. C

    Create accounting environment within Access

    Forgive for saying so but developing an accounting program with Access is very time consuming and will eventually cost you more than just buying one of the shelf. And if you have little experience with Access it is a task that may be too complicated. Check out this link...
  17. C

    data disappearing, multi user database

    Have you checked in the actual tables if the date is there? Catalina
  18. C

    code help w/enable-disable features

    May be it would be easier to check for incomplete fields etc. by putting some code in the Before Update of the form. There are plenty of posts here about this subject, just do a search. Catalina
  19. C

    User login page

    Try this one. Catalina
  20. C

    User login page

    You're welcome. Good luck with the project. Catalina
Back
Top Bottom