/*****************************************************************/
/* BWSPLASH.RC defines a simple Borland Windows Custom Control   */
/* Dialog Box that can be used as the main window.               */
/* Notice the CLASS "BORDLG" to activate the metalic background  */
/* Also notice the special "Borshade" Control.                   */
/*****************************************************************/

#include "windows.h"
#include "bwcc.h"

MAINWINDOWDIALOG DIALOG 13, 16, 162, 167
CAPTION "BWCC Dialog Box"
CLASS "BORDLG"
STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX
BEGIN
	CONTROL "", 104, "BorShade", 1 | WS_CHILD | WS_VISIBLE, 6, 114, 150, 48
	CTEXT "A Special Bitmap Button that can be", -1, 12, 120, 138, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
	CTEXT "resized has been provided in the BWCC", -1, 12, 132, 138, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
	CTEXT "Tool Pallett to better represent a Bitmap", -1, 12, 144, 138, 8, WS_CHILD | WS_VISIBLE | WS_GROUP
	CONTROL "Button", 110, "BorBtn", BBS_BITMAP | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 6, 6, 150, 102
END

1110 BITMAP splash.bmp

