How do I do this:
Dim objControls As New Object
' Receiving
objControls.Add (txtReceivingTe ch) ' 0
objControls.Add (txtReceiving) ' 1
' Chemistry
objControls.Add (txtNote) '2
objControls.Add (txtSi) '3
objControls.Add (txtFe) '4
objControls.Add (txtCu) '5
objControls.Add (txtMn) '6
objControls.Add (txtMg) '7
objControls.Add (txtCr) '8
objControls.Add (txtZn) '9
objControls.Add (txtTi) '10
objControls.Add (txtChemTech) '11
Without getting late binding errors with option strict on?
Thanks!
Usarian
Dim objControls As New Object
' Receiving
objControls.Add (txtReceivingTe ch) ' 0
objControls.Add (txtReceiving) ' 1
' Chemistry
objControls.Add (txtNote) '2
objControls.Add (txtSi) '3
objControls.Add (txtFe) '4
objControls.Add (txtCu) '5
objControls.Add (txtMn) '6
objControls.Add (txtMg) '7
objControls.Add (txtCr) '8
objControls.Add (txtZn) '9
objControls.Add (txtTi) '10
objControls.Add (txtChemTech) '11
Without getting late binding errors with option strict on?
Thanks!
Usarian
Comment