I have followed your suggestion and used the Tag property with code as follows:-
Private Sub LastBt_Click()
Dim Ctrl As Control
Dim ComplaintNo as Integer
Dim RowNo As Integer
With Sheets("Customer_Complaints")
ComplaintNo = Application.WorksheetFunction.CountA(.Range("A:A")) + 1
RowNo = ComplaintNo + 8
End With
With EntryFrm
For Each Ctrl In .Controls
For a = 0 To 11
If Ctrl.Tag = "Tag" & a Then
Ctrl.Value = Sheets("Customer_Complaints").Range(Cells(RowNo, a + 1)).Value
End If
Next a
Next Ctrl
End With
Me.Hide
EntryFrm.Show
End Sub
All works well till Ctrl.Value = Sheets("Customer_Complaints").Range(Cells(RowNo,a+1)).value
This gives an Application defined or Object defined error. Ctrl.Tag is what I expected, but I suspect that Ctrl.Value might be wrong.Can anyone help please?
John
Bookmarks