HTML Help !!!!!!!!!!!!!!
-
how can i run chage the size of an HTML Help window. i mean i am using Html Help in my VC application . few pages contain very less info to display so i want ot reduce the size of window and if the conatin is more then the size should increase can any one help me in solving this bug Thanx TAKE CARE
-
how can i run chage the size of an HTML Help window. i mean i am using Html Help in my VC application . few pages contain very less info to display so i want ot reduce the size of window and if the conatin is more then the size should increase can any one help me in solving this bug Thanx TAKE CARE
HH_WINTYPE WinType ; memset(&WinType,0,sizeof(WinType)); WinType.cbStruct = sizeof(WinType); //fill the other members if required // Specify where the window should be RECT wndPos ; wndPos.top = 20; wndPos.left = 10; wndPos.right = 620; wndPos.bottom = 410; WinType.rcWindowPos = wndPos; // Create the window HtmlHelp(0,"hh4mfc.chm",HH_SET_WIN_TYPE,(DWORD)&WinType) ;
Hope this helps. Melwyn