joeserrone
The cat of the cul-de-sac
- Local time
- Today, 19:24
- Joined
- Dec 17, 2006
- Messages
- 164
Hello Everyone,
I have a Continous Form in Access to enter data, I have a textbox called "txbstartenter" thatI want to keep Disabled until the user doesn't press a button, then this textbox can become enabled and the user can edit information in it. I made the txbstartenter disabled by default and in the button I've placed the code:
with txbstartenter
.enabled = True
.value = now
However I realize that once I do that the txbstartenter box becomes enabled for new Records. How can I make this text box only enabled for the Current Record the user is working once they press this button and keep it disabled for new records?
Thanks
I have a Continous Form in Access to enter data, I have a textbox called "txbstartenter" thatI want to keep Disabled until the user doesn't press a button, then this textbox can become enabled and the user can edit information in it. I made the txbstartenter disabled by default and in the button I've placed the code:
with txbstartenter
.enabled = True
.value = now
However I realize that once I do that the txbstartenter box becomes enabled for new Records. How can I make this text box only enabled for the Current Record the user is working once they press this button and keep it disabled for new records?
Thanks