...0;
si.nMax = ilen-1;
SetScrollInfo(hwnd,SB_VERT,&si,TRUE);
//next is horizantal
si.nPage = cxClient / icxChar;
si.nMin =0;
si.nMax = 50 * icxChar;
SetScrollInfo(hwnd,SB_HORZ,&si,TRUE);
return 0;
case WM_VSCROLL:
//get old vpos
si.cbSize = sizeof(SCROLLINFO)...