Recent content by crizzottzz

  1. C

    Delete not working

    I'm really interested in finding a resolution to this problem. I encountered it today. I have a database where I dragged a button onto a form, used the wizard to automate the standard "Delete Record" and it works no problem. I advised a coworker to do the same, and the row is not deleted from...
  2. C

    Field Types in a Query Output

    If doing: [Field1], [Field2], Field3: [Field1] & [Field2] and ending up with field type 'text' in the resulting table, try using Query->Paramenters from the menu and setting up Field3 as a memo there.
  3. C

    Drawing a blank !

    Create a main form with a subform. In the main form, use an unbound text box, and say a "search" button. The subform should have a query as it's record source that queries from your table. The criteria for [SSN] would be Forms![MainForm]![unboundTextBoxName] Your search button should requery...
  4. C

    Auto Fill Text Box From Combo Selection

    The "Me" might not be applicable in your circumstance. If the autocomplete is in a form, try using the entire reference.. i.e. Forms![formname]![Textbox1] = Forms![formname]![Combox].Column(1)
Back
Top Bottom