von pospiech | Mai 21, 2007 | MFC
The following code sets the mouse cursor to the waiting state and back to its default before: HCURSOR hCursorWait; HCURSOR hCursorDefault; hCursorWait = LoadCursor(NULL,IDC_WAIT); hCursorDefault = ::SetCursor(hCursorWait); ::SetCursor(hCursorDefault);
von pospiech | Apr 30, 2007 | MFC
The task to read a bitmap into a data array, show this bitmap and save an array or dc to a file sound like a simple task but is rather difficult in reality if one uses MFC. Maybe I am totaly wrong when stating this, but that is my result of one week searching for...
von pospiech | Apr 27, 2007 | MFC
The following Code maximises a dialog on the second screen. The code is available for download: DrawOnSecondScreen.zip (43,9 KiB) void DlgSecondScreen::ResizeDialog(const CRect newRect) { // Resize Dialog SetWindowPos(&CWnd::wndTop, newRect.left,...
von pospiech | Apr 27, 2007 | MFC
The following code shows how to paint into a CStatic Control and make sure this painting is flicker-free. [TOC] The example code for download: FlickerFreeDemoStatic.zip (61,6 KiB) Overloading of CStatic Unfortunately one can not draw inside a CStatic...
von pospiech | Apr 26, 2007 | MFC
One can find several examples for flicker free drawing in MFC. (see for example Flicker Free Drawing In MFC) Here is an example done by myself. I used the CMemDC Class posted in Enhanced CMemDC. The example code for download: FlickerFreeDemoBackground.zip...