SalimMeghani

Primary tabs

TypeTitleAuthorRepliesLast updated
StoryWndProc (Part 2) SalimMeghani07 years 3 months ago
StoryWndProc (Part 1) SalimMeghani07 years 3 months ago
StoryWinMain SalimMeghani07 years 4 months ago
Blog entryThe Sighs of a Mouse: Essays and Stories by Paul Chappell (FTSE100/Footsie) tcook412 years 3 months ago
Forum topicAll stories have disappeared.. SalimMeghani1212 years 6 months ago
Forum topicNew Way of Evaluating Reverse Polish? SalimMeghani012 years 6 months ago
Forum topicTechnical advice Natalia613 years 1 month ago
Forum topicAhmadineBad? Mangone2915 years 4 months ago
Forum topicMore Terrorists? Mangone1115 years 8 months ago
Forum topicThe Development Of A Simple Spreadsheet Program Dendrite1718 years 5 months ago

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