Hello LucaMS,
I am using your library lmB4XComboBox, latest version Version: 3.00 02/21/2026 and when compiling (B4A) it gave me an error: mCmbBox.Items.Clear
I saw what the problem was and fixed it for me, and please check it and see if it is well solved, it works in the section
#If B4A
mCmbBox.Clear
#Else If B4J
mCmbBox.Items.Clear
If it is good, make a new version, the library is too good
Regards
Guco
Please post this in a thread (start a new one yourself).
I'm looking at the code and I see:
#If B4J Or B4A
If mCmbBox.IsInitialized Then
mCmbBox.Items.Clear
End If
#Else If B4i
If mItems.IsInitialized = False Then mItems.Initialize
mItems.Clear
mSelectedIndex = -1
If mBtn.IsInitialized Then mBtn.Text = ""
#End If
Specify the error message there.