Search results

  1. D

    Combobox filtering a form!?

    Kempes, thanks! That's perfect! It works. Just one note: code should be placed to AfterUpdate event of combobox. Thanks a lot!
  2. D

    Combobox filtering a form!?

    Thank you, Kempes! I tried with FindRecord first - it generates the same run-time error... GoToRecord seems closer to the solution, but... I put this code: Private Sub cmboxProdList_BeforeUpdate(Cancel As Integer) Dim ColumnID As Integer ColumnID = cmboxProdList.ListIndex If...
  3. D

    Combobox filtering a form!?

    Hello everyone, need your urgent help... A standard form based on simple query displays a current record. On the same form there is a combobox that displays all records in a query. I add the test code to BeforeUpdate event of combobox: Private Sub cmboxProdList_BeforeUpdate(Cancel As...
  4. D

    Card and list form

    Thank you. I've already tried this before. Really code is not needed at all, but the result is not I need - in case you mentioned you will have in your subform only one record displayed in table view, and when you scroll through records you always have synchronized main form and subform, however...
  5. D

    Card and list form

    Actually I've already seen alike issues on this forum however I haven't found the right solution (at least with some code example)... anyway... My task is to have a combined form where the header is normal form based on query, and the footer is a table-view form based on table. So, the header...
Back
Top Bottom