B4J Code Snippet Fix for error: Cannot invoke "java.lang.ref.WeakReference.get()" because "wfe.senderFilter" is null - Erel    Aug 18, 2025   (2 reactions) This error is a bit tricky. It happens when multiple resumable subs are waiting for events with the same name, some with sender filter set and others without. This code reproduces this error...(job As HttpJob) 'with sender filter If job.Success Then Log(job.GetString) End If... sender filter If job.Success Then Log(job.GetString) End If job.Release End Sub... name is based on the sender filter. ... B4J Question Sender not set in WebView_LocationChanged event - Sandman    Jul 5, 2022 the click happened in, as Sender is Null. Is this expected behaviour on B4J or have I misunderstood...: " & Location)
Sleep(0)
Log(Sender)
Sender.As(WebView).LoadHtml("<h1>Beep... Share My Creation Lyn Bulk SMS Sender Source Code - mcqueccu    Jul 15, 2023   (16 reactions) Hello, I want to introduce to you a Lyn Bulk SMS Sender.
Source code Only = $30
Software... Groups
4. Add Sender IDS
5. Add Single Contacts
6. Import contact list from CSV or Excel
7. Group... B4A Question Intent Sender? - Alessandro71    Aug 22, 2025 is there a way, in a Receiver module, to know which app (by package name) has sent the Intent?
Sub ... Wish Protect Sender from Sleep-walking killer - Sandman    Jul 6, 2022   (1 reaction) In events we have Sender to inform us of the origin of the event. A magical companion that never....b4x.com/android/forum/threads/sender-not-set-in-webview_locationchanged-event.141584/
My wish... B4A Tutorial [B4X] Net library (FTP, SMTP, POP) with Wait For - Erel    Feb 14, 2021   (16 reactions)   tags: FTP, SMTP, POP.Net, B4X Net ftp smtp pop wait Starting from v1.70 of Net, jNet and iNet libraries the asynchronous methods return a 'sender filter' object. This object can be passed as the sender filter parameter in a Wait For call. This makes it simpler to manage multiple requests. For example: 'ftp was previously initialized and its event name was set to ftp: 'ftp.Initialize("ftp", "your.server", 21... the sender filter parameter, each event will be intercepted in the correct wait for call. The same... B4A Question [SOLVED] Sender Tag value irrespective of object type? - RandomCoder    Feb 23, 2014 Here is the scenario, I have a scrollview loaded with panels and each panel contains an imageview and a couple of labels. The user is able to trigger an event by pressing on the panel, the imageview or either of the labels and I handle this by using three different subs. Each sub casts Sender to the correct object type so that the tag value can be read. Is it possible to have just one sub and... the answer. I've tried.... Dim item As Object=Sender Log(item.Tag) But this gives an error of unknown... B4A Tutorial Handle the soft keyboard with the IME library - Erel    Jul 6, 2025   (30 reactions)   tags: IME move to the next field). You can use the Sender keyword to get the EditText that raised the event. For example: Sub IME_HandleAction As Boolean Dim e As EditText e = Sender If e.Text... B4J Question [Solved] How... GetItemFromView in CustomListView when sender is SwiftButton? - Dadaista    Dec 20, 2020 = clv4.GetItemFromView(Sender)
Dim pnl As B4XView
pnl = clv4.GetPanel(index)
But now I am...(Sender)
I am searching in the forum but I do not find it
Thx... B4A Question ViewsEx or XUI Views and Sender(solved) - Pedro Hu    Jun 23, 2020 I am using the ViewEX library and the FloatLabeledEditText view. I get this error: simuladorno_isred1validar_textchanged (java line: 1508) java.lang.ClassCastException: android.widget.EditText cannot be cast to com.wrapp.floatlabelededittext.FloatLabeledEditText How can i fix this? I have an error trying to use this code: Sub IsrED1Validar_TextChanged (Old As String, New As String) Dim b As FloatLabeledEditText b = Sender End Sub ... Page: 1   2   3   4   5   6   |