Subj : Re: Borland C++ 5.02 and writing Windows code To : Paul P From : Dmytry Sergeyev Date : Thu Jul 01 2004 07:13 pm Hello, Paul! PP> hwnd = CreateWindow( PP> szWinName, // name of window class PP> "DiskUse", // title PP> WS_OVERLAPPEDWINDOW, // window style, normal PP> CW_USEDEFAULT, // x coordinate - let Windows decide PP> CW_USEDEFAULT, // y coordinate - let Windows decide PP> CW_USEDEFAULT, // width - let Windows decide PP> CW_USEDEFAULT, // height - let Windows decide PP> NULL, // no parent window PP> NULL, // no menu // May be ........ LoadMenu(hThisInst, MAKEINTRESOURCE(IDM_MENU1)), // no menu ........ // where #define IDM_MENU1 12345 // some number .