AlexanderBB
Well-known Member
- Joined
- Jul 1, 2009
- Messages
- 2,072
- Office Version
- 2019
- 2010
- Platform
- Windows
Code:
Private Sub cmdPrimary_Click()
txtPrimary.text = GetFolder("Select the Primary Folder")
End Sub
Private Sub txtPrimary_AfterUpdate()
Stop
End Sub
The GetFolder function returns a value which txtPrimary displays.
It isn't assigned a value until then but the After Update event doesn't fire.
Unless I type something into the text box. Is that how it's supposed to be ?