b4x

  1. Alexander Stolte

    B4A Library [B4X] AS Views Overview

    AS Animated Counter AS MsgBox AS PinLock AS Placeholder AS Button Slider AS Floating Loading Button AutoTextSizeLabel AS Sliding Circles (Loadingview) AS Ripple View AS Gradients Panel AS Color Chooser AS Draw AS View Pager Have fun :)
  2. aeric

    Android Code Snippet [B4X] XUI Views - Time Dialog

    I want a better dialog for time input so I created this time (picker) dialog using B4X XUI Views and IME library. I think the code has too many lines. Hope someone can simplify or improve it. Note: I haven't tested but I think this code can also work for B4i and B4J. Update: I have tested with...
  3. luc-dev

    B4J Question [B4X] XOR string encoding/decoding

    Hi, I am trying to write XOR encoding/decoding for B4X (I need to use it as a light weight and fast encoding/decoding cross plateforme solution with B4I, B4A, B4J and Lazarus/FPC). I know XOR is not the best/strongest encryption solution but it should be ok for my needs). The following code...
  4. netkomm

    B4X : Some suggestions and ideas for Erel

    Hi Erel, I have some suggestions about B4X and, given that for necessity I had to move away from B4A/B4I and jump ship to Ionic and soon Flutter, this is my feedback I can offer so that B4X could be a valid alternative to those environments especially for many of us who are a 1 man show and...
  5. KMatle

    B4R Tutorial [B4x]: Exchange AES-256 encrypted messages between ESP32 and B4x

    This is about how to exchange AES256 encrypted messages incl. generated IV (initialization vector) between a ESP32 and B4x. Notes: - the ESP uses AES/CBC/NoPadding. The data must be padded (must have a length which is a multiple of 16). I've used a length of 256 to to get there (instead of...
  6. W

    Tool B4Xxref: cross-reference your projects with libraries and modules

    Before making a change to a shared module that I often use, I wanted to assess the projects it would impact. Windows Search is one option of course, but not one I find very practical in this case - time for B4Xxfref. Select the folder you want analysed (subfolders are inspected as well); the...
  7. MarkusR

    Wish Class Names

    i would like to use this without the B4X prefix always. B4XCollections, B4XFormatter, B4XTable something like using B4X dim c as Collections <- less code and better readable, better code completion at input dim f as Formatter or dim c as B4X.Collections
  8. Star-Dust

    [B4X] Today - Pi Day

    Today March 14 (3/14) is the day of the Greek Pi ù (https://en.wikipedia.org/wiki/Pi_Day) 3,14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 06286 20899 86280 34825 34211 70679…
  9. Star-Dust

    B4J Library [B4X] [XUI] SD DogLoadingIndicator

    SD_DogLoadingIndicator Author: Star-Dust Version: 0.02 DogLoadingIndicator Functions: Class_Globals As String DesignerCreateView (Base As Object, Lbl As Label, Props As Map) As String Base type must be Object Hide As String Initialize (Callback As Object, EventName As String) As String...
  10. Star-Dust

    B4J Library [B4X] [XUI] jSD BottoMenu (with source code)

    Download from Here iSD_BottoMenu Author: Star-Dust Version: 1.6 BottoMenu Events: Selected (Value As Int) Fields: BackGroundColor As Int Position As Int ' set or get Position Functions: AddMenu (CharText As String, FontName As B4XFont) As String Class_Globals As String Clear As String...
  11. Star-Dust

    B4A Class [B4X] [XUI] SD BottoMenu (with source code)

    SD_BottoMenu (update) Author: Star-Dust Version: 1.6 BottoMenu Events: Selected (Value As Int) Fields: BackGroundColor As Int Position As Int ' get or set Position Functions: AddMenu (CharText As String, FontName As B4XFont) As String Class_Globals As String Clear As String...
  12. Star-Dust

    B4i Library [B4X] [XUI] iSD BottoMenu (with source code)

    Download from Here iSD_BottoMenu (Update) Author: Star-Dust Version: 1.6 BottoMenu Events: Selected (Value As Int) Fields: BackGroundColor As Int Position As Int ' set o get position Functions: AddMenu (CharText As String, FontName As B4XFont) As String Class_Globals As String Clear...
  13. GMan

    B4J Question [B4X] Change color of log entry

    With this code: Sub LogR(s As String) Dim joBA As JavaObject joBA.InitializeStatic("java.lang.System") Dim joBAF As JavaObject = joBA.GetFieldJO("err") joBAF.RunMethod("println", Array(s)) End Sub we can make a log entry in red color (B4J at least) Is it possible to change the...
  14. Harris

    B4A Class [B4X] XUI - haB4XMsgBox (based on B4XDialog)

    Based on @Erel latest B4Xlibs projects, I created this modified class from the B4XDialog source class. With posted (expertly developed) classes, we can create anything that suits our purpose - without struggling to "get it right". Thanks @Erel - for the lesson on correctness. The...
  15. William Lancee

    B4J Question How can I refresh IDE formating to standardize code capitalization

    I started to notice variation in capitalization of code words see "Substring2" below. I tried cut and paste with autoformat on. No luck. Suggestions? pdir = pdir.SubString2(0, pdir.LastIndexOf("\")) Dim prefix As String = s.substring2(0,k) res = res.Substring2(0, res.length-1)
  16. FrostCodes

    B4J Library Cuppify - build Modern REST API's with ease

    A Professional B4J framework that allows you to build Modern REST API's with ease. You can download: HERE You can download JsonGenerator2 from here It is with the source code. You can upload your fixes or extra extensions to it and share and it would be merged if useful to the official...
  17. DonManfred

    Android Tutorial [B4X] Working with GoogleTasks using REST

    GoogleTasks are a Task list (ToDo List, Shopping List, whateveryouwant list) In this small Tutorial i want to share my findings while i played around with GoogleTasks. In fact i´m not finished playing with it ;-) Based on @Erel answer that it most probably work in B4J and B4i too i added [B4X]...
  18. Brandsum

    Android Question How to add XUI ImageSlider from code

    Hi, I'm using this ImageSlider by @Erel . I want to add this image slider to a Panel from code. Like this: Dim StoreBanner As ImageSlider StoreBanner.Initialize(Me,"Banner") PageScroll.Add(StoreBanner,"") 'PageScroll is a CustomListView But I'm getting this error: *** Service (starter)...
  19. A

    Android Question [solved] Set PieChart visibility

    Hello, I used Erel's library "[B4x] [XUI] Pie Chart" (https://www.b4x.com/android/forum/threads/b4x-xui-pie-chart.85785/#content). I am trying to make a pie chart "Visible = false", but there is no option like that... Does anybody know how do that? Thanks in advance.
  20. SJQ

    Android Question 3D Gaming Toolkit

    Hello All, following on from all the great work on the new 2D gaming libraries Erel has been working on would any of you guys have any idea how to integrate the AGK Toolkit. AGK is itself a 3D/2D Gaming Toolkit that uses Code blocks as an IDE and doesn't have its own IDE, its a great 3D & 2D...
Top