Borrar filtros
Borrar filtros

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

2 visualizaciones (últimos 30 días)
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"

Respuestas (1)

Kevin Holly
Kevin Holly el 23 de Feb. de 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

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by