SalimMeghani

Primary tabs

TypeTitleAuthorRepliesLast updated
StoryWndProc (Part 2) SalimMeghani06 years 1 month ago
StoryWndProc (Part 1) SalimMeghani06 years 1 month ago
StoryWinMain SalimMeghani06 years 1 month ago
Blog entryThe Sighs of a Mouse: Essays and Stories by Paul Chappell (FTSE100/Footsie) tcook411 years 1 week ago
Forum topicAll stories have disappeared.. SalimMeghani1211 years 3 months ago
Forum topicNew Way of Evaluating Reverse Polish? SalimMeghani011 years 3 months ago
Forum topicTechnical advice Natalia611 years 10 months ago
Forum topicAhmadineBad? Mangone2914 years 1 month ago
Forum topicMore Terrorists? Mangone1114 years 5 months ago
Forum topicThe Development Of A Simple Spreadsheet Program Dendrite1717 years 2 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