B4A Library ContinuableCircleCountDownView - Johan Schoeman    Feb 05, 2016   (18 reactions) It wraps this Github project. It is a countdown view. The countdown timer runs in the library. The maximum time (for countdown) that it can be set to is 3 600 000 (i.e 60 minutes). It raises an event in B4A (approximately every 1000ms) and also an event when the countdown has been completed.
Postin B4A Question Countdown timer is "skipping" to show any seconds - JohnC (first post)    Jul 05, 2024 To use your code (instead of using a timer), ChatGPT says...
It seems the countdown function is not properly updating the btnTIMER.Text every second due to the timing of the Sleep function and how the loop is structured. To ensure the countdown updates every second, we can make a few adjustments:
B4i Library AS Alarm - Alarm clock or keep app active in the background - Alexander Stolte    Jan 24, 2025   (18 reactions) I needed a way to play a sound at a certain time even though the app is in the background. The problem is that the app is paused as soon as it goes into the background, you can delay this by 30 seconds, but if you take longer, the app is stopped and no more code is executed. Now I have found a way t B4A Question Timer CountDown with problem - William Lancee (first post)    Jun 25, 2023   (1 reaction) If I may add, the above is the right solution but you should decrease the interval to say 1/20 of a second to avoid the display not being updated frequently enough.
(You might reduce it to even 1/100 of a second).
Remember, all the timer does is update the display of a real time interval - theref B4A Question Countdown Timer Question - ProjectGroup19    Dec 12, 2021   (1 reaction) Greetings Community,
Please, how do I do a countdown timer having a start and end time?
The start and end time is in the format "yyyy-mm-dd HH:mm:ss"
I want to have a sub that accepts the start time and end and countdown like this ?
TimerCountDown(start_time, end_time)
Thank you ? Share My Creation Countdown The App - Alexander Stolte    Oct 25, 2019   (4 reactions) 1 Month ago i saw a Trailer from a horror movie on TickTok, the film is calling "countdown" and in the movie theres a app, the app is display a date with a counter, no more.
I made this app on the same day and publish it on the Google Playstore.
The app is only display a date with a counter....
is B4A Library SmartHost - A powerful library to easily create your own unique and flexible views - Gary Milne    Jan 16, 2016   (13 reactions) Countdown.Initialize("Countdown", Me, pnlMain, "", 2) Countdown.SetLayout( (100%x - 10%y)/ 2, 32.5%y, 10%y, 10%y, 10%y, "CC") Countdown.BackgroundGradient("ICON", Array As Int(MyColors.Colours.Reds.Red, MyColors.Colours.OrangeYellows.orange), Countdown.IconHeight * 0.35, "RADIAL") B4A Question Reverse timer - Erel (first post)    Feb 11, 2021   (2 reactions) Untested code:
Sub CountDown (lbl As B4XView, Duration As Int)
lbl.Text = Duration
Dim target As Long = DateTime.Now + Duration * DateTime.TicksPerSecond
Do While DateTime.Now < target
lbl.Text = $"$1.0{(target - DateTime.Now) / DateTime.TicksPerSecond}"$
Sleep(500)
B4A Example Bomb Countdown Example - Douglas Farias    Oct 15, 2018   (13 reactions) Hi all.
I found this example in some old folders on my pc and decided to share here.
it is a simple Bomb Countdown with timer, sound and vibration.
I think the most important here is the countdown example to begginers.
73231
thx B4A Library CircleDisplay - Johan Schoeman (first post)    Aug 23, 2015   (2 reactions) Try it with this new lib files (copy them to your additional library folder). See the line cd1.CountDown = False in the code below that I have added to the original project. It will allow the progress indicator to increase but if you set cd1.CountDown = True the value in the circle will count down.
Page: 1   2   3   4   5   6   7   Powered by ColBERT |