Search results

  1. RuralGuy

    Retrieve Value From Multiple Textboxes

    Where is this code? In what form?
  2. RuralGuy

    Retrieve Value From Multiple Textboxes

    Actually I don't think you can use the (Form_) syntax in the Forms collection. If the name of the form in "Questions" then the syntax would be "Forms!Questions.Controls("A" & i)"
  3. RuralGuy

    Retrieve Value From Multiple Textboxes

    The syntax will be something like: Forms![Form_Questions].Controls("A" & i) Is this executing on the same form as the controls?
  4. RuralGuy

    Retrieve Value From Multiple Textboxes

    Concatenated together?
  5. RuralGuy

    Retrieve Value From Multiple Textboxes

    Is this loop executing in the Form_Questions Form? Where do you plan to place the returned values?
  6. RuralGuy

    Dates in short format formatted within a string

    The output of the Format() function is always a String.
  7. RuralGuy

    Dates in short format formatted within a string

    Try using the "&" as a concatenation character instead of the "+".
  8. RuralGuy

    Windows 10, 64 bit upgrade, crashing my code

    I asked the Mods for assistance on this so they may know someone with 64 bit Access.
  9. RuralGuy

    Windows 10, 64 bit upgrade, crashing my code

    We'll have to wait for someone with 64 bit Access then. I can't test it as I have 32 bit Access. Sorry.
  10. RuralGuy

    Windows 10, 64 bit upgrade, crashing my code

    Would I be correct in assuming you are using a 64 bit Access?
  11. RuralGuy

    trying to reference tab on subform

    This link may help: http://theaccessweb.com/forms/frm0031.htm FYI, all controls on tab controls have unique names and you reference them as if the tab control was not even there.
  12. RuralGuy

    Dlookup error

    I'll bet it is a string value so enclose with single quotes: =DLookUp("[EmpInitials]","tblEmployees","[EmpName] ='" & [Forms]![frmLogon]![txtUserName] & "'")
  13. RuralGuy

    cant change the data type frustration

    Have you done a Compact and Repair yet?
  14. RuralGuy

    control reference error

    You have undoubtedly figured out that SubForms are *not* listed in the Forms collection.
  15. RuralGuy

    control reference error

    Perhaps this link will help: http://theaccessweb.com/forms/frm0031.htm
  16. RuralGuy

    Using Combo Box Like a Text Box Lookup

    You probably do not want to hear this but when I see table descriptions like: ""EmplJobs" is a simple table with 7 fields: EmployeeID, JobCode, JobeCode1, JobCode2... thru JobCode5" alarms start going off about normalization. You may have an issue with your design that may make every task just...
  17. RuralGuy

    Hello from London

    A big WELCOME from this side of the "pond"! ;)
  18. RuralGuy

    Long time reader - first time member

    We welcome you and your bad habits and will endeavor to help you make the adjustments. :) Seriously, glad to have you on board. ;)
  19. RuralGuy

    #type! / #error

    Just use Galaxiom's solution.
  20. RuralGuy

    The database has been placed in a state by user error

    Queries eliminate a lot of Locked Table issues. Give it a try.
Back
Top Bottom