OfficeUser
Well-known Member
- Joined
- Feb 4, 2010
- Messages
- 544
- Office Version
- 365
- 2016
- Platform
- Windows
Is it possible to click inside a userform textbox and populate using todays date? Thanks.
Private Sub [COLOR=#ff0000]WghtBx[/COLOR]_enter()
[COLOR=#ff0000]WghtBx [/COLOR]= Date
End Sub
Private Sub TextBox1_Change()
Me.TextBox1.Value = Date
End Sub
Private Sub TextBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Me.TextBox1.Value = Date
End Sub