2018

  1. MarkusR

    B4J Question authentication identity check at server?

    I try to use this solution with ssl: [Server] Data Collection Solution - Device, Desktop and Web reports https://www.b4x.com/android/forum/threads/server-data-collection-solution-device-desktop-and-web-reports.37254/#content In the DataCollectionDesktop App i will use Username & Password...
  2. MarkusR

    Android Question Server App with Network & TCP Socket + SSL

    hello, how to make this example b4j network here work with ssl? https://www.b4x.com/android/forum/threads/b4x-network-asyncstreams-b4xserializator.72149/ i set the server into listen after a button click. if me click connect from "client" the server show a connect but the client stay in status...
  3. MarkusR

    Wish Support of File Link

    hello, it would be nice if we can use a link to a designer layout file example 1.bjl as 1.bjl.lnk or possibility of a reference to a layout file same as we have for classes / modules (copy / absolute path / relative path after drag & drop)
  4. MarkusR

    B4J Question how to handle Forms in XUI ?

    hello, i using classes for shared code at b4j and b4a. i like to have the classes independent that they can open/close his form self. currently i open the form outside and give it to the class (same as tutorial), but that did not make me happy because i need call a sub to close the form from...
  5. MarkusR

    B4J Question B4XCipher Question

    hello, is it possible that .Encrypt always generate a new byte array sequence with same given password argument? that would mean if me test a login password the compare with .Decrypt make the stored password temporary readable.
  6. MarkusR

    B4J Question b4x,xui listview?

    hello , what is the equivalent for a multi column listview similar to vb6 in b4x / xui ? As ListView > As B4XView ? i need a b4x list view for b4j & b4a i have a type that represent the columns, except the byte array. Type Entry(Id As Int,Name As String,Url As String,Password() As...
  7. MarkusR

    B4J Question [solved] B4J Server at Home with SSL (Jetty)

    hello, i have a problem to get data if me used a http(s) server. it not response if me test local at same pc or from web. if me use port 80 with without ssl config it works fine local and extern. in firefox i got a message selfsigned cert if not ok but i clicked ok for allow then nothing...
  8. MarkusR

    B4J Question [solved] executable .jar file output???

    hello, i have a old project where i had a Main.jar file that i can run at pc. my new project start the app from within the ide but there is no executable .jar file output??? i used D:\Java\jdk-9.0.4\bin\javac.exe in ide config and me updated to current B4J 6.30
  9. MarkusR

    survey app features

    i like to know what are your app features. and what special native features you must have. example: menu items toolbar,icons data exchange phone app - web server gui data table, view, sort, search data input view,edit,save keyboard input get camera picture record voice,voice input record...
  10. MarkusR

    Wish Optional .Initialize()

    the normal syntax is Dim Obj As MyClass Obj.Initialize() but i think this part can be optional if the developer will reset/create a new object Obj.Initialize() so the default code would be Dim Obj As MyClass and i saw that if me using a library .Initialize() it not necessary how about a...
  11. MarkusR

    Android Question end app

    hello, me saw that if me using Activity.Finish in main Activity and click then at the app icon again the Activity will created again and all variables here are still there with used values before i closed the activity. Sub Process_Globals 'These global variables will be declared once when...
  12. MarkusR

    Android Question [solved] touch events

    i realizing that at newer os the touch action event 2 (hold) is fire continuous and at older devices only at moving the finger. is there a way /trick that i can get continuous hold events always? inside this events i turn something. my workaround would be a timer event combination.
  13. MarkusR

    Android Question [solved] different font width at different devices^^

    i have a sub that make a texture but the text width looks different if me compare a tablet with a phone. why? my goal is to have the same texture at all devices. currently one device looks good and at the other the text is cut. is there a way to use a static font in asset folder or something...
  14. MarkusR

    Android Question SDK_Target 26, what consequences for external libraries?

    hello, if me update to target sdk 26, will the librariers i got here also belong the sdk 26 then?
  15. MarkusR

    Android Question [solved] EncryptText String in Map

    hello, i try to Encrypt a string into a map Password key. i will use WriteMap for saving then i will use ReadMap and Decrypt the key Password back into original but decrypt did not work and run into error^^ code modul start with Test 'Code module 'Subs in this code module will be accessible...
  16. MarkusR

    Bug? invalid description in LibraryCompiler.exe (v1.06) if docu contains & char

    Hello, i wonder why some documentation remarks above a sub / function in a library appear in ide as invalid description. it seems the & char inside of the remark block make trouble there. bad ok
  17. MarkusR

    B4J Question [solved] problem with array data in json

    maybe is someone more firm in json parsing i have this json and need iterate this array(list) "List_Packages" and the data there "Pos_A_mm" and below "X","Y","Z" my attempt Dim J As JSONParser J.Initialize(JSON) Dim Map1 As Map Map1 = J.NextObject Dim...
  18. MarkusR

    Java Question [solved ]b4a bitmap to library android.graphics.Bitmap

    maybe someone had done this. i need to give my library a bitmap from b4a library part: public Texture(android.graphics.Bitmap Bitmap1) { this.Bitmap1 =Bitmap1; } b4a part: Dim bmp As Bitmap = LoadBitmap(File.DirAssets,"wood.png") Cube1.SetTexture(bmp)
  19. MarkusR

    B4A Library ThreeD library (alpha 0.04)

    hello, i publish a 3D library to using at a b4a project (android 5.x+ phone or tablet) currently it knows: Camera Light Cube Vector,Color,Texture Entity,Mesh,Surface,Vertex Line (at Surface) 01.02.2019 21:00 OpenGL.zip is my test project. 03.02.2019 19:00 ThreeD.zip is the lib to place...
  20. MarkusR

    Java Question [solved] android.content.Context in B4A ?

    i need help for my android lib i need init my class in b4a with a android.content.Context because GLSurfaceView have this in the constructor. android library part in android studio import android.content.Context; import android.opengl.GLSurfaceView; import android.view.View...
Top