Changing Window Titles

버전 1.3.0.1 (5.41 KB) 작성자: Malcolm Wood
Provides the ability to change the titles of all windows in the MATLAB process
다운로드 수: 3.2K
업데이트 날짜: 2016/9/1

라이선스 보기

If you're using more than one instance of MATLAB at a time, it's useful to be able to tell them apart at a glance. This utility lets you rename the MATLAB window so that it can be distinguished from other instances in the task bar, and when tabbing between windows.
Two functions are included:

>> [hWnd,title] = findAllWindows
returns the names and handles of all windows in the MATLAB process.

>> setWindowTitle(hWnd,title)
allows you to set the title of any window in the MATLAB process.

An example script is included, as are help files and full source code.

You will need to build the MEX functions yourself. If you haven't run "mex" before, use:
>> mex -setup
and follow the instructions for selecting a compiler.

Then run:
>> mex findAllWindows.cpp
>> mex setWindowTitle.cpp
This works with Microsoft Visual Studio 2005, and probably with other versions too. If you encounter linking problems, try adding "user32.lib" to the end of the command.

인용 양식

Malcolm Wood (2024). Changing Window Titles (https://www.mathworks.com/matlabcentral/fileexchange/11046-changing-window-titles), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2006a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Title에 대해 자세히 알아보기
도움

받음: sethicon

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.3.0.1

Updated license

1.3.0.0

Removed mexw32 files.

1.2.0.0

Added copyright lines. Removed binaries to comply with conditions of the site. Added compilation instructions.

1.1.0.0

Review

1.0.0.0

Removed the function which changes the window icon, which is in violation of the licence agreement for MATLAB 7 and later.