learningthings
New Member
- Joined
- Oct 29, 2021
- Messages
- 35
- Office Version
- 365
- Platform
- Windows
I have a simple code on my userform that says:
But when I type in Text0, text2 does not show what I typed in text0.
I text2 to mirror what I am typing in text 0 in real time.
VBA Code:
Private Sub text0_Change()
Me.Text2.value = Me.text0.Value
End Sub
But when I type in Text0, text2 does not show what I typed in text0.
I text2 to mirror what I am typing in text 0 in real time.