Recent content by scottydel

  1. S

    ComboBox choices won't select?

    Hello, I have a combobox control bound to a table, and pre-populated with a query. Choosing something in the combobox should not update the table, but I would still like to be able to pick from the list. When I click the mouse on one of the items in the combobox's drop-down list, the...
  2. S

    help with aggregate query

    Hello, I have a table as such: NAME RANK WIN_PERCENT DRAW_PERCENT The table can have the same people in it multipe times, such as: NAME LEVEL WIN_PERCENT DRAW_PERCENT Bob 4 80% 4% Bob 5 90% 5% Bob 8 60%...
  3. S

    help with query - employee heirarchy

    Thank you both for the responses, both approaches are useful to me. -Scott
  4. S

    help with query - employee heirarchy

    Hello, I have an employee table set up like so: NAME, SALRY, SUPERVISOR_NAME This table contains a large group of employees, and every employee has a Name, Salary and Supervisor. Some of these employees are also Supervisors, and hence they are in the table once as an employee but also have...
  5. S

    Adding a new record via Navigation Buttons - PK question

    I think I have answered my own question by searching these forums and playing around a bit... BeforeInsert and AfterInsert events seem to be what I'm after. I've done some coding and have solved my inital problem. Now, I'd ideally like to elliminate the default Navigation Buttons and only...
  6. S

    Adding a new record via Navigation Buttons - PK question

    Hello, I have a continuous form bound to a table. The form's Navigation Buttons property is set to Yes, so I have the buttons at the bottom of the form giving me the ability to navigate between records, and especially the ability to add a new record (the button with the Arrow and Asterisk)...
  7. S

    DAO Recordset - Edit and Update

    Much easier indeed, thank you!! -"George" a.k.a. Scott
  8. S

    DAO Recordset - Edit and Update

    Bob, Thanks for the insight. Not sure why I didn't see a simpler solution at first :P Are you still assuming the form is using a multi-column query that populates the combobox? So the combobox will still be populated with two columns, like: Apple, M Grape, S Banana, M etc. Where the first...
  9. S

    DAO Recordset - Edit and Update

    Hello, I have a continuous form bound to a table. I have one control on the form, a combobox. When I select a new value in the form's combobox (which is bound to a field in the table) I would like to update a "hidden" field on the table, in the same record. By "hidden" I mean not visibly...
  10. S

    When is a bound query UNupdateable?

    Thanks that was very helpful ;)
  11. S

    When is a bound query UNupdateable?

    Hello, I saw a thread on this once, but wasn't sure if it hit every point. When does a query bound to a form officially become UNupdateable? I have a query that was updateable (I could change the value in a text control on the form, say FIRST NAME, and results would save to the database). I...
  12. S

    DAO RecordSet - selecting a specific record

    Oh yeah, the Bound Column property of the ComboBox was also something that's used to link the Combo Box to the Form...
  13. S

    DAO RecordSet - selecting a specific record

    Banana, Thanks for the info. I am using a query in the Row Source of the Combo Box. I wanted to use DAO to add a little search feature to the app, which tied the Combo Box's selected value to the current record on the form, and hence the rest of the Form's Controls. The tip above worked...
  14. S

    DAO RecordSet - selecting a specific record

    pbaldy thank you, that is just what I was looking for :) -Scott
Back
Top Bottom