Babycat
Member
- Local time
- Tomorrow, 02:15
- Joined
- Mar 31, 2020
- Messages
- 285
Hi Everyone,
I have simple task but I have not configured how to do it efficient.
I make color picker box for end-user to change a textbox color in any color they want by vba code
Textbox1.ForeColor = 'somevalue'
This color should be kept on next time the form open, so I tried to save it when form close by acSaveYes:
DoCmd.Close acForm, Me.Name, acSaveYes
But it is not working, the color is back to default when in design mode... How can I deal with this? Please help
I have simple task but I have not configured how to do it efficient.
I make color picker box for end-user to change a textbox color in any color they want by vba code
Textbox1.ForeColor = 'somevalue'
This color should be kept on next time the form open, so I tried to save it when form close by acSaveYes:
DoCmd.Close acForm, Me.Name, acSaveYes
But it is not working, the color is back to default when in design mode... How can I deal with this? Please help