Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Defactio
  • Order by date
  1. Defactio

    Form flashes when updated when using a recordsource query which has calculated fields

    I suspect that your form is re-querying as you leave the edited field, You are displaying concatenated fields (within the query - from the table), but also displaying each individual field - which are both editable. Can't you leave out the concatenated field in the query, and simply set an...
  2. Defactio

    DoCmd.OpenForm filter does not work.

    And the reason for that, is that rs is simply pointing to a recordset object - it has no idea how many records that recordset has until you move it to the last record. If you used .movefirst instead of .movelast - it would return 1. ;-) Def Give a man a block of code, and he'll solve one...
  3. Defactio

    Help stop table updating

    You mention that you have ONE sub-form, but TWO sub-tables. Are both on the same sub-form? If so, what is the sub-form container parent / child relationship? If you expect individual behaviour for each sub-table, I'd expect 2 sub-forms - one for each table. I'm also intrigued about it behaving...
  4. Defactio

    Errors 3020 and 3197

    I don't understand why you are delaying data updates until another form is opened. Why not update records immediately as they are required, THEN allow a form that is being opened to simply display those changes? Execute a data update using "currentdb.execute (updatequery)" exactly when it needs...
  5. Defactio

    Error 2465 Application-defined or object-defined error

    integrity: I think that you may have fallen into the trap that I did (years ago). Your sub-form does not sit DIRECTLY on your parent form, it is sat within a 'container' that holds your sub-form. So, when you state: Forms![Form2]![Form_Recipes-new].Form.cRating, 'Form_Recipes-new' IS NOT...
  6. Defactio

    Query results not matching data entered on ORDERS form.

    Maybe I'm missing something obvious, but you seem to expect the underlying table (that stores a checkbox value) to immediately reflect a change on the form, and then basing logic on 'reflected' changes in tables. Is that correct? If so, then, it doesn't work that way; it's not like typing a...

Part and Inventory Search

Back
Top