Bug? SwiftButton has not font and TextSize properties alike Button As B4XView - Theera    Aug 20, 2025 I have tried to compare between SwiftButton and Button what something be different.... B4A Library [B4X] B4XThreeState - B4XView - LucaMs    Jan 20, 2024   (15 reactions) I needed something similar to StateListDrawable B4A but cross-platform (B4X). Since I was in a hurry, I settled for developing it just for the images. Obviously you can replace the 3 images (for the 3 states: ENABLED, DISABLED, PRESSED) via properties. Events: Click and LongClick. 149824 I don't own Apple stuff (iOS, Mac, ...), so I can't guarantee that it will also work with B4i (but being a B4XLib library, you have the source code and can fix it if necessary). 149880... B4J Question [B4X] Zoom Form, Pane, B4XView... - Magma    Nov 17, 2021 Hi there.. is it possible with an "easy way" to zoom whole form/pane (for example: form with controls) at specific point... for example when clicking (or double clicking) with mouse at a point has no controls... or when making the zoom gesture (if is a touch monitor).. I think it is better to zoom pane or b4xview... but is there an easy solution ? My problem is when using some apps created sometimes dialogs are small for tablet-windows devices... so need to recreate them... Many... B4A Question View and B4XView - Sergey_New    Oct 25, 2020 The panel contains several elements. To change their properties I do: For i = 0 To pn.NumberOfViews - 1 Dim v As View=pn.GetView(i) If pn.GetView(i) Is EditText Then Dim et As EditText=v et.TextSize=Starter.TextSize Else If pn.GetView(i) Is Spinner Then Dim sp As Spinner=v sp.TextSize=Starter.TextSize End Next I decided to replace Spinner with B4XComboBox How can I add B4XComboBox to this function?... Italian B4XPages, B4XView. Cosa mi offrono rispetto alle Activity? - Sabotto    Sep 23, 2020 Buonasera a tutti. Dopo neanche un mesetto di apprendimento e prove con B4A (e due app create, a me utilissime, che mi evitano di accendere il Pc ogni volta che devo usarle, le avevo infatti create in VB.NET), sto cercando di approfondire questo bellissimo mondo. Le B4XPages e relative B4XView. Vorrei capire una cosa: il vantaggio principale maggiore di usare le 'pages' al posto delle 'Activity' è il "cross platform"?, uello che un'app creata per Android, puo... B4A Question B4XView - Error compiling a code module to library - LucaMs    May 8, 2018 I have a code module (b4a) in which all the routines require variables of type B4XView...: Button cannot be converted to B4XViewWrapper parent.mostCurrent._xviewpos._viewsetrelright(mostCurrent.activityBA,(anywheresoftware.b4a.objects.B4XViewWrapper)(parent.mostCurrent._btntomove.getObject()),(anywheresoftware.b4a.objects.B4XViewWrapper)(parent.mostCurrent._button2.getObject()),(int) (0)); P.S. I watched xCustomListView. In it, Add requires a B4XView as parameter (name pnl) and... Bug? Small error in the context help of ProgressBar as B4xView. - stevel05    Jun 5, 2025   (1 reaction) 164590 ProgressView (in Red) should read ProgressBar.... B4A Question [Solved] B4XView.SelectionStart - Roger Daley    Dec 14, 2020 Hi All, In B4A this works: 'Display1 created in Designer' Private Display1 as EditText Display1.SelectionStart = Display1.Text.Length When Display1 is declared as B4XView it flags "Unknown member: selectionstart" 'Display1 created in Designer' Private Display1 as B4XView Display1.SelectionStart = Display1.Text.Length It seems too simple to go wrong, but.......... Help would be much appreciated. Regards Roger... Wish B4XView - SetBitmap - LucaMs    Sep 5, 2024   (1 reaction) SetBitmap property of B4XView should require a B4XBmp, for consistency and convenience.
Currenty:
B4A
156619
B4J
156620
B4I
... B4A Question [B4X] Check view IsNot B4XView or any other type - Alexander Stolte    Dec 21, 2024 So I can check whether something is a certain type: If View Is B4XView Then but i have often had situations where i have to check whether it is not a certain type, e.g: If xtf_TextBox.IsInitialized = False Or xtf_TextBox.Parent Is Not B4XView Or xtf_TextBox.Parent.IsInitialized = False Then Return I can also write a function that looks like this, but that is not a nice solution at all: Private Sub IsObjectB4XView(View As Object) As Boolean Return View Is B4XView End Sub Does the ide... Page: 1   2   3   4   5   6   7   |