Search results

  1. P

    Strange form & subform behavior

    Hi, all - I recently revised an A2003 database to 2010 and am now using the navigation type of form. In two of the second level tabs in the navigation form, I am getting strange form/subform behavior. 1. The first tab opens blank; no form shows at all. If I move to the last tab then back...
  2. P

    Data type mismatch error

    A simple solution worked. Thanks, Galaxiom.:)
  3. P

    Data type mismatch error

    Thanks for your reply. Actually, in this situation, the field value referrs to an autonumber in another table but in the table that is being searched, it is a regular integer. Not sure if this makes a difference.
  4. P

    Data type mismatch error

    OK - Worked this time. Thanks.
  5. P

    Data type mismatch error

    Appologies - hope the edit is an improvement.
  6. P

    Data type mismatch error

    Hi, all - I am modifying an existing database and replacing an early text field with an autonumber. The field name is the same as previously with with the values and data type being different. The field in question is PTID In the previous version, I had code that worked fine to determine...
  7. P

    Form record quickly disappears after combo box lookup selection

    Thanks for your replies. I was able to get it to function.
  8. P

    Form record quickly disappears after combo box lookup selection

    Hi, all - I recently modified a older database and recreated some lookup combobox fields in some forms. I used the combobox wizard and selected the third option - "find a record on my form..." When using the combo box to look up a record, the record will appear and quickly disappear. I'm...
  9. P

    Primary Keys in Tables for Web DB in SharePoint

    I am considering putting a backend DB in SharePoint Online. I did a test and it seemed that it is required for primary keys to be numerical. I have had some simple reference tables that didn't use a numerical/autonumber primary key. Am I missing something or is this correct? Is there any...
  10. P

    Simple Code Issue

    That did it--thanks!
  11. P

    Simple Code Issue

    Hi, all - I'm getting "Compile error: Method or Data Member not found" when running a simple code. Here's the code: Private Sub btnOK_Click() Dim rs As Recordset Set rs = CurrentDb.OpenRecordset("tblEmployeeList", dbOpenSnapshot, dbReadOnly) rs.FindFirst "UserName='" & Me.[txtUserName] &...
  12. P

    Licensing with SharePoint as backend

    Hi, all - I'm looking to use SharePoint for my Access backend although database users would have a regular front end application. In doing a test, SharePoint didn't require a logon for the back end to be accessible through the front end application. Does anyone know if users should have a...
  13. P

    Compabitility of Access 2013 with earlier versions of Access

    Thanks. Just to be certain, how about mdbs with user level security?
  14. P

    Compabitility of Access 2013 with earlier versions of Access

    Thanks for catching the typo and for your response. How about opening an mdb file?
  15. P

    Compabitility of Access 2013 with earlier versions of Access

    Hi, all - I did a quick search but didn't find what I was looking for here - What's the bottom line on Access 2013 opening .mdb or accdb (2007 or 2010) files? Will projects in those formats work in Access 2013? Thanks!
  16. P

    Issue with subform in navigation form in A2010

    That would help, for sure. I've stripped the database to manageable size, removed data and attached it. The quirk is still occurring. thanks.
  17. P

    Issue with subform in navigation form in A2010

    Hi, all - I am converting a 2013 database to 2010. I am recreating forms that were accessed via button controls in menus to 2-level navigation forms. I have two forms initially that used the same subform and what had been accessed separately are now two tabs in the 2nd level of the current...
  18. P

    Audit Trail Code Issue

    Sorry for the delay in my response, jdraw. I'll check them out. Paul
  19. P

    Audit Trail Code Issue

    I realize I don't know how to use "Smart Identifier" to use indents. If someone would tell me how I'll redo it. Thanks.
  20. P

    Audit Trail Code Issue

    Here is the complete routine: Sub AuditChanges(IDField As String, UserAction As String) On Error GoTo AuditChanges_Err Dim cnn As ADODB.Connection Dim rst As ADODB.Recordset Dim ctl As Control Dim datTimeCheck As Date Dim strUserID As String Set cnn =...
Back
Top Bottom