I need to populate a textbox with some data after a selection is done in a combo box, I get an error when I try to enter eny data into the text box. the code below is a test code which gives the error.
The error is: Run -time error 2448
You can't assign a value to this object
Please help.
Code:
Private Sub cmbServerName_AfterUpdate()
txtSerialNumber.Value = "5"
End Sub
The error is: Run -time error 2448
You can't assign a value to this object
Please help.