update

  1. Alexander Stolte

    Android Example [B4X] Supabase - INSERT or UPDATE a record and return it

    https://www.b4x.com/android/forum/threads/b4x-supabase-the-open-source-firebase-alternative.149855/ It is possible to create a new data record and return it directly. Use the SelectData property Dim Insert As Supabase_DatabaseInsert = xSupabase.Database.InsertData Insert.From("users")...
  2. andymc

    Games What's the latest?

    It feels like it's been a bit quiet here lately, game making wise. What's everyone's current projects? And what framework/libraries are you using? I'm updating my old retro space invaders clones, that use the libGDX library. I know I should probably look into X2 to make them cross platform, but...
  3. M

    Wish [B4X] ScrollingLabel with different modes

    Hi everyone, how many of you would like to have the ScrollingLabel (in XUI Views) settable in multiple modes? For example i would like to have "Ping Pong" scrolling, instead of the "Loop" scrolling i think it could be an "easy" but cool upgrade for that view :)
  4. M

    Android Question [B4X] Update value of an item in CustomListView

    Hi everyone, is it possibile to update the value of an item of a custom list view? because i do not see any method for this, the only way i figured out is to: save the view using .GetPanel save the value using .GetValue update the value replace the item using .ReplaceAt and using the new value...
  5. Alexander Stolte

    Android Example [B4X] Supabase - Database CRUD

    https://www.b4x.com/android/forum/threads/b4x-supabase-firebase-alternative.149855/ This is a very simple tutorial on how to use the CRUD options. A more detailed tutorial is coming soon. CREATE Dim Insert As Supabase_DatabaseInsert = xSupabase.Database.InsertData Insert.From("dt_Tasks") Dim...
  6. M

    Bug? XSpeechRecognizer by MultiverseApp error occurred message - serious problem

    Hi eveyrone last year I made an app that uses XSpeechRecognizer by @Multiverse app library to detect words, infact you can see some posts of mine on the forum. However I received a report that some useres experienced a crash of the app when they start the Speech To Text. So I opened the project...
  7. Magma

    B4J Tutorial How to create a StandAlone EXE without the OpenJAVA (OpenJDK)... an update for your app..

    Well "@MrKim" had a wish... and talking about this... then an idea came into my mind... not a "super-duper" but a trick... Wish: https://www.b4x.com/android/forum/threads/b4j-executables-wish-es.140119/#post-914123 So I am here to share it with you guys... How to Create StandAlone Updates that...
  8. M

    Android Code Snippet [B4X] CameraExClass- QrCode/Barcode Reader fix new SDK

    Hi everyone, today I updated all the packages with the SDK Manager. After that, the app was crashing on a line about the QrCode reader made using the CameraEx class (there is a tutorial in the forum). Reading the logs I found out that now you must have the following line in the manifest to get...
  9. mmrafiei

    Android Question update the global variables

    #Region Project Attributes #ApplicationLabel: BASEproject #VersionCode: 1 #VersionName: 'SupportedOrientations possible values: unspecified, landscape or portrait. #SupportedOrientations: portrait #CanInstallToExternalStorage: False #End Region #Region Activity...
  10. S

    B4J Library Build parametized SQL queries for Insert,Update and Delete

    This is a small class to easily build SQL queries declare an instance of the class clBuildSQL and initialize it Private fBuildSQL As clBuildSQL .... fBuildSQL.initialize Insert record Just pass as first parameter the table name and as second parameter a map with pairs keys/values...
  11. S

    B4A Class Build parametized SQL queries for Insert,Update and Delete

    This is a small class to easily build SQL queries declare an instance of the class clBuildSQL and initialize it Private fBuildSQL As clBuildSQL .... fBuildSQL.initialize Insert record Just pass as first parameter the table name and as second parameter a map with pairs keys/values...
  12. M

    iOS Question XUI Views Example NOT installable

    Hi, i tried to run the example of XUI views from @Erel but i can't install it. iPhone prompts me that the "B4i Example" App must be updated by the developer, and let me choose from "delete" or "store". But i can't open it. Why this happends?
  13. A

    Android Question Question about the application update.

    Hi all. I have a question about the application update. I have an app (let's say version 5.5) installed from the Google Play market running on my Android phone. I've made some changes , changed version number to 5.6, created apk and uploaded the update to the Google Play market. A few hours...
  14. K

    Android Question Progressbar with SQLite NonQuery

    Hi Experts, This is SQlite Update Code Dim count,limit,offset As Int count = db.ExecQuerySingleResult($"select count(*) from a"$) limit = 100 offset = 0 Do While offset < count db.ExecNonQuery( _ $"UPDATE a SET amt= (update sum values here)...
  15. saeed10051

    B4J Question Update a record in mysql using php

    Hi, i am trying to update a record in an online mysql database. using following php script <?php $conn = new mysqli("pdb48.awardspace.net", "3373050_restaurant", "abc123", "3373050_restaurant"); if ($conn->connect_error) { die("ERROR: Unable to connect: " . $conn->connect_error); }...
  16. Mrphone

    Android Question Show screen updates

    Hi I want to create a program that does something every time the screen is updated Like Show screen updates in Developer options 👇 👇👇 Thanks in advance for answering😘
  17. solutionhacker

    Android Question SDK Compatibility for DJI Mavic Mini

    Hello, Does anyone know if there will be any compatibility or updates for the B4A library to support the latest release of the DJI Mavic Mini? It seems like this is one of DJI's most lightweight and improved quadcopter yet released. Unfortunately, I was not able to find anything on DJI's...
  18. M

    Android Question CRASH using AppCompat object

    Hi everyone, i recently opened up a project that i stopped some time ago, before all the updates. In the project i used AppCompat Checkboxes and switches and as soon as the layout loads up the app crashes. I tried to remove the checkboxes, switches ans library, and it doens't crash anymore...
  19. ALBRECHT

    Android Question updating app via the Store

    Hello, When my app purpose an update to the user, like below : (by checking if exists new version trough the webapi) is there a good way to make the script ? - Close the app - Launch the Store app (PlayStore or AppStore , if exist) - make it positionning on the app into the store folder (like...
  20. ALBRECHT

    Android Question Sqlite Database options

    Hello, I like to get a suggest of method, regarding best practices for my App : 1/ i have an SQLITE db that contain general setting strings and language strings for its operation, and independent of user data. I systematicaly copy that DB from asset dir to Internal, so even after app updating...
Top