column

  1. Alexander Stolte

    Android Example [B4X] Supabase - Column Alias

    https://www.b4x.com/android/forum/threads/b4x-supabase-the-open-source-firebase-alternative.149855/ You can use column aliases in Supabase. All you need to do is write the alias name, a colon and then the column name. 'AliasName:ColumnName Query.Columns("Name:Tasks_Name") Dim Query As...
  2. Tirecs

    B4J Question [SOLVED] B4J TableView Column Alignment Error in Java versions higher than 8

    Hello forum members, we use this function for setting the alignment of columns of a TableView in our B4J applications: 'Possible Alignments: [ top-left | top-center | top-right | center-left | center | center-right | bottom-left | bottom-center | bottom-right | baseline-left | baseline-center |...
  3. H

    B4J Question TableView scrollbar

    Tableview horizontal scrollbar is hidden when columns with is out of tableview width ( when tableview is empty ), i want show scrollbar even tableview is empty
  4. W

    B4J Code Snippet [XLUtils] [jPOI5] Detect/unhide hidden rows and columns in a worksheet

    Dim i As Int Dim theSheet As PoiSheet = ... Dim joTheSheet As JavaObject = theSheet Dim theSheetWriter As XLSheetWriter = ... Dim theSheetLastRow1 As Int = theSheet.LastRowNumber + 1 ' One-based index of the last row in the sheet Dim theSheetLastCol0 As Int = theSheet.GetRow(0).Cells.Size - 1 '...
  5. SMOOTSARA

    Android Question Add columns to the sqlite table

    Hello friends šŸŒ¹ I have a sqlite database "master.db" with a table "table1" The columns of the table are: " ID, first_name, last_name" I want to check if there is no "phone_number" column, add it and save a data in "phone_number" column . (with coding sqlite commands in the program) 1_How...
  6. M

    Android Question Formatting column in B4XTable

    Hello! I habe two columns in the B4XTable, one for the date data and the second for the time data. Wenn I set DateTime.DateFormat="dd.MM.yyyy" and try to load the table then I get in both columns date values. If I set DateTime.DateFormat="HH:mm" then I get in both columns time values. How can I...
  7. M

    [B4X] Double (Multi) Column CLV

    Hi everyone, recently i needed to implement an double column list in one of my app. I was ispired by an @Erel example, but i needed something slightly different, so i did this (i want to share with you, maybe could be useful to someone even if is a simple thing): (it support odd number of...
  8. M

    Android Question Double Column CustomListView

    hi everyone it's possibile to have a double column customlistview to achieve this kind of result? I've to do this also in B4i Thanks!
  9. K

    Android Question two column spinner

    i want spinner with two columns like : abcd |1 efgh |2 ijkl |3 mnop |4 qrst |5 thanks
Top