Re: IDE problem with LabelEdit and Upper Case
- Posted by marky1124 Dec 17, 2008
- 878 views
Sorry I'm out of practise posting to the forum and I forgot to preview before posting. I've reposted the code from above in a eucode block....
-- code generated by Win32Lib IDE v1.0.4 Build July-06-2008 constant TheProgramType="exw" include Win32Lib.ew without warning -------------------------------------------------------------------------------- -- Window Window1 constant Window1 = createEx( Window, "Window1", 0, Default, Default, 400, 300, 0, 0 ) constant LText4 = createEx( LText, "Name:", Window1, 52, 68, 40, 20, 0, 0 ) constant EditText2 = createEx( EditText, "EditText locked to uppercase", Window1, 92, 68, 248, 20, w32or_all({ES_UPPERCASE}), 0 ) constant LabelEdit3 = createEx( EditText, "LabelEdit locked to uppercase", Window1, 92, 108, 248, 20, w32or_all({ES_UPPERCASE}), 0 ) constant LabelEdit5 = createEx( EditText, "LabelEdit not locked to uppercase", Window1, 92, 148, 248, 20, 0, 0 ) constant LTextLabelEdit3 = createEx( LText, "Name: ", Window1, 60, 112, 40, 20, w32or_all({ES_UPPERCASE}), 0 ) constant LTextLabelEdit5 = createEx( LText, "Name: ", Window1, 60, 152, 40, 20, 0, 0 ) --------------------------------------------------------- --------------------------------------------------------- WinMain( Window1,Normal )