B4A Code Snippet [B4X] Light theme B4XDateTemplate - Erel    Sep 13, 2021   (15 reactions) of customizing B4XDialog and B4XDateTemplate.
Sub SetLightTheme
Dialog.TitleBarColor = 0xFFFF7505...Many more options: https://www.b4x.com/android/forum/threads/b4x-share-your-b4xdialog-templates... B4A Class Extended B4XDateTemplate UPDATE 3.0 - Guenter Becker    Apr 1, 2025   (12 reactions) Name: TD_B4XDateTemplate
Version: 3.0
Code: B4X
Licence: free
163114 163115 163116
This Template is based on the Template lmB4XDateTemplate from (C) lucasMS (Forum Page). I applied some more... B4J Question show button "Today" on B4XDateTemplate? - Gianni M    Nov 14, 2019 How to set / show button "Today" with B4XDateTemplete XUI ?
a bit code...
Sub SelectDate
Wait For (Dialog.ShowTemplate(DateTemplate, "", "", "Cancel"...: $Date{DateTemplate.Date}"$)
End If
End Sub
... B4A Question B4XDateTemplate - Change of Month/WeekDay - saza    Jul 19, 2020 Hi there,
for my program I am using the B4XDateTemplate in B4A.
In this template the month...:
Private DateTemplate As B4XDateTemplate
DateTemplate.lblMonth.Text.Replace("July"... B4A Question B4XDialog and B4XDateTemplate, how to change the size? - vecino    Mar 25, 2024 Hi, how can I change the size, I can't find how to do it.
It is too small.
Thank you very much.
152124... B4A Question XUIViews: B4XDialog + B4XDateTemplate enable only a few days interval - AscySoft    Jun 1, 2021 Hi, I reecently switched to B4XDateTemplate in XUIViews as the older datepicker I used no longer... be picked.
I realized that a min/max year properties are available in B4XDateTemplate, is there a similar... B4A Library [B4X] XUI Views - Cross platform views and dialogs - Erel    Mar 19, 2025   (85 reactions)   tags: B4X XUI Views Dialogs, xui, XUI Views . It is quite simple.
Available templates:
- B4XDateTemplate - Based on AnotherDatePicker... - B4XDateTemplate.MonthsNames is public. You can use it to customize the names.
V2.59 - B4XBreadCrumb.Base_Resize... B4A Code Snippet [B4X] XUI Views B4XDateTemplate amendment to autochange the year - Chris2    Jan 18, 2023   (2 reactions) Just a small change to the B4XDateTemplate class that is in XUI Views This just makes the year change +/-1 if the month changes from Jan to Dec, or vice versa. 'Original Private Sub btnMonth_Click Dim btn As B4XView = Sender Dim m As Int = 12 + month - 1 + btn.Tag month = (m Mod 12) + 1 DrawDays End Sub 'New Private Sub btnMonth_Click Dim btn As B4XView = Sender Dim m As Int = 12 + month - 1 + btn.Tag Dim oldMonth as int = month 'line added month... B4A Question B4XDateTemplate: How to disable all days earlier than current date - toby    Mar 28, 2022 I want to disable all days earlier than today so that users can only select current day or some day in the future.
For example, curr... B4A Question B4XPreferencesDialog: B4XDateTemplate restrict (limit) months - josejad    May 18, 2021 Hi all:
I'm using B4XPreferencesDialog to show a form and add some data.
I need the user can choose just the current and the previous month (i.e. today 2021/05/18 it should show just March and April)
The way I see the easiest it using the Pref_IsValid sub to tell the user the date is not valid.
But, is there any other way?
I see a B4XPref.DateTemplate.MinYear and MaxYear, but there's... Page: 1   2   3   4   5   6   7   |