Wish CreateMap and CreateList but shorter - aeric    Jan 23, 2025   (3 reactions) I use Maps and List a lot.
I love CreateMap() function.
However, sometimes I think it has a bit... of CreateMap, which behave the same but choose a word with less characters?
Suggestions:
Map()
Hash()
Pair... B4A Question size limit on CreateMap? (Caused by: java.lang.VerifyError: Verifier rejected class xxx: java.lang.String) - Alessandro71    Sep 11, 2025 is there a size limit on CreateMap?
as soon as I cross element number 354, the app crashes with
Caused by: java.lang.VerifyError: Verifier rejected class xxx: java.lang.String
splitting the Map in... B4J Question [B4X] CreateMap and Null values - LucaMs    Feb 1, 2022 I found that CreateMap accepts Null values as well, like so:
MyMap = CreateMap("Value"...
Return CreateMap("Value":Value)
End Sub
I would get an error: java.lang... B4A Question Map Collection - The most useful collection... - Erel    Nov 12, 2015   (23 reactions)   tags: Maps, MapColl .Put(2, "Monday") Log(days.Get(1)) You can also use CreateMap as a shorthand: Dim days As Map = CreateMap(1: "Sunday", 2: "Monday") Log(days.Get(1)) Iterating over the items is done with the For Each iterator: Dim days As Map = CreateMap(1: "Sunday", 2...) are important. For example: Dim map1 As Map = CreateMap("A": 1, 2: "B") Log(map1.Get... B4J Library [B4X] [SQL] MiniORMUtils - aeric    May 29, 2026   (9 reactions) (with column definitions) DB.Table = "products" DB.Columns.Add(CreateMap("N": "category_id", "T": DB.INTEGER)) DB.Columns.Add(CreateMap("N": "product_code", "S": 12)) DB.Columns.Add(CreateMap("N": "product_name")) DB.Columns.Add(CreateMap("N": "product_price", "T": DB.DECIMAL, "S": "10,2", "D": 0.0)) DB.Columns.Add(CreateMap("N"... B4i Tutorial Notifications with actions - Erel    Sep 18, 2024   (9 reactions) = 0 Dim iosalert As Map = CreateMap("title": Title, "body": Body) message.Put("notification", iosalert) message.Put("apns", CreateMap("headers": _ CreateMap("apns-priority": "10"), _ "payload": CreateMap("aps": CreateMap("sound":"default"... is set here Else 'B4A message.Put("android", CreateMap("priority... Share My Creation [Tool] MiniORM Models Code Generator - Convert Type to Code for generating database table - aeric    Apr 19, 2026   (6 reactions) = "tbl_users" DB.Columns.Add(CreateMap("Name": "user_name", "Null": False)) DB.Columns.Add(CreateMap("Name": "user_email", "Null": False)) DB.Columns.Add(CreateMap("Name": "user_mobile", "Null": False)) DB.Columns.Add(CreateMap("Name": "password_hash", "Null": False)) DB.Columns.Add(CreateMap("Name": "password_salt", "Null": False... B4A Library [B4X] CLVSwipe - xCustomListView Swipe actions and pull to refresh - Erel    Mar 2, 2025   (48 reactions)   tags: CLVSwipe, CLVSwipe - CustomListView, xuiCLV, xclv swipe pull, clv, myapp .ActionColors = CreateMap("Delete": xui.Color_Red, "Do Something Else": xui... B4A Library FirebaseAnalytics - Erel    Aug 14, 2025   (11 reactions)   tags: FirebaseAnalytics This library requires B4A v6+. Adding support for Firebase analytics: 1. Follow the Firebase integration tutorial: https://www.b4x.com/android/forum/threads/integrating-firebase-services.67692/#content 2. In Starter service: Sub Process_Globals Public analytics As FirebaseAnalytics End Sub Sub Service_Create analytics.Initialize End Sub That's it. You can manually send events with: Starter.analytics.SendEvent("login", CreateMap ("additional parameter"... B4A Question CLV , CreateMap - How i can get the specific Values - somed3v3loper (first post)    Jun 12, 2019   (1 reaction) I am not sure I understand your problem but this lists all keys and values
For Each k In mapaEscalonado.Keys
Log(k& " = "&mapaEscalonado.Get(k))
Next... Page: 1   2   3   4   5   6   7   |