B4J Library jReflection library - agraham    Dec 22, 2013   (13 reactions) I already converted this library but I wasn't going to bother posting it as we have the JavaObje... B4J Question about jReflection - Gianni M    Mar 16, 2025 '
Dim TextField1 as TextField
Dim TextField2 as TextField
Dim TableView1 As TableView
'
ref ... B4J Question jReflection and SetEventHandler - canalrun    Jan 13, 2015 /#post-305781
I'm using jReflection and AddEventHandler. The problem arises when I have other....
There is another method "SetEventHandler" which is not exposed in jReflection. This method... B4J Question [jReflection] Method not found - MathiasM (first post)    Jun 17, 2021
You are calling _getname with no parameters whereas your Java fragment shows that it takes one para... German KeyPressed (jReflection) - ich komme einfach nicht zurecht - umsid (first post)    Nov 2, 2017 Tja, ich hab' jetzt so eine kleine Zwischenlösung gefunden - ist meiner Meinung nach alles andere als optimal, weil ich einen Zähler laufen habe, den ich mit jedem "Enter" umsetze - nimm... Share My Creation [B4J] Hex View CustomView - stevel05    Mar 24, 2025   (22 reactions) . The library is a b4xlib, but is only available for B4j. DependsOn : jXUI, JavaObject, jReflection... B4J Question webapp : jetty how to use setMaxTextMessageSize - billzhan    Oct 14, 2014 Hi, Jetty has limited text message size, and it can be set by setMaxTextMessageSize .Link : http://download.eclipse.org/jetty/stable-9/apidocs/org/eclipse/jetty/websocket/api/WebSocketPolicy.html#setMaxTextMessageSize(int) How can I set this with JavaObject or jReflection lib ? Thanks, bz... B4J Code Snippet B4XDialog - Add keyboard handling - Erel    Apr 7, 2019   (8 reactions) This code allows the user to close the dialog with 'escape' or one of the following keys: Y, N or C. It depends on agraham's jReflection library. Sub AddKeyPressedListener Dim r As Reflector r.Target = MainForm.RootPane r.AddEventHandler("keypressed", "javafx.scene.input.KeyEvent.KEY_PRESSED") End Sub Sub KeyPressed_Event (e As Event) If Dialog.Visible Then Dim jo As JavaObject = e Dim keycode As String = jo.RunMethod("getCode... B4J Library [custom view] SearchView - Erel    Jul 24, 2017   (16 reactions)   tags: B4X Searchview A custom view similar to B4A and B4i SearchView: https://www.b4x.com/basic4android/images/searchview.gif Depends on jReflection and JavaObject (to override the default keyboard behavior). You need to add the SearchView layout file, SearchView class and TextFlow class to your project. Usage example: Sub Process_Globals Private fx As JFX Private MainForm As Form Private SearchView1 As SearchView End Sub Sub AppStart (Form1 As Form, Args() As String) MainForm = Form1 MainForm... B4J Code Snippet simple ssh terminal - Knoppi    Jun 19, 2025   (7 reactions) Here is an example of a simple SSH terminal. It is based on https://www.b4x.com/android/forum/threads/sshj-ssh-scp-sftp-for-java.88615/ Small history function with cursor up/down Save connections Note: Password is saved in plain text #Region AdditionalJar copy to ..\Objects\libs '#MergeLibraries: false ' bcprov-jdk15on-154.jar ' eddsa-0.2.0.jar ' JavaObject.jar ' jCore.jar ' jFX.jar ' jReflection.jar ' Json.jar ' jXUI.jar ' slf4j-api-1.7.25.jar '... Page: 1   2   3   4   5   6   7   |