國立暨南國際大學 101 學年度第二學期小考試卷                   (考試時間: 14:10-14:20)
科目名稱:程式設計 開課系所:資訊工程 學系 任課教師
吳坤熹
系所別:
年級:
學號:
姓名:
考試日期
2013.6.4
  1. (10%) Consider an MFC application with the following code.  What string will be shown in the edit box after the user presses the button?

    void CQuiz13View::OnBnClickedButton1()
    {
        CString str;
        str.Format(_T("%05.2f"), 3.14159);
        // The function _T() makes your string
        // suitable for either ASCII code or Unicode
        GetDlgItem(IDC_EDIT1)->SetWindowTextW(str);
    }

    Quiz 13 (EDIT BOX + BUTTON)