This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- How to display in capital letter in textbox.
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 27, 2008
08:27 AM
How to display in capital letter in textbox.
hello,
In the Textbox(basic MSI project),when the user enters input,it should display in capital. Since "DoAction" event is not supported for the textbox, i could not make it. Anybody has idea?
Regards,
Akshara
In the Textbox(basic MSI project),when the user enters input,it should display in capital. Since "DoAction" event is not supported for the textbox, i could not make it. Anybody has idea?
Regards,
Akshara
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 30, 2008
12:39 PM
Perhaps a masked edit control set to uppercase? This might not work well unless the text is restricted to a single length... Would it be a problem to just change the text when the Next button is pressed?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 01, 2009
08:47 AM
when the user enters the input, he has to view immediately in capital letter only.please let me know if any other option other than masking or doing it in next button.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 02, 2009
12:48 AM
Unfortunately, Windows Installer does not publish edit-field-changed messages so you can't intercept keystrokes as the user types them. This causes other annoyances as well (like not being able to disable the Next button until the user types valid values into one or more edit fields). In an MSI installation, that validation can only take place after the user clicks Next.