combobox

  1. Alexander Stolte

    Android Example [B4X] AS TextFieldAdvanced - ComboBox

    https://www.b4x.com/android/forum/threads/b4x-xui-as-textfieldadvanced-title-information-counter-password-button-prefix-suffix-icons-multiline.141337/#content In this example I will show you how to quickly and easily turn the TextField into a ComboBox. 1. Set the Mode to "ComboBox" in...
  2. Alexander Stolte

    Android Example [B4X] AS Settings - ComboBox Property

    https://www.b4x.com/android/forum/threads/b4x-xui-as-settings.147435/ With this property, the user can quickly select one of several options via a combobox. It use the native combo box for each platform. Example 'ComboBox...
  3. the_watchmann

    Android Question Combobox add items in B4A & B4J

    Hi. I'm new to B4X. Been tinkering with B4A especially as Android programming is new to me and B4A/B4X offers a more familiar touch. Anyway, I have been trying to figure out how to add items to a combobox and haven't been able to find anything that works on the forums. I found a thread from 2013...
  4. TelKel81

    B4J Question ComboBox cell item (a label) disappears when selected

    The label is only visible again if I scroll out then back in view. Dim cbox as ComboBox cbox.Initialize("") For Each FontFamilyName As String In fx.GetAllFontFamilies Dim font As Font = fx.CreateFont(FontFamilyName, 16, False, False) Dim lbl As Label...
  5. MarcRB

    Android Question What is best way for pictures in combobox

    What is the best view for creating a spinner / combobox with pictures (icons) and text? Something like this C# example
  6. Star-Dust

    B4J Question [SOLVED] [Vuetify] VueTable - Switch and Combo-Box

    In a VueTable I have set a field like Switch. I'm trying to capture the event of when the value changes. Private Sub VueTable1_columnname_Change (item As Map) vuetify.ShowSwal(banano.ToJson(item)) End Sub But this event is not raised. Did I get the event wrong? Isn't it Change? I would...
  7. MegatenFreak

    Android Question [SOLVED] [B4XComboBox] How to align displayed items to the right?

    Hi. I want the user to see the items listed as aligned to the right side (as it's RTL) when they open the combo box item list. I've tried the following without success: 1. Setting text horizontal alignment to RIGHT in Designer. 2. Different methods in code: Private CBox As B4XComboBox '1: (app...
  8. Alexander Stolte

    Android Example [B4X] AS PopupMenuAdvanced - ComboBox

    This is a small example to demonstrate what is possible with the beautiful view. https://www.b4x.com/android/forum/threads/b4x-xui-as-popupmenuadvanced-based-on-xcustomlistview.135874/ The combobox consists of the following components: Base Panel that holds the 2 other views Label for the text...
  9. Star-Dust

    B4J Library [B4X] [XUI] SD_xComboBox

    At the request of my friend @Mashiane , I created a combobox that has the graphics of my IconTextView that is Multiplatform (B4X, B4J, B4i) NOTE: You can use this library for personal and commercial use. Include it in your projects.. Attention, even if it is a B4XLib library, it is not allowed...
  10. LucaMs

    B4i Library [B4X] lmB4XComboBox

    Version: 1.04 02/03/2021 https://www.b4x.com/android/forum/threads/b4x-lmb4xcombobox.116767/post-729765
  11. LucaMs

    B4J Library [B4X] lmB4XComboBox

    Version: 1.04 02/03/2021 https://www.b4x.com/android/forum/threads/b4x-lmb4xcombobox.116767/post-729765
  12. amorosik

    Italian [B4J] Combobox che non 'prende' item scelto al primo colpo

    Programma B4J con form che include due combobox Le combo vengono caricate da codice usando un campo letto da db, diciamo per fare un esempio la prima Codice Iva, la seconda combo con Aliquota Iva Quando avvio programma, le combobox vengono visualizzate come vuote Clicco col mouse e scelgo una...
  13. red30

    B4J Question ComboBox and ChoiceBox font size

    How do I resize the text in a ComboBox and ChoiceBox? For all elements, I will change the font size in the designer: If ActivitySize>20 Then btn.TextSize=16 lbl.TextSize=16 Else btn.TextSize=12 lbl.TextSize=12 EndIf But for the ComboBox, I cannot change the font. I've tried...
  14. By-Cod3rs

    Android Question Spinner selected text and set text value

    Hello Do We Have A Chance To Improve The Spinner Control? Example .Net Combobox or Devexpress Lookupedit or Devexpress Comboboxedit. The simplest Spinner.text="123456" does not exist. Thanks.
  15. LucaMs

    B4J Library [B4X] lmB4XComboBox

    lmB4XComboBox is a b4x library (https://www.b4x.com/android/forum/threads/100383/#content). It works with B4A, B4J and B4i. It is a modified version of the Erel's original B4XComboBox and allows you to store in it a value for each text item. Not rarely (mainly handling DB data) you need a...
  16. M

    iOS Question Change combobox text color

    Hi, I want to use the B4XCombobox. but I don’t know how to change the text color I created it in the designer thanks in advance !
  17. T

    B4J Question ComboBox/ChoiceBox does not showing items added

    Hi all, I added from the designer in a form a comboBox and type the following: Under Process Globals: Public combo2 As ComboBox Under Appstart: combo2.Initialize("") combo2.Items.Add("AAAA") combo2.Items.Add("BBBB") When i run the app, i click on comboBox and do nothing. Does...
  18. kokoroayo

    Android Question B4X ComboBox Issue - Item ID

    Hi all, I have an issue using the combo box. After going through the various tutorials, I successfully implemented the combobox. However, I could not achieve what I needed. I load data from my database into the combobox successfully but I could not get the right data for use. My table contains...
  19. Scotter

    Android Question B4XComboBox no visible arrow

    I haven't changed the color of anything. I do want to. But I just tried it default and it's a white box with black text, which is fine for now. But there is no dropdown arrow on the right. There is space for it once I tap the bar. But no visible arrow. What do I need to do? Thanks!
  20. MegatenFreak

    B4J Question Help right-aligning combo box items

    Hello everyone. I'm having a really hard time making this work. I have a combo box and I need to align all of the entries to the right of the dropdown list. I've searched the forum and tried different things without luck: 1. Using CSSUtils: CSSUtils.SetStyleProperty(CBOX_ProductType...
Top