Text Box not showing inputted value
I am trying to initialise a form. I would like it clear all the text boxes,
except the last one should be popluated with "Yes" (but the user can enter
whatever info is appropriate is "yes" is not). The set.focus command works,
but the last box is still empty. What am I doing wrong?
Private Sub EnterNewConsult_Initialize()
txtStore.Value = ""
txtCustomerName.Value = ""
txtClosed.Value = "yes"
txtStore.SetFocus
End Sub
|