Search results

  1. D

    autonumber & replication

    just an additional information: we have also 2 front-ends on different servers in US and Europe. Christof.
  2. D

    autonumber & replication

    We have a database to track errors during testing. The database has MS Access front-end and SQL server back-end. The project team is located in Europe and US. To increase access performance for the US team we want to replicate the back-end database to an US server. The main table containing...
  3. D

    On Error

    Pat, still no progress - "Break on all errors" is set - all "on error" statements are commented out - all "DoCmd.SetWarnings" are commented out -> no change. Error does not pop up. - just turn on error before the docmd.close -> no change. Error does not pop up. So, still the same problem
  4. D

    On Error

    I changed the setting to "Break on all errors" ... but no change!! :mad:
  5. D

    On Error

    Pat, I turned off all error handlers by commenting out all ON ERROR GOTO statements and still the error message is only showing up in Trace/Debug mode. Are there any other ways to define error handlers?
  6. D

    On Error

    The code is as follows DoCmd.SetWarnings True DoCmd.Close and after the DoCmd.Close we get the following error message ODBC--call failed [Microsoft][ODBC SQL Server Driver] Datefield overflow (#0) Hope this helps.
  7. D

    On Error

    Really no idea out there to overcome this problem?
  8. D

    On Error

    Interesting. We have a DoCmd.SetWarnings True in the save code. In debug mode I get the error message (ODBC failed), but not in normal mode. Any ideas? Christof.
  9. D

    On Error

    There seems to be a misunderstanding. No error really pops up (and therefore no error message). So what's the trick to not suppress the error messages. We open a form where the user can enter his data. Pressing a SAVE button triggers DoCmd.Close That's all. Christof.
  10. D

    On Error

    We are using a form to update a table which is on a SQL-server. Sometime it happens that the record is not updated, but we don't see an error message (e.g. set a date to 31.12.2100) How can we capture those errors? Christof.
  11. D

    Write Conflict

    Solved Problem was related to a BIT1 field. After conversion to CHAR 1 it works fine. Christof.
  12. D

    Write Conflict

    We moved the backend of an MS Access app from Access to SQL-Server. Now we see the following behaviour - We can create new records - We can update old records - We CANNOT update new records: We get the famous WriteConflict message with "Save Record" greyed out. Any explanation for this...
  13. D

    Autonumber: Different behaviour of Access and SQL Server

    OK - works now - Problem was in a complete other area. Thx.
  14. D

    Autonumber: Different behaviour of Access and SQL Server

    We migrated a database using autonumber fields from Access to SQL-Server. After a while we detected the IDENTIFIER type. Now we have the following problem. When adding a new record in Access, the new number is provided as soon as the first field is entered. In SQL the record behaves different...
Back
Top Bottom