Effacer les filtres
Effacer les filtres

How to output the multiple line in dialogue box app designer

2 vues (au cours des 30 derniers jours)
MakM
MakM le 13 Avr 2022
Réponse apportée : Voss le 13 Avr 2022
I have multiple lines, I want to print in the dialogue box.
fprintf('=====================================================================\n')
fprintf('User: ', app.sstr, app.pat);
fprintf('event: ', app.gm_id);
fprintf('\n')
I want to print this output on dialogue box using msgbox or any other related function in app designer MATLAB.

Réponse acceptée

Voss
Voss le 13 Avr 2022
msgbox(sprintf([ ...
'===================================' ...
'==================================\n' ...
'User: %s %s event: %s\n'], ...
app.sstr, app.pat, app.gm_id));
Each %s may be changed according to the class of app.sstr, app.pat, app.gm_id.

Plus de réponses (0)

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by