B4A Question How to add borders to EditText1 of B4A? - bskotu555 (first post)    Nov 6, 2024
Why not use؟
B4XFloatTextField
See search results here.
158359It's ok..... B4A Question edittext - aeric (first post)    Oct 26, 2024 Is there a border with edittext? Yes. https://www.b4x.com/android/forum/threads/solved-adding-border-to-edittext-views.134046/#post-847935 Sub Class_Globals Private Root As B4XView Private xui As XUI Private EditText1 As B4XView End Sub Private Sub B4XPage_Created (Root1 As B4XView) Root = Root1 Root.LoadLayout("MainPage") EditText1.SetColorAndBorder(EditText1.Color, 2dip, xui.Color_Blue, 0) End Sub... B4A Question EditText - Sergey_New (first post)    Jan 19, 2026   (1 reaction) I did this: Dim cd As ColorDrawable cd.Initialize(Colors.Transparent, 0) Dim borderCd As ColorDrawable borderCd.Initialize2(Colors.White, 1dip, 1dip, Colors.Black) EditText1.Background = borderCd... Wish Add image borders radius parameter in SMM (B4XImageView) - TILogistic    Feb 19, 2024 Sometimes I want to see images in SMM with rounded corners and I have to resort to external routines to do it. And reviewing the SMM code, I see the feasibility of adding the image corner radii parameter (B4XImageView). Greetings Public Sub AddMedia(RequestSet As SMMediaRequestSet, MEDIA As SMMedia, Request As SMMediaRequest) #if SMM_DEBUG Log("AddMedia: " & MEDIA.Meta.Key... B4A Question [SOLVED] Adding border to EditText views? - MegatenFreak    Sep 6, 2021 Hi. Is there any way to do that? I know there're no functions in the view itself and that you ca... B4A Question How to create bolder style for EditText in B4A ? - Erel (first post)    Jul 13, 2023   (1 reaction) The regular B4XView.SetColorAndBorder works with EditText.
If you mistakenly declared the view as EditText then cast it first: EditText1.As(B4XView).SetColorAndBorder(...)... B4A Library [B4X] BCTextEngine / BBCodeView - Text engine + BBCode parser + Rich Text View - Erel    Mar 22, 2026   (74 reactions)   tags: Label BBCode, text style, RTF component, B4X, ritchtext, rich text (Activity) BBCodeView1.Text = $"Hello world!"$ You can use all kinds of BBCode tags to format the text and add non-text elements inside. BBCodeView1.Text = $"Hello world!"$ https...) BBCodeView1.Text = $"Lets add a button here . Do you see it?"$ https://www.b4x.com...-bbcodeview-text-engine-bbcode-parser-rich-text-view.106207/post-938548 - v1.93 - Fix issues.../threads/b4x-bctextengine-bbcodeview-text-engine-bbcode-parser-rich-text-view.106207/post-779309 - v1.84... B4A Question How to implement EditText1 text box with barcode scanner to automatically run other code after scanning the barcode - bskotu555 (first post)    Oct 26, 2024 #
If you event name for EditText1 is EditText1 (not EditText2 or EditText_2) then EditText1_TextChanged should work.
#3 floor... B4A Question How to initialize EditText1 on the Main page? - jkhazraji (first post)    Nov 11, 2024   (1 reaction) :
Private EditText1 as EditText
EditText1.Initialize("ed") 'Ed is the event name
In...If it is a one-page app then as you select EditText in the Designer and generate it as a member... different edittext methods as ed_TextChanged... Share My Creation [Project Template] [Web] API Server v1 - aeric    Jan 16, 2025   (67 reactions) /2022 - Web API Server - v1.15 - JS: Fixed bug point to wrong id for Category dropdown in Edit dialog... Server - v1.13 - Home page with Add, Edit and Delete Product (using Bootstrap modal and jQuery Validate... Updates Web API Server v2 is available Version: 1.16 Description: Create Web API Server... Template: Web API Server (1.16).b4xtemplate Depends on following libraries: ByteConverter JavaObject.... How to use: Copy the "Web API Server (1.16).b4xtemplate" file into B4J Additional... Page: 1   2   3   4   5   6   |