Using Access 2000
I have a form "frmCustomers." On the form is a tab control page which has a subform "fsubProjects." On fsubProjects is an additional subform "fsubMaterials."
On fsubMaterials there are 3 dependent combo boxes, Category, Item and [Item Type]. When I make a selection in Category then Item possibilities are dependent upon the selection in Category. Likewise, when a selection is made in Item then [Item Type] possibilities are dependent upon the selection in Item.
All of this works fine.
The problem occurs when a Project is saved. Then the information in the Item combo box and the [Item Type] combo box disappear from the screen. Only the Category remains.
The data is still there, of course, but won't display until fsubProjects is closed and reopened.
I have tried a number of ways to get that information to continue to display - Repaint, Requery, Refresh. I have also tried referring to the subform control like this...
Me.fsubMaterials.Form!Item.RowSource = Me.fsubMaterials.Form!Item.RowSource
I also tried putting this latter code on the After Update event of fsubMaterials itself.
Any suggestions as to how I can get this information to stay displayed on the screen?
Thanks.
Tom
I have a form "frmCustomers." On the form is a tab control page which has a subform "fsubProjects." On fsubProjects is an additional subform "fsubMaterials."
On fsubMaterials there are 3 dependent combo boxes, Category, Item and [Item Type]. When I make a selection in Category then Item possibilities are dependent upon the selection in Category. Likewise, when a selection is made in Item then [Item Type] possibilities are dependent upon the selection in Item.
All of this works fine.
The problem occurs when a Project is saved. Then the information in the Item combo box and the [Item Type] combo box disappear from the screen. Only the Category remains.
The data is still there, of course, but won't display until fsubProjects is closed and reopened.
I have tried a number of ways to get that information to continue to display - Repaint, Requery, Refresh. I have also tried referring to the subform control like this...
Me.fsubMaterials.Form!Item.RowSource = Me.fsubMaterials.Form!Item.RowSource
I also tried putting this latter code on the After Update event of fsubMaterials itself.
Any suggestions as to how I can get this information to stay displayed on the screen?
Thanks.
Tom