C Win32:窗口自动关闭

时间:2016-07-11 11:08:52

标签: c winapi

我想创建一个Word'corrupter',它实际上只是用一些ascii字母替换了一些字母。但是,按下“生成”按钮时,窗口会自动关闭

static HANDLE ghInstance;

HWND hwndEDIT;
int index[10];

static INT_PTR CALLBACK MainDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
    switch (uMsg)
    {
        case WM_INITDIALOG:
        {
            hwndEDIT = GetWindow(hwndDlg, IDC_EDIT);

            return TRUE;
        }

        case WM_SIZE:
            /*
             * TODO: Add code to process resizing, when needed.
             */
            return TRUE;

        case WM_COMMAND:
            switch (GET_WM_COMMAND_ID(wParam, lParam))
            {
                case IDC_GENERATE:
                {
                    char input[1000];
                    char output[1000][10];

                    int i, strLength, m, map;
                    int rNmb;
                    int chance;

                    GetWindowText(hwndEDIT, input, 1000);

                    srand(time(NULL));

                    strLength = strlen(input);

                    for(m=0;m<10;m++)
                    {
                        map = 0;
                        strcpy(output[m], input);
                        for(i=0;i<strLength;i++)
                        {
                            switch(output[m][i])
                            {
                                case '\0':
                                    continue;

                                case '\n':
                                    continue;

                                case ' ':
                                    continue;
                            }

                            chance = rand() % 100;

                            if(chance < 25)
                            {
                                rNmb = (rand() % 128) + 128;

                                output[m][i] = rNmb;
                            }
                        }
                        index[m] = SendDlgItemMessage(hwndDlg , IDC_LISTBOX, LB_ADDSTRING, 0, (LPARAM)output[m]);

                        map++;
                        SendDlgItemMessage(hwndDlg, IDC_LISTBOX, LB_SETITEMDATA, (WPARAM)index[m], (LPARAM)map);
                    }
                }
                case IDC_CLOSE:
                    EndDialog(hwndDlg, TRUE);
                    return TRUE;
            }
            break;

        case WM_CLOSE:
            EndDialog(hwndDlg, 0);
            return TRUE;

        /*
         * TODO: Add more messages, when needed.
         */
    }

    return FALSE;
}

我看不到生成按钮和关闭命令

之间的任何链接

1 个答案:

答案 0 :(得分:4)

你错过了一个休息声明。

案例case IDC_GENERATE直接落入:

case IDC_CLOSE:
    EndDialog(hwndDlg, TRUE);
    return TRUE;

您可以使用函数使代码可读,并且可能会捕获此错误。