In this exercise, you will add a new variable to the "Config.ini" file for your tutorial application.
Note: There is a list of valid "Config.ini" variables in "VTS Programmer's Guide: 12: Configuration Files and Variables: Introduction to Config.ini".
The "DispMgrFullScreen" variable controls the appearance of the Display Manager when a VTS application is run. "DispMgrFullScreen" can be set to "1" or "0" according to whether or not you want a Windows title bar to appear above the Display Manager's title bar (where "0" indicates the presence of a Windows title bar, and "1" indicates no Windows title bar).
The "DisplayManagerTitle" variable controls the title you wish to be displayed in the Windows title bar when one is present.
"Config.ini" should still be open from the last exercise. If it is not, open it now using the text editor of your choice.
1. Enter "DispMgrFullScreen = 0" beneath the last setting in the "Config.ini" file.
2. Enter "DispMgrResizable = 1" on the next line.
3. Enter "DisplayManagerTitle = The Tutorial Application".
Your Config.ini file should end with the lines shown below.
DispMgrFullScreen = 0
DispMgrResizable = 1
DisplayManagerTitle = The Tutorial Application
The result of setting the "DispMgrFullScreen" variable in this manner is that the Display Manager will feature a Windows title bar with minimize, maximize, and close buttons and be resizable.
4. Save the "Config.ini" file.
5. Close the "Config.ini" file.
6. Return to the VAM.
7. Select "Tutorial" in the Available Applications list.
8. Click the Run button.