C Chicao99 Member Licensed User Longtime User Nov 16, 2023 #1 B4X: Private txtContNumber As B4XFloatTextField ... Dim txt2 As TextField = txtContNumber.TextField txt2.KeyboardType = Bit.Or(txt2.KeyboardType, 4096) This doesn't work, any other suggestion?
B4X: Private txtContNumber As B4XFloatTextField ... Dim txt2 As TextField = txtContNumber.TextField txt2.KeyboardType = Bit.Or(txt2.KeyboardType, 4096) This doesn't work, any other suggestion?
Erel B4X founder Staff member Licensed User Longtime User Nov 16, 2023 #2 B4X: Dim txt2 As TextField = txtContNumber.TextField txt2.Autocapitalize = txt2.AUTOCAPITALIZE_SENTENCES Upvote 0
B4X: Dim txt2 As TextField = txtContNumber.TextField txt2.Autocapitalize = txt2.AUTOCAPITALIZE_SENTENCES
C Chicao99 Member Licensed User Longtime User Nov 16, 2023 #3 Erel said: B4X: Dim txt2 As TextField = txtContNumber.TextField txt2.Autocapitalize = txt2.AUTOCAPITALIZE_SENTENCES Click to expand... Thank you sir. Upvote 0
Erel said: B4X: Dim txt2 As TextField = txtContNumber.TextField txt2.Autocapitalize = txt2.AUTOCAPITALIZE_SENTENCES Click to expand... Thank you sir.