Click here to Skip to main content
15,887,945 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: VIsual Studio Debugger Yellow arrow cursor/control ??? Pin
ForNow13-May-10 20:17
ForNow13-May-10 20:17 
QuestionWindow Resizing!? / Win32 Pin
Fareed Rizkalla13-May-10 12:42
Fareed Rizkalla13-May-10 12:42 
AnswerRe: Window Resizing!? / Win32 Pin
Stephen Hewitt13-May-10 14:01
Stephen Hewitt13-May-10 14:01 
GeneralRe: Window Resizing!? / Win32 Pin
Fareed Rizkalla13-May-10 15:45
Fareed Rizkalla13-May-10 15:45 
GeneralRe: Window Resizing!? / Win32 Pin
Stephen Hewitt13-May-10 15:51
Stephen Hewitt13-May-10 15:51 
GeneralRe: Window Resizing!? / Win32 Pin
Fareed Rizkalla13-May-10 16:09
Fareed Rizkalla13-May-10 16:09 
AnswerRe: Window Resizing!? / Win32 Pin
Stephen Hewitt13-May-10 16:54
Stephen Hewitt13-May-10 16:54 
AnswerRe: Window Resizing!? / Win32 Pin
norish13-May-10 19:45
norish13-May-10 19:45 
I suggest a general logging technique like below;
case WM_CREATE[
{
    RECT rect;
    GetWindowRect(hWnd, &rect);
    write_log("WM_CREATE: %d, %d, %d, %d\n",
        rect.left, rect.top, rect.right, rect.bottom);
    ... other codes ...
    return 0;
}
case WM_SIZE:
{
    write_log("WM_SIZE: %d, %d, %d, %d\n", 
        WCA.left, WCA.top, WCA.right, WCA.bottom);
    return 0;
}
break;
case WM_MOVE:
{
    write_log("WM_MOVE: %d, %d\n",
        LOWORD(lParam), HIWORD(lParam));
    return 0;
}

write_log() maybe like this;
void __cdecl write_log(const char* format, ...)
{
    va_list(args);
    va_start(args, format);
    FILE* fp = fopen("trace.log", "a");
    vfprintf(fp, format, args);
    fclose(fp);
}

You might be able to catch the point with the log file.
AnswerRe: Window Resizing!? / Win32 Pin
David Crow14-May-10 8:12
David Crow14-May-10 8:12 
QuestionAsyncrhonous Multiple Processes [modified] Pin
Orion Star13-May-10 10:27
Orion Star13-May-10 10:27 
AnswerRe: Asyncrhonous Multiple Processes Pin
Stephen Hewitt13-May-10 14:08
Stephen Hewitt13-May-10 14:08 
GeneralRe: Asyncrhonous Multiple Processes Pin
Orion Star13-May-10 15:37
Orion Star13-May-10 15:37 
AnswerRe: Asyncrhonous Multiple Processes Pin
Stuart Dootson13-May-10 15:37
professionalStuart Dootson13-May-10 15:37 
GeneralRe: Asyncrhonous Multiple Processes Pin
Orion Star13-May-10 15:44
Orion Star13-May-10 15:44 
QuestionHow to write to file in little-endian or big-endian Pin
Danzy8313-May-10 9:38
Danzy8313-May-10 9:38 
AnswerRe: How to write to file in little-endian or big-endian Pin
«_Superman_»13-May-10 10:42
professional«_Superman_»13-May-10 10:42 
AnswerRe: How to write to file in little-endian or big-endian Pin
Chris Losinger13-May-10 16:24
professionalChris Losinger13-May-10 16:24 
QuestionNotify to all dialogs in my program Pin
manchukuo13-May-10 6:40
manchukuo13-May-10 6:40 
AnswerRe: Notify to all dialogs in my program Pin
Maximilien13-May-10 7:23
Maximilien13-May-10 7:23 
QuestionRe: Notify to all dialogs in my program Pin
David Crow13-May-10 8:15
David Crow13-May-10 8:15 
AnswerRe: Notify to all dialogs in my program Pin
manchukuo13-May-10 12:14
manchukuo13-May-10 12:14 
AnswerRe: Notify to all dialogs in my program Pin
«_Superman_»13-May-10 9:23
professional«_Superman_»13-May-10 9:23 
GeneralRe: Notify to all dialogs in my program Pin
manchukuo13-May-10 12:15
manchukuo13-May-10 12:15 
GeneralRe: Notify to all dialogs in my program Pin
«_Superman_»13-May-10 12:34
professional«_Superman_»13-May-10 12:34 
QuestionProcess Name Pin
john563213-May-10 6:02
john563213-May-10 6:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.