D Declan Well-Known Member Licensed User Longtime User Mar 16, 2023 #1 Is it possible to force text in a SD_IconTextView to uppercase?
Star-Dust Expert Licensed User Longtime User Mar 16, 2023 #2 Use SD_textView.NativeObject to set a mask with native methods Or insert an upcase of new text into the TextChanged Upvote 0
Use SD_textView.NativeObject to set a mask with native methods Or insert an upcase of new text into the TextChanged
D Declan Well-Known Member Licensed User Longtime User Mar 16, 2023 #3 I cannot find a upcase in "SD_textView.NativeObject". Could you please give me an example of what I must do? Many Thanks for an awesome control Upvote 0
I cannot find a upcase in "SD_textView.NativeObject". Could you please give me an example of what I must do? Many Thanks for an awesome control
D Declan Well-Known Member Licensed User Longtime User Mar 17, 2023 #4 Sorted: txtDeviceID.NativeObject.InputType = Bit.Or(txtDeviceID.NativeObject.InputType, 4096) Upvote 0