I have a question re good programming etiquette. I have textboxes in a control array (called txtData()). The thing is, I need to replace txtData(9) with a combobox and txtData(13) with a combobox.
Now, I use a For...Next to transfer these values to a recordset to write to file.
Would it be GOOD practice to keep coding short and call the comboboxes txtData()
or
should we stick to the naming conventions and move the data to the recordset in a Select Case... statement
Your thoughts would be appreciated