Run Time Error 2185:

T

tsluu

This error is triggered by the Change event when I reference .text property:

private Sub tbxStart_Change
If Not Trim(tbxTimes.Text & "") = "" And Not Trim(tbxStart.Text & "") =
"" Then
tbxEnd = tbxStart + tbxTimes
End If
end sub

I need the .text as the .value is different not an up to date figure. Is
there a work around.
 
Top