how to display instruction when the cursor on the edit box in matlab?
9 views (last 30 days)
Show older comments
could I do it in matlab , I mean when the user put the cursor on the edit box I wanna display instruction about the values to be entered in the edit box?
0 Comments
Accepted Answer
YT
on 16 Dec 2017
Something like this?
figure();
uicontrol('Style', 'Edit', 'String', 'My edit box','TooltipString', 'My tooltip');
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!