S
Steve
Using AccessXP in A2000 mode.
TextBoxName is an unbound textbox on a form. TextBoxName.Text is always current
while TextBoxName.Value is not current when the OnChange event occurs. So to
make TextBoxName.Value current, my code in the OnChange event looks like:
DoCmd.RunCommand acCmdSaveRecord
Code to do other stuff....
Now say I want to enter 532 in the textbox. I type a 5 and the textbox displays
5; I type a 3 and the textbox displays 35; finally I type a 2 and the textbox
displays 235.
I need to save the record (I think) to make the value in the textbox current
when the OnChange event occurs and I need the value in the textbox to be 532 not
235! Suggestions???
Thanks!
Steve
TextBoxName is an unbound textbox on a form. TextBoxName.Text is always current
while TextBoxName.Value is not current when the OnChange event occurs. So to
make TextBoxName.Value current, my code in the OnChange event looks like:
DoCmd.RunCommand acCmdSaveRecord
Code to do other stuff....
Now say I want to enter 532 in the textbox. I type a 5 and the textbox displays
5; I type a 3 and the textbox displays 35; finally I type a 2 and the textbox
displays 235.
I need to save the record (I think) to make the value in the textbox current
when the OnChange event occurs and I need the value in the textbox to be 532 not
235! Suggestions???
Thanks!
Steve