B4A Tutorial [B4X] Network + AsyncStreams + B4XSerializator - Erel    Jun 30, 2020   (27 reactions)   tags: transfer, B4XSerializator, Erel, Network -network-asyncstreams-b4xserializator.119011/#content
New video tutorial:
256762156
https://www... the starter service.
2. The Activity is only responsible for the UI.
3. Using B4XSerializator... B4A Tutorial [B4X] [B4XPages] Network + AsyncStreams + B4XSerializator - Erel    Jun 30, 2020   (29 reactions) https://www.b4x.com/basic4android/images/java_USPawWZPiX.png 95652 https://www.b4x.com/basic4android/images/B4i_nUuTQqGuEH.png Cross platform version, based on B4XPages, of the network example: https://www.b4x.com/android/forum/threads/b4x-network-asyncstreams-b4xserializator.72149/#content It is so much simpler to use B4XPages that it feels like cheating :) All of the code is shared. The layouts were copy-pasted.... B4A Tutorial Large & Searchable List with SearchView + B4XSerializator - Erel    Aug 12, 2021   (11 reactions)   tags: search large database Better to use: https://www.b4x.com/android/forum/threads/b4x-sqlsearchview-sqlite-based-search-view.133379/ Two very important methods were added to B4XSerializator in RandomAccessFile v2.20... is ready (the main thread is busy building the index). Now with B4XSerializator and a small B4J program we... to be killed by the OS. Notes - This solution is also compatible with B4i as B4XSerializator... will see more and more usages for B4XSerializator.... B4J Library [python] B4XSerializator implementation in Python - Erel    Jan 15, 2025   (19 reactions) module is an implementation of B4XSerializator. Usage example: from b4x_serializator import B4XSerializator ser = B4XSerializator() b = ser.convert_object_to_bytes() It also supports converting... B4XSerializator constructor: from dataclasses import dataclass, field from b4x_serializator import B4XSerializator @dataclass class Testing: Aa: int Bb: str Cc: list if __name__ == '__main__': ser = B4XSerializator(types=) t = Testing(Aa=11, Bb="from python... B4A Library [B4X] .Net Framework implementation of B4XSerializator - Erel    Mar 20, 2020   (25 reactions) B4XSerializator is included in the internal RandomAccessFile library. The attached dll is for .Net Framework applications.
B4XSerializator is a great tool that makes it simple to share data between... B4J Library B4XSerializator for Xojo - madru    Feb 20, 2026 B4XSerializator to use with the Xojo JRDC2 client https://www.b4x.com/android/forum/threads/jrdc2-client-for-xojo.170374/... B4J Tutorial Network + AsyncStreams + B4XSerializator - Erel    May 15, 2017   (7 reactions)   tags: B4XSerializator, Network This is the B4J version of this B4A example: Network + AsyncStreams + B4XSerializator
Note that B4XSerializator is cross platform, so it should be simple to use similar code to communicate... B4R Question B4XSerializator Home Assistant Issues - rwblinn    Feb 25, 2025 Hi,
trying to implement the Python B4XSerializator (b4x_serializer.py) in Home Assistant....py
# Get the global B4X serializer instance
serializer = B4XSerializator(types=)
if serializer... B4J Code Snippet Python B4XSerializator - jtare    Oct 19, 2024   (11 reactions) . But since it is possible, why not, at least for testing ideas. Short example: from B4XSerializator import B4XSerializator serializer = B4XSerializator() my_dict = {...} bytes_data = serializer... import Flask, Response from B4XSerializator import B4XSerializator app = Flask(__name__) @app.route('/test', methods=) def test_b4x_serializator(): serializer = B4XSerializator... Dim ser As B4XSerializator Dim respMap As Map = ser.ConvertBytesToObject(Bit... B4A Question Help with B4XSerializator - Harris    Nov 29, 2022 )
Dim myser As B4XSerializator
myser.ConvertObjectToBytes( v.Get(key) ) ' ????
'... Page: 1   2   3   4   5   |