D
d
I need to pull information from several Tables based on their joined field.
I had bee doing it by using a query and a ComboBox, but as the amount of
fields grows past the 255 limit, I would like to pull the info straight from
the Tables. I used the following code to pull from the ComboBox:
Me!SL3ItemEdit1.Value = Me!WpnTypeEdit6.Column(4)
This worked great except for two things; I need to do this several hundred
times over the course of the program - so I need to write a For Next or a Do
While and change the to:
Me!SL3ItemEdit2.Value = Me!WpnTypeEdit6.Column(5)
Me!SL3ItemEdit3.Value = Me!WpnTypeEdit6.Column(6)
and so on. Also the code to pull from the table instead of the ComboBox.
Thanks for any help offered,
I had bee doing it by using a query and a ComboBox, but as the amount of
fields grows past the 255 limit, I would like to pull the info straight from
the Tables. I used the following code to pull from the ComboBox:
Me!SL3ItemEdit1.Value = Me!WpnTypeEdit6.Column(4)
This worked great except for two things; I need to do this several hundred
times over the course of the program - so I need to write a For Next or a Do
While and change the to:
Me!SL3ItemEdit2.Value = Me!WpnTypeEdit6.Column(5)
Me!SL3ItemEdit3.Value = Me!WpnTypeEdit6.Column(6)
and so on. Also the code to pull from the table instead of the ComboBox.
Thanks for any help offered,