Search results

  1. RuralGuy

    The database has been placed in a state by user error

    Are your forms bound to tables or queries of tables. It can make a difference. It should be a query.
  2. RuralGuy

    #type! / #error

    I'm thinking you were getting the error because there was no record yet. It was not null!
  3. RuralGuy

    AutoNumber behavior after MS Access migration to sql server

    If you use a different approach, maybe the AfterUpdate event, I believe it should work for either situation.
  4. RuralGuy

    Document Number Generetion HelP!

    See if this link will get you started: http://www.baldyweb.com/CustomAutonumber.htm
  5. RuralGuy

    Stop Access from Compacting on Close

    What version are you using?
  6. RuralGuy

    Stop Access from Compacting on Close

    Is it also making a backup at the same time? If so, you may have some corruption. What version are you using? Have you tried a Repair Install?
  7. RuralGuy

    DLookup with variable for expr

    Have you tried Debug.Print or MsgBox on the two proof(s)? See what is actually being returned.
  8. RuralGuy

    Checking data against previous record

    Does each record have a PrimaryKey?
  9. RuralGuy

    Checking data against previous record

    Easy for a human maybe but to so much for a computer. What is the Record Source for the Data Sheet? Do the records have a Primary Key? Unlike a spread sheet like Excel, a record in a RDBMS is not necessarily right next to the others except for display purposes.
  10. RuralGuy

    Checking data against previous record

    How would you go about finding the previous reading?
  11. RuralGuy

    Date/Time when new record is saved, not created

    Excellent.Glad we could be of assistance.
  12. RuralGuy

    Date/Time when new record is saved, not created

    I'm not sure why the field "auto-populates" on creation but adding a If Me.NewRecord Then Me.YourControl = Now() to the BeforeUpdate event of the form will overwrite it.
  13. RuralGuy

    Date/Time when new record is saved, not created

    Don't fill that control until the BeforeUpdate event of the form.
  14. RuralGuy

    Date/Time when new record is saved, not created

    What do you consider the completion vs creation?
  15. RuralGuy

    Textboxes Show 'AE' and other garbage text when using 3+ employees

    I never liked HyperLink fields as they are strange. I use Text fields and then use the Click or DoubleClick event of the TextBox to take the user where they want to go.
  16. RuralGuy

    Textboxes Show 'AE' and other garbage text when using 3+ employees

    To what *type* of value are you setting those Control Sources?
  17. RuralGuy

    Greetings from the Twin Cities

    Boy I thought you were from Urbana-Champaign Il. Glad to hear it is Mn. :D Welcome to the site and you will not be disappointed. There are a ton of great people here to assist in solving MS Access issues.
  18. RuralGuy

    How To Remove SubForm Title Bar ?

    What does the SubForm look like when you bring it up by itself? What mode is it running in?
  19. RuralGuy

    Auto upload picture

    Let us know if you still need assistance. This is a solvable issue, probably with code.
  20. RuralGuy

    one of 6 update queries not working

    Thanks for the update. Boy those Nulls can sure be a pest can't they?
Back
Top Bottom