Click here to Skip to main content
15,927,345 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralInstallation of an application that is using MFC Pin
28-Aug-01 5:33
suss28-Aug-01 5:33 
GeneralRe: Installation of an application that is using MFC Pin
gordingin28-Aug-01 6:14
gordingin28-Aug-01 6:14 
GeneralRe: Installation of an application that is using MFC Pin
Not Active28-Aug-01 7:37
mentorNot Active28-Aug-01 7:37 
GeneralRe: Installation of an application that is using MFC Pin
Anders Molin28-Aug-01 8:52
professionalAnders Molin28-Aug-01 8:52 
GeneralRe: Installation of an application that is using MFC Pin
28-Aug-01 23:43
suss28-Aug-01 23:43 
GeneralRe: Installation of an application that is using MFC - the real answer Pin
#realJSOP29-Aug-01 1:44
professional#realJSOP29-Aug-01 1:44 
GeneralCWnd::SetWindowText Pin
28-Aug-01 5:07
suss28-Aug-01 5:07 
GeneralRe: CWnd::SetWindowText Pin
gordingin28-Aug-01 5:23
gordingin28-Aug-01 5:23 
You need to do the SetWindowText() in the OnInitDialog() handler in the about class. The way you are doing it, the dialog has already been displayed and dismissed...

BOOL CAboutDlg::OnInitDialog()
{
CDialog::OnInitDialog();

SetWindowText("test!!!!!!");

return TRUE;
}

GeneralRe: CWnd::SetWindowText Pin
28-Aug-01 5:39
suss28-Aug-01 5:39 
GeneralRe: CWnd::SetWindowText Pin
gordingin28-Aug-01 6:12
gordingin28-Aug-01 6:12 
GeneralRe: CWnd::SetWindowText Pin
28-Aug-01 6:17
suss28-Aug-01 6:17 
GeneralRe: CWnd::SetWindowText Pin
gordingin28-Aug-01 7:20
gordingin28-Aug-01 7:20 
GeneralRe: CWnd::SetWindowText Pin
28-Aug-01 7:49
suss28-Aug-01 7:49 
GeneralRe: CWnd::SetWindowText Pin
Derek Waters28-Aug-01 14:04
Derek Waters28-Aug-01 14:04 
GeneralRe: CWnd::SetWindowText Pin
Carlos Antollini28-Aug-01 14:24
Carlos Antollini28-Aug-01 14:24 
GeneralNeed some advice Pin
gordingin28-Aug-01 4:51
gordingin28-Aug-01 4:51 
GeneralRemoving Start Bar Pin
28-Aug-01 4:38
suss28-Aug-01 4:38 
GeneralRe: Removing Start Bar Pin
gordingin28-Aug-01 6:25
gordingin28-Aug-01 6:25 
GeneralRe: Removing Start Bar Pin
29-Aug-01 9:56
suss29-Aug-01 9:56 
GeneralRe: Removing Start Bar Pin
Paolo Messina28-Aug-01 6:38
professionalPaolo Messina28-Aug-01 6:38 
GeneralRe: Removing Start Bar Pin
29-Aug-01 10:05
suss29-Aug-01 10:05 
GeneralRe: Removing Start Bar Pin
Simon Capewell29-Aug-01 0:27
Simon Capewell29-Aug-01 0:27 
GeneralSending ALT+CTRL+DEL to the system Pin
Vijay S28-Aug-01 3:47
Vijay S28-Aug-01 3:47 
GeneralRe: Sending ALT+CTRL+DEL to the system Pin
Zoltan Csizmadia28-Aug-01 4:14
Zoltan Csizmadia28-Aug-01 4:14 
GeneralRe: Sending ALT+CTRL+DEL to the system Pin
Vijay S28-Aug-01 5:33
Vijay S28-Aug-01 5:33 

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.