How do I make an app on appdesigner that when a button is pressed and the current time is later than an indicated time

1 view (last 30 days)
i need to make an app on appdesigner that when a button is pressed and the current time is later than an indicated time. e.g. i press button (timenow:8:00am) and (indicatedtime:7:00am) and since 8:00>7:00 it will display "you are late"

Answers (1)

Kevin Holly
Kevin Holly on 23 Feb 2022
You could create a pushbutton with the following callback:
% Button pushed function: Button
function ButtonPushed(app, event)
timenow = datetime('now');
indicatedtime = datetime('23-Feb-2022 08:00:00');
if timenow>indicatedtime
disp("You are late") % this will be displayed in command window.
app.Label.Text = "You are late"; % You could create a label component on your UI and change text as such
end
end

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!