When you choose the About command from the File menu, a dialog box with information about the program is displayed.
The default dialog box contains the application's name, a copyright notice, and an OK button.
To add a line of your own information, use the _wabout function near the beginning of your program. Pass the function a pointer to a null terminated string you want to display in the dialog box. For example:
_wabout("Cluster Analysis - by Berry S. Michael");
The function returns an int. If the operation is successful, the function returns zero.