Search results

  1. M

    Problems Accessing Backend

    Ensure the FE is deployed locally on each user's local PC – and the BE resides on a windows platform.
  2. M

    display records.. help

    http://www.webthang.co.uk/Tuts/tuts_dmx/dmxf_1/dmx1_1.asp
  3. M

    Access quitting unexpectedly

    From the VBA Editor open the Reference window (Tools > References from the menubar). - Remove one of the checked references - Decompile the application - http://www.fmsinc.com/free/newtips/access/accesstip7.asp - Recheck the reference ONLY if it is needed to compile. Repeat these steps for...
  4. M

    multi user

    The best way to enable MS Access for a multi-user environment is to split the db into a FE/BE and deploy the FE on each user’s local PC.
  5. M

    Database filesize growth

    You need to split the db and place the FE on each user’s local PC. http://www.myaccesstips.com/deploy/deploy.html Design change and action queries will create bloat.
  6. M

    Access quitting unexpectedly

    Split the db and give each user their own copy of the FE. http://www.myaccesstips.com/deploy/deploy.html
  7. M

    multi user

    Check out: http://www.myaccesstips.com/deploy/deploy.html
  8. M

    Is Access stable DB program?

    Check out: http://www.granite.ab.ca/access/corruptmdbs.htm
  9. M

    Need Module Help

    Check out: FTP function
  10. M

    Database disaster....

    Jeff just accepted a job with Microsoft on the Access Team. His new title is Software Development Engineer in Test. Also, the book he co-authored will be available in a few days. Access Inside Out
  11. M

    Database disaster....

    My suggestions: 1 - Decompile to avoid corruptions http://www.fmsinc.com/free/newtips/access/accesstip7.asp 2 - Create an MDE file for the FE 3 - Deploy the FE to each user’s local PC. http://www.myaccesstips.com/deploy/deploy.html
  12. M

    Access Crashes on Record Source

    You are welcome – glad I could assist.
  13. M

    Access Crashes on Record Source

    Try to compact and repair the database. If you still have issues try: http://www.fmsinc.com/free/newtips/access/accesstip7.asp then try: Try these commands from the immediate window (ctrl + G: saveastext acForm,"Form Name", "C:\frm.txt" Rename your existing report then run this command...
  14. M

    Tab Control and Subform

    Is the main form being opened as read-only?
  15. M

    Learning ASP

    This is a good starter site: http://www.w3schools.com/asp/default.asp
  16. M

    compile error please help

    You need to add the object library to your references. Open any module (code). From the VBA editor’s menubar select Tools > References. Scroll down to you find the Microsoft DAO 3.x object library. Check the checkbox, and then select OK. Select Debug > Compile from the menubar to recompile...
  17. M

    MDB to MDE

    The link I posted provides detailed documentation on sharing the db over a network. You don’t need MSDE or ODBC. The BE is placed on the server, the FE on each PC.
  18. M

    MDB to MDE

    you will need to split the database. http://www.myaccesstips.com/deploy/deploy.html
  19. M

    Keep getting Error 91 For Loop not initialized error

    Try adding the Option Explicit statement to the module and declare all the variables. Dim Counter As Long Dim fldCurr As Field A more efficient method of exporting the data to excel would be to create a query and export the query. Running an update query and deleting table will cause database...
  20. M

    Ado

    You have an extra semilcolon - take the one out on the from line. strSql = "SELECT tblEmployees.[strAccess]" & _ "FROM tblEmployees " & _ "where tblEmployees.[lngEmpID]='" & Me.cboEmployee.Value & "';"
Back
Top Bottom