I’m creating a WiX installer for an application. I have a requirement to make the text in an Edit control uppercase (replace lowercase letters with uppercase as the input is being given).
How to solve this issue?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t think there is a way to do it without a custom action (CA). The most straightforward approach which comes to my mind is to create an immediate CA, which converts the value of the Edit control Property to UPPERCASE before using it further.
Hope it helps. If there’s a simpler way, I would be happy to know it! 🙂