View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jacy Erdelt[_2_] Jacy Erdelt[_2_] is offline
external usenet poster
 
Posts: 5
Default 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