b4xpages

  1. Marcos Alves

    iOS Question Progress Dialog B4XPages

    Hello all, is there any resource similar to B4A ProgressDialog when using B4XPages? Thanks!
  2. Guenter Becker

    Android Question SQLite Crypto

    Hello to you, I'm working with SQlite Version 3 and as known this kind of database has no encryption or password protection. But there is an enhanced clone of the native database as a GitHub Open Source Project is's called SQLiteCipher. The Documentation says that it is working like a standard...
  3. Lucas Siqueira

    Share My Creation [B4XPAGES] DESIGNER LOGIN EXAMPLE - CODE B4X - UX DESIGNER

    Hi, my name is Lucas Siqueira 🇧🇷 ! I am very happy 😁 to share with you the designer at B4XPAGES. I hope you like the layout and my contributions! 🤓💻 I'm in love 🥰😍 with B4X! Made with ❤ in B4X
  4. Marcos Alves

    iOS Question B4X Pages - Page Title

    Hello All, is there any way to remove the page title in IOS using B4XPages? Thanks!
  5. Marcos Alves

    Android Question B4XPages - ispaused

    Hello, in Android it's possible to know if an Activity is visible using ispaused("ActivityName"). What´s the similar command in B4XPages? I really didn't find in the forum... Sorry the simple question but I really didn't find. Thanks!
  6. Marcos Alves

    Android Question B4XPages and #IF JAVA

    Hello, I have a B4XPages code that is using specific java routines only for B4J. If compiled for B4A the routine raises an error that's why it's needed to restrict the compilation only to B4J. But compiler in B4A is ignoring the directive as follows: #if B4J #if Java import...
  7. Marcos Alves

    Android Question B4XPages - Error Declaring Pages

    Hello All, I have an app in B4XPages with three pages: - B4XMainPage , pedidos and orderDetail The app switches from B4XMainPage normally to pedidos ... this is the declaration code in B4XMainPage: Private Sub B4XPage_Created (Root1 As B4XView) Root = Root1...
  8. Marcos Alves

    Android Question B4XPages Code

    Hello all, it's known that the best place to put startup code to check parameters and data for app initialization (like creation tables on new databases, environment variables and so on) in Android/B4A is in the start service, as well as the right choice to put global variables is in the...
  9. josejad

    Spanish [B4XPages] jRDC2 + MySQL CRUD + Login

    Hola a todos: Por fin me he puesto a probar un poco con B4XPages, y he empezado a adaptar el ejemplo B4XPages + B4XDrawer Creo que he visto algunos ejemplos con php + mysql para hacer login, etc... pero he visto pocos con jRDC2. Los datos de la base de datos y la interfaz gráfica son bastante...
  10. josejad

    Android Example [B4XPages] jRDC2 + MySql CRUD + Login

    Hi all: I'm starting (at last) to work with B4XPages, so I've started to adapt the B4XPages + B4XDrawer example. I think I’ve seen more examples with php + mysql, but no projects with Jrdc2. Maybe the dummy data and the UI are too basic, but you can get some ideas. What do we need? - A...
  11. LucaMs

    Wish [THERE IS ALREADY] B4XPages.GetManager.LogEvents - Log PageID too

    B4XPages.GetManager.LogEvents - Log PageID too
  12. W

    Android Tutorial Hint: solving compiler error "Unknown member: initializenewinstance"

    I ran into this one today and fortunately my penny dropped rather quickly, though I didn't find anything on the forum about this error; hence this post as it might be useful for others. I was changing a standard app into a B4Xpages one, and this error showed up: Unknown member...
  13. G

    Android Question [B4XPages] Switching Phone SetScreenOrientation in B4XPages

    In a project based on B4XPages I have one page that should be presented in Landscape mode. I though I should use the SetScreenOrientation from Phone library. What I have noticed is that when using the SetScreenOrientation to change from one orientation to another the application will be paused...
  14. LucaMs

    Android Question B4XPages - shared project modules

    I posted a simple B4XPages example for an our friend. From within the environment I also created a second B4XPage, by ticking the CheckBox: "Add to parent folder". All is ok, the class is creted and saved at the same directory level as the B4XMainPage. In the project I also imported (checked) a...
  15. mcorbeel

    iOS Question Select photo from library using B4xPages

    I am using B4xPages and am struggeling with how to select a photo from the phone's album. In a previous non-B4xPages project that I made I used: Camera1.Initialize("Camera1", oPage) Camera1.SelectFromPhotoLibrary(Sender, Camera1.TYPE_ALL) But "oPage" is a Page object in B4i and I cannot use that...
  16. LucaMs

    B4A Library [B4X] RecentB4XPages

    I made this "stuff": a menu with thumbnails of recent B4XPages (which can be opened directly from the menu, of course). It is a class: are you interested in having a library?
  17. LucaMs

    Wish [B4XPages] do not convert page ID to lower case.

    When you add a B4XPage to "the project": B4XPages.AddPage("PageOne", PageOne) the page ID is automatically converted to lower case and saved. I don't like this (and I had problems as I had stored these IDs in my map - for... "personal" reasons 😁). [Before anyone replies that I can use...
  18. G

    Android Question [Solved][B4XTable] Crash in ResultSet if click on "Recents" phone button

    I use one sub with code attached below that suppose to fill a list with a B4XTable rows. It works great, but if accidentally I have clicked on "Recents" button on the phone while the code is in the "Do While rs.NextRow " loop the app will crash with the error listed below. Not sure what would...
  19. M

    Android Question Transparent StatusBar Using B4XPages

    I tried using this code for Transparent StatusBar that I learned from This Post On B4XPages for my new project : Dim ph As Phone If ph.SdkVersion >= 4.4 Then Dim jo As JavaObject Dim window As JavaObject = jo.InitializeContext.RunMethod("getWindow", Null)...
  20. rleiman

    Android Question [SOLVED] - Starting B4XPages from a service module

    Greetings, We have a B4XPages app that includes a service module that starts with #StartAtBoot: true. Because B4XPages doesn't start upon a phone reboot, we would like to start B4XPages from that module when the user reboots their phone. Maybe something like this? #Region Service Attributes...
Top