class

  1. W

    Android Code Snippet [Class] [B4X] wmHtml - remove html tags and replace html entities with their corresponding characters

    Posted in the B4J Code Snippets forum: https://www.b4x.com/android/forum/threads/class-b4x-wmhtml-remove-html-tags-and-replace-html-entities-with-their-corresponding-characters.162596/
  2. W

    B4J Code Snippet [Class] [B4X] wmHtml - remove html tags and replace html entities with their corresponding characters

    See title. The html entities' data were obtained from https://symbl.cc/en/html-entities/ and some additional ones were added. The attached demo project contains the class; there are no library dependencies. Example code from the project: Private wmHtml1 As wmHtml wmHtml1.Initialize...
  3. W

    B4A Class wmBoseSoundTouch - control a Bose SoundTouch speaker from B4X [B4X][Class]

    Posted in the B4J forum at https://www.b4x.com/android/forum/threads/wmbosesoundtouch-control-a-bose-soundtouch-speaker-from-b4x-b4x-class.162205/
  4. W

    B4J Library wmBoseSoundTouch - control a Bose SoundTouch speaker from B4X [B4X][Class]

    The title says it all; tested with a Bose SoundTouch 20. The API info on which this class is based can be found at https://firstandsecondhomes.com/assets/uploads/SoundTouchAPI_WebServices_v1.1.0.pdf. Public methods: - Initialize: Initializes the object - GetBass: Retrieves information about...
  5. W

    Share My Creation wmSQLtableSync - SQL table synchronisation between two databases [Class] [Source included] [B4A] [B4J]

    Why/What? A CloudKVS didn't cover my needs so I developed this class. Features: - It synchronises a table between two SQL instances; one is called the Client, the other the Server - All columns that exist in the Server table must be present in the Client table - Additional columns that exist in...
  6. W

    Share My Creation wmCRUD - a generic class for CRUD operations on an SQL(ite) database (with source code) [B4J] [SQL] [SQLite] [CRUD] [Class]

    Abstract Another one in my 'I don't like doing repetitive stuff' repertoire. The rationale for this one is to avoid having to code the 'boring stuff', i.e. CRUD for data tables (usually slightly or completely different than others from other programs) in a new program, again and again. The idea...
  7. Guenter Becker

    Android Question Call a Parent Sub from a Class

    Dear Developers, I have a b4xpage/Activity and I declared an instance of a class "X" as Private X1 as X in the Sub Globals. In may Class "X" I like to transfer a value to the b4xpage/activity like I do in a Custom View Class. callSub2(mCallback, mEventName & "_ABC", result) I tried to use...
  8. Guenter Becker

    B4A Library List of TD_ CustomViews, Modules, Classes and Services

    All Listed CustomView, Modules, Classes and Services are part of our B4A Development at prestent and in future. All not Listed CustomView, Moduls, Classes and Services are outdated and not longer supported! B4A CustomViews, Modules, Classes...
  9. jkhazraji

    B4J Question Exposing a Java code variable in a class to the main module

    Hi B4X community, I have the following as a part of a Java code in a class: #if Java { // //.... String msg ="blabla"; ba.raiseEvent(null,"get_msg",msg); //..... // } #end if Is the ba.raiseEvent written correctly? How would I expose 'msg' variable to the...
  10. carlos7000

    Spanish Obtener información de Sensor laser.

    ¡Hola a todos! Recientemente adquirí un equipo que cuenta con un sensor láser incorporado para medir distancias. Sin embargo, la aplicación preinstalada en el dispositivo es bastante básica y no aprovecha todo el potencial del sensor. Estoy muy interesado en desarrollar una aplicación...
  11. R

    B4A Class B4XEval class (modified by RB Smissaert)

    Posted this in the questions group, slightly altered this class (posted originally by Erel) so that it will handle any (?) faulty input string and not produce an unhandled error. Requested to put this in this group and attached a simple B4XPages project demonstrating this. Posted by zipping the...
  12. W

    B4J Library [Class] [B4J] [SQLite] wmSQLiteSelectBuilder - a more or less graphical builder for SQLite SELECT statements

    As I don't use SQLite (or any other SQL) all the time and am no database expert, it's always a bit of a challenge to get the SELECT syntax right, specifically when relationships between tables (JOINs) come into play. There's that, and the fact that it was fun to develop (and I wanted to have the...
  13. K

    Android Question Dex merge error

    when add some libraries i got this error b4a and sdk is update Dex merge Error Error in e:\b4a_sdk\tools\..\extras\b4a_local\unpacked-play-services-appset-16.0.2-63785445471000\jars\classes.zip:classes.dex: Type com.google.android.gms.appset.AppSet is defined multiple times...
  14. S

    Share My Creation Class Template Builder

    Hi, A simple tool to create XML+JAR files for Class Template https://www.b4x.com/android/forum/threads/custom-class-templates-in-b4x.90552/post-572445 Thanks to @Star-Dust for zip class : https://www.b4x.com/android/forum/threads/sd-ziplibrary.90733/ Enter Author and Version Add class files...
  15. makis_best

    Android Question [Solved] CallBack object from inside class [B4XPages]

    Hello. I have a class with the name Box2. Inside the class I declare one B4XTable I can't understand what I need to have on callback object so I can make b4xtable to work. I show you some of my code to help you understand my problem. Sub Class_Globals Private B4XTable2 As B4XTable...
  16. M

    Android Question [B4X_Pages] Runtime Permission inside Classes (Wait For)

    Hi everyone, I'm moving part of my code done in a B4XPage into a Standard Class. In this code i've a Runtime Permission CheckAndRequest that requires the "Wait For" block Private Sub BeginBLEscan rp_ble.CheckAndRequest(rp_ble.PERMISSION_ACCESS_FINE_LOCATION) Wait For...
  17. S

    Share My Creation Class Generator

    Hello, This a small class generator. The class use this concept, thanks to @Emme Developer. Enter the Class Name Enter the fields list (Name, Type and Default Value). Click on the 'Copy' button In your Project, add a Standard Class module with the same class name Select All Paste the...
  18. MegatenFreak

    B4J Question Putting parts of a form-rich app into an external library

    Hi. I'm looking for ways to clean my huge code and boost IDE performance, so I'm putting everything I can into a compiled external library. I already know I can't do this for modules that view their own forms, as designer forms can't be part of compiled libraries, but my question is this: Can a...
  19. A

    Android Question Convert a Class to a Library

    Hi all, I wrote a class and want to convert it to a library and use methods and processes that exist in. is there any way? i saw the tutorial of compiling project as a library an did it. but when i want to declare a variable of it , the IDE doesnt show anything.
  20. W

    B4A Class wmKODI - control KODI (formerly XBMC) from B4X [B4X][Class]

    Posted in the B4J forum at https://www.b4x.com/android/forum/threads/wmkodi-control-kodi-formerly-xbmc-from-b4x-b4x-class.135867/
Top