SalimMeghani

Primary tabs

I have 53 stories published in 0 collections on the site.
My stories have been read 21096 times

SalimMeghani's picture
Salim Meghani

 

My stories

WndProc (Part 13)

// Translate cursor keys to scroll messages. case WM_KEYDOWN: switch(wParam) { case VK_UP: SendMessage(hWnd, WM_VSCROLL, SB_LINEUP,0L); break; case...

WndProc (Part 12)

if (scroll) { dscroll=5; } ReleaseDC(hWnd,hdc); olrxpos=curxpos; olrypos=curypos; credraw=1; vredraw=1; // row=ctypos; column=ctxpos; InvalidateRect(...

WndProc (Part 11)

// Called when performing a scroll by a column. case WM_HSCROLL: hdc=GetDC(hWnd); SelectObject(hdc, GetStockObject(SYSTEM_FIXED_FONT));...

WndProc (Part 10)

if (scroll) { dscroll=5; } ReleaseDC(hWnd,hdc); olrxpos=curxpos; olrypos=curypos; credraw=1;` hredraw=1; // row=ctypos; column=ctxpos; InvalidateRect...

WndProc (Part 9)

// Called when performing a scroll by a row. case WM_VSCROLL: hdc=GetDC(hWnd); SelectObject(hdc, GetStockObject(SYSTEM_FIXED_FONT)); GetTextMetrics(...

Pages