Hi
i have a control on my form, a combo box
I have this line of code in a loop
Me.Controls("cboJDItems" & loopn).Text = Me.Controls("cboJDItems" & loopn + 1).Text
WHen this is resolved it reads
cboJDItems1.Text = cboJDItems2.Text
I also have a Private sub cboJDItems1_Change() which also gets involved by the above statement
How can i stop this
Brad
i have a control on my form, a combo box
I have this line of code in a loop
Me.Controls("cboJDItems" & loopn).Text = Me.Controls("cboJDItems" & loopn + 1).Text
WHen this is resolved it reads
cboJDItems1.Text = cboJDItems2.Text
I also have a Private sub cboJDItems1_Change() which also gets involved by the above statement
How can i stop this
Brad