> I cannot place a DB Lookup ComboBox on a scrolling > region. I can place a > Variable Lookup ComboBox but it doesn't show up > after I save the form so I > assume it's also not allowed (it doesn't generate > any error messages).
For what it's worth -- you might consider making the scrolling region "display only" (you could even change to a variable listbox and get rid of the second table from the form). Then, include a button that opens a new single table form against the detail table to do the editing. It's true it's not as "slick" as doing it all on one form, but there are some advantages. You isolate the logic a bit more, simplify that first form (which sounds busy with 45 items in a scrolling region) and, most importantly, if coded properly, you will be able to reuse that single-table detail form elsewhere in the application instead of having to redo the logic. -- Larry
