Search results

  1. RuralGuy

    Protect Data in a Combo Box

    Use the BeforeUpdate event to qualify the changes.
  2. RuralGuy

    Need help creating a validation rule.

    FYI, the SetFocus is not necessary as Cancel = True will do this for you.
  3. RuralGuy

    Need help creating a validation rule.

    Use the BeforeUpdate event to enforce your validation. Cancel = True will hold the focus in the current control.
  4. RuralGuy

    From HandicappedPets.com

    Welcome to AWF and enjoy.
  5. RuralGuy

    Delete Files Based On a Text Field

    Here's a link with code tag examples: https://access-programmers.co.uk/forums/showthread.php?t=240420
  6. RuralGuy

    Delete Files Based On a Text Field

    Highlight your code and then press the "#" sign in the tool bar.
  7. RuralGuy

    Delete Files Based On a Text Field

    Thanks for the update. :)
  8. RuralGuy

    Delete Files Based On a Text Field

    Yep. That's weird.
  9. RuralGuy

    Delete Files Based On a Text Field

    So adding the code tags allowed the trailing ""? "\"
  10. RuralGuy

    Delete Files Based On a Text Field

    Wow. It even stripped it out of that post.
  11. RuralGuy

    Delete Files Based On a Text Field

    The site will not let me post that trailing "". ???? I reported it to the Mods.
  12. RuralGuy

    Delete Files Based On a Text Field

    Follow Ridders directions. Hi Colin!
  13. RuralGuy

    Delete Files Based On a Text Field

    I ttried editing my post right away and it would not stick. change this line: MyVar = "C:\Folder1\Folder2" & CustomerID ...to... MyVar = "C:\Folder1\Folder2" & CustomerID
  14. RuralGuy

    Delete Files Based On a Text Field

    Try something like: Dim YourStringVar As String YourStringVar = C:\Folder1\Folder2" & CustomerID If Dir( YourStringVar ) <> "" Then Kill YourStringVar Warning: Untested
  15. RuralGuy

    Dropdown Box DLookup Error

    It should be under "Thread Tools" at the top of the thread. I believe it is only available to the OP of the thread and the Mods of course.
  16. RuralGuy

    Dropdown Box DLookup Error

    Did you want to mark this thread as Solved?
  17. RuralGuy

    Dropdown Box DLookup Error

    This probably runs pretty slow with all of those Domain functions. If the RowSource of the ComboBox is "tblDropROI" there is a much faster way to get the values. If "OrgID" is a number then your code should be: "[OrgID] = " & Me.OrgID )
  18. RuralGuy

    Slickest way to covert Date to literal date?

    Can you use the Format command? The output is always a String.
  19. RuralGuy

    my first ever post

    Welcome to the site Anne. Enjoy.
  20. RuralGuy

    Retrieve Value From Multiple Textboxes

    You do not need to user the Forms Collection. Just use: Aout = Me.Controls("A" & i)
Back
Top Bottom