Is this possible? I want to pass an array into a function that contains
txtBox.Text properties... I was thinking something like this, but I
know it won't work
Dim vendorFields(9) As String
vendorFields(0) = "txtVendorName. Text"
vendorFields(1) = "txtVendorStree tAddress.Text"
vendorFields(2) = "txtVendorCity. Text"
....
vendorFields(2) = "111 Star Ave"
but really i want it to translate as
txtVendorStreet Address.Text = "111 Star Ave"
I know my logic is messed up, is this possible, and if so how coud I do
it? Thanks
txtBox.Text properties... I was thinking something like this, but I
know it won't work
Dim vendorFields(9) As String
vendorFields(0) = "txtVendorName. Text"
vendorFields(1) = "txtVendorStree tAddress.Text"
vendorFields(2) = "txtVendorCity. Text"
....
vendorFields(2) = "111 Star Ave"
but really i want it to translate as
txtVendorStreet Address.Text = "111 Star Ave"
I know my logic is messed up, is this possible, and if so how coud I do
it? Thanks
Comment