B4J Question How to disable the maximize button on the Main form? - ranul    Oct 19, 2017 Hi Guys,
How can I disable only the maximize button on the main form?
I want to still have the minimize button and I want the form to be visible also on the taskbar.
Thanks.... B4J Question Disable Window Maximize - mangojack (first post)    Apr 23, 2019   (3 reactions) https://www.b4x.com/android/forum/threads/how-to-disable-the-maximize-button-on-the-main-form.85193/
ps: see the results of a Search for "b4j Disable maximize button"
https://www.b4x.com/android/forum/pages/results/?query=b4j+Disable+maximize+button... B4A Library [B4X] [XUI] AS TextFieldAdvanced - Title, Information, Counter, Password, Button, Prefix, Suffix, Icons, Multiline - Alexander Stolte    Aug 25, 2025   (63 reactions) text. Additionally you can make the TextField a button, so that you can open menus, but still keep... Initializes the fields to their default value. AS_TextFieldAdvanced Events: ButtonClick ClearButtonClick EnterPressed FocusChanged (HasFocus As Boolean) LeadingIconClick PasswordRevealChanged (Revealed... Call Refresh if you change something getButtonTextLabel As B4XView getClearAndRevealButtonColor As Int Call Refresh if you change something getClearButtonLabel As B4XView getCounter... B4J Question Windows - Erel (first post)    Nov 18, 2015 You can disable the maximize button by setting Form.Resizable to false. However you cannot hide these buttons without using the UTILITY style.... B4J Question How to programmatically disable and re-enable form 'Restore' button? - m4.s (first post)    Mar 10, 2024 Thank you @teddybear for your quick response.
That code does indeed prevent all form resizing, but does not disable the restore button when a form is maximized. Apologies for not being clearer re: what I needed.
But after further research and testing, I found that I could simply change the main... B4J Code Snippet Form Events: form_minimized, form_maximized - jkhazraji    Jan 8, 2024   (6 reactions) ).RunMethod("ifStageIsMaximized",Array(joStage))
End Sub
Private Sub form_minimized... form_maximized(isMaximized As Boolean)
Log($"Form maximized: ${isMaximized}"$)
End Sub... B4J Question MainForm.SetFormStyle("UTILITY") crashes my File open dialog - Scantech    Feb 3, 2026 MainForm.SetFormStyle("UTILITY") I wanted to find a way to disable those minimize, maximize and close button. I prefer UTILITY over Undecorative. Private Sub btnLoadFile_Click firmware = Array As Byte() ' Resets to an empty array (length 0) jframe.InitializeNewInstance("javax.swing.JFrame",Array("")) openFileDialog End Sub Private Sub openFileDialog Dim fileChooser As JavaObject fileChooser.InitializeNewInstance("javax.swing... B4A Library [B4X] [XUI] AS FloatingActionButton [Payware] - Alexander Stolte    Dec 16, 2024   (29 reactions) HeyHo, this is a cross platform Floating Action Button. This library is not free, because, it cost... understanding. :) 104554104555104556104653104654107552 Sub ASFloatingActionButton1_ButtonClicked(open As Boolean) If open = True Then ASFloatingActionButton1.Base.GetView(1).SetRotationAnimated(250,135) Else ASFloatingActionButton1.Base.GetView(1).SetRotationAnimated(250,0.... ASFloatingActionButton1.Orientation = ASFloatingActionButton1.Orientation_BottomRight The menu opens from bottom... B4A Library [B4X] XUI Views - Cross platform views and dialogs - Erel    Nov 26, 2025   (85 reactions)   tags: B4X XUI Views Dialogs, xui, XUI Views - Fixes a bug in B4i where disabled B4XDialog buttons can be clicked. V2.23 - RoundSlider - New... that it only exists in B4J and B4A. V1.84 - SwiftButton - New Enabled property. Set to False to disable the button. It will change the button color to the "disabled color", make it flat and... is a zip file. Views: - B4XRadioButton - Cross platform radio button. - B4XComboBox - Cross platform... animated loading indicators. - RoundSlider - A round slider. - SwiftButton - 3d button - AnimatedCounter... B4A Code Snippet [B4X] B4XDialog with adjustable button widths - Erel    Nov 4, 2025   (22 reactions) 168092 Cross platform code to adjust the button widths based on their text. 'Canvas1 is a global B4XCanvas used for measuring the text (see attached example). Private Sub ArrangeButtons(Dialog1 As B4XDialog, Canvas1 As B4XCanvas) Dim offset As Int = Dialog1.Base.Width - 2dip Dim gap... Next Next End Sub Usage: Private Sub Button1_Click Dim rs As Object = Dialog.Show("Testing", "abcde abc", "fg gf", "hk") ArrangeButtons(Dialog... Page: 1   2   3   4   5   6   7   |