MFC

운영자 | 기사입력 2008/03/25 [13:40]
>
필자의 다른기사 보기 인쇄하기 메일로 보내기 글자 크게 글자 작게
MFC
 
운영자   기사입력  2008/03/25 [13:40]
 char temp[200];
 char temp2[200]="file://";
 
     GetCurrentDirectory(200, temp);
  strcat(temp,"\\index.html"); 
  strcat(temp2,temp); 
  
 
     //CString url = "file://"+'temp'+"/index.html";
  MessageBox(temp2);
     Navigate(temp2,NULL,NULL,NULL,NULL);

CWinApp에서 파생한 클래스의 InitInstance()에서 CWnd의 멤버함수 SetWindowText를 사용한다.
새 파일을 열게 되면 원래대로 바뀐다. 계속 바뀐 제목을 유지하려면 파일을 열거나 새 파일을 선택할 때 불리는 함수에도 적당히 처리해 주어야 할 것이다.
        .................
        // The one and only window has been initialized, so show and update it.
        m_pMainWnd->ShowWindow(SW_SHOW);
        m_pMainWnd->UpdateWindow();
        m_pMainWnd->SetWindowText("개인 정보관리");
        return TRUE;
}

 
트위터 트위터 페이스북 페이스북 카카오톡 카카오톡
기사입력: 2008/03/25 [13:40]  최종편집: ⓒ iwav