automatic fill

  • Thread starter misschanda via AccessMonster.com
  • Start date
M

misschanda via AccessMonster.com

hello
on my form i have made an organized layout to comprise of four experiments (a-
d). the resin used for experiment A, is chosen using a cascading combo box
and automatically fillled in under txt field for experiment A resin.

my question is how to make the resin selection cascading box work for all
four different potential materials.(A-D).

as of now this is my code

Private Sub Combo0_AfterUpdate()
Me.Combo2.Requery
Me.Combo2 = Null


Me.Combo6.Requery
Me.Combo6 = Null
End Sub


Private Sub Combo2_AfterUpdate()
Me.Combo6.Requery
Me.Combo6 = Null
End Sub

Private Sub Combo6_AfterUpdate()

Forms![LABLINEEXTRUSION1]![ResinA] = Me.Combo6

End Sub


Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top