S strupp01 Active Member Licensed User Longtime User Jul 21, 2017 #1 I've used two radio buttons, one of which should contain the text 'Datum_Uhrzeit_Eigentümer'. The first dash is not shown. If I insert an additional dash before, the desired underline is displayed. Program error? Last edited: Jul 21, 2017
I've used two radio buttons, one of which should contain the text 'Datum_Uhrzeit_Eigentümer'. The first dash is not shown. If I insert an additional dash before, the desired underline is displayed. Program error?
Erel B4X founder Staff member Licensed User Longtime User Jul 23, 2017 #2 It is related to the accelerator character. It will be disabled in the next update. For now you can use this code to disable it: B4X: Dim jo As JavaObject = RadioButton1 jo.RunMethod("setMnemonicParsing", Array(False)) Upvote 0
It is related to the accelerator character. It will be disabled in the next update. For now you can use this code to disable it: B4X: Dim jo As JavaObject = RadioButton1 jo.RunMethod("setMnemonicParsing", Array(False))
S strupp01 Active Member Licensed User Longtime User Jul 23, 2017 #3 OK, I can live with that. Upvote 0