G
Gwen
I have 7 unbound textboxes
Users enter info in 7 unbound textboxes using
percentages. The sum of the 7 textboxes automatically
goes into an bound textbox.
My afterdate update event in each of the textbox is: me!
sum = me!txtbox1 + me!txtbox2 + so on.
The problem I having is that when the users enters the
info it carries to the next record.
Also I when I reopen the form the bound textbox data is
missing.
I have tried using the form's on current event form, but
it does not change the text boxes to the default
Private Sub Form_Current()
Forms![Form 1]!sbf1.Form!txtAdmin = Forms![Form 1]!
sbf1.Form!txtAdmin.DefaultValue
Please assist!
Thanks
Gwen
Users enter info in 7 unbound textboxes using
percentages. The sum of the 7 textboxes automatically
goes into an bound textbox.
My afterdate update event in each of the textbox is: me!
sum = me!txtbox1 + me!txtbox2 + so on.
The problem I having is that when the users enters the
info it carries to the next record.
Also I when I reopen the form the bound textbox data is
missing.
I have tried using the form's on current event form, but
it does not change the text boxes to the default
Private Sub Form_Current()
Forms![Form 1]!sbf1.Form!txtAdmin = Forms![Form 1]!
sbf1.Form!txtAdmin.DefaultValue
Please assist!
Thanks
Gwen