Default Value for unbound text box and unbound form:

  • Thread starter Thread starter 1
  • Start date Start date
1

1

Thank you for your help and answer:
I have unbound Form With 4 Unbound Text box
I want to create code when the user type any text in any of the 4 text box
be the default value for the text box and still The Default Value until the
user change the text that write in text box and also still in text box if
the user close the form…
I have code to set default value for bond form and bond text box this code
is:
===============================================
Me.Text0.DefaultValue = Chr(34) & Me.Text0.Value & Chr(34)
================================================
I want to explain some thing about unbound control and unbound form:
In design view if I set the Default value for the control manually the value
still in the control.. and if the user close and open the form still Default
value that create in design as is..
I want to till you How can I do the by using code in run time and in MDE not
MDB…
 
Back
Top