Search Result
Collapse
3 results in 0.0050 seconds.
Keywords
Members
Tags
-
How to Requery combobox in subform based on unbound parent form listbox
I have a combobox on a subform that is based on an SQL that uses a listbox on the unbound parent form as the criteria. When the form is first loaded, it works perfectly, limiting the dropdowns to only those associated with the listbox. However, when I update the listbox, I cannot get the combobox to requery. I've tried requery AfterUpdate on the listbox control, AfterUpdate on several subform controls, as well as trying to requery the combobox... -
setting public objects of parent form
Hey guys (m/f),
I've got a problem that's been having me pulling out hairs and losing sleep quite some time now.
The thing is this. I have a container form with a subform control. This control can take several sub forms as its source object. To make the information, that is generated on one sub form, available to a later sub form, I'm trying to store data in public variables and objects of the container form.
... -
How do I make one Form parent of Another.
I have two forms, a Main Form and a Child Form.
And In the Main Form, I have a small Async Process, Which
needs to show the child form.
I use mainForm.BeginI nvoke(ShowtheNe wForm) to
start the async process and in the funciton
(ShowtheNewFOrm ) I say ChildForm.Show( ).
I cannot use ShowDialog here as this blocks the
main form. I want control to be active on the MainForm
also. SO, this requires...