the code im working with below wont work becuase it is telling me "'text' is not a member of 'string'" how would i go about doing this
** i have 15 text boxes on this form labeled fix1 - fix15, which is why im trying to do this instead of repeating code for each item
** i have 15 text boxes on this form labeled fix1 - fix15, which is why im trying to do this instead of repeating code for each item
Code:
Public Fix(0 To 50) As String
i = 1
Do Until i = 10
oSheet.Range("L" + (i)).Value = Fix(i).Text
i = i + 1
Loop