I just figured it out... I had rebuilt this code earlier today in such a way that the textboxes no longer required a control source. However, since the previous build DID require control sources, all of the textboxes still had their control source property set. Simply erasing that property...
debug.print Me.Controls("tb" & I & j) results in Error 2424: The expression you entered has a field, control, or property name that [Table Name]: Employee and Client Database can't find
I have also tried directly referencing on of the textboxes and still end up with error 2448.
The text...
Initially I solved this by making sure there was a blank row when the table was created so it wasn't trying to set the textbox with a null value... and it worked :D... but now it doesn't :mad: The line in red text is the offending code - any thoughts?
Private Sub Form_Load()
'Dim t As...