Click here to Skip to main content
15,902,299 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: SendMessage isnt quite working Pin
Ista30-May-06 9:12
Ista30-May-06 9:12 
AnswerRe: SendMessage isnt quite working [modified] Pin
Eric Dahlvang30-May-06 8:46
Eric Dahlvang30-May-06 8:46 
Questiondisable auto-complete in dropdown [modified] Pin
elephantstar30-May-06 6:10
elephantstar30-May-06 6:10 
AnswerRe: disable auto-complete in dropdown [modified] Pin
valikac30-May-06 6:45
valikac30-May-06 6:45 
GeneralRe: disable auto-complete in dropdown [modified] Pin
elephantstar30-May-06 7:20
elephantstar30-May-06 7:20 
GeneralRe: disable auto-complete in dropdown [modified] Pin
valikac30-May-06 7:29
valikac30-May-06 7:29 
GeneralRe: disable auto-complete in dropdown [modified] Pin
elephantstar30-May-06 14:24
elephantstar30-May-06 14:24 
GeneralRe: disable auto-complete in dropdown [modified] Pin
valikac30-May-06 15:36
valikac30-May-06 15:36 
QuestionPrevent CListCtrl from hiding scrollbar Pin
stefisko30-May-06 6:08
stefisko30-May-06 6:08 
QuestionHelp Pls - C++ and ADO problem Pin
antonaras30-May-06 5:39
antonaras30-May-06 5:39 
AnswerRe: Help Pls - C++ and ADO problem Pin
Steve S30-May-06 6:10
Steve S30-May-06 6:10 
GeneralRe: Help Pls - C++ and ADO problem Pin
antonaras30-May-06 6:25
antonaras30-May-06 6:25 
GeneralRe: Help Pls - C++ and ADO problem Pin
Steve S30-May-06 6:37
Steve S30-May-06 6:37 
GeneralRe: Help Pls - C++ and ADO problem Pin
antonaras30-May-06 6:50
antonaras30-May-06 6:50 
GeneralRe: Help Pls - C++ and ADO problem Pin
Jörgen Sigvardsson30-May-06 13:32
Jörgen Sigvardsson30-May-06 13:32 
GeneralRe: Help Pls - C++ and ADO problem Pin
Steve S30-May-06 22:24
Steve S30-May-06 22:24 
QuestionBeginner MFC Dialog Problems Pin
aei_totten30-May-06 5:32
aei_totten30-May-06 5:32 
AnswerRe: Beginner MFC Dialog Problems Pin
Zac Howland30-May-06 5:48
Zac Howland30-May-06 5:48 
GeneralRe: Beginner MFC Dialog Problems Pin
aei_totten30-May-06 8:13
aei_totten30-May-06 8:13 
QuestionRe: Beginner MFC Dialog Problems Pin
Hamid_RT30-May-06 8:44
Hamid_RT30-May-06 8:44 
AnswerRe: Beginner MFC Dialog Problems Pin
aei_totten30-May-06 9:14
aei_totten30-May-06 9:14 
GeneralRe: Beginner MFC Dialog Problems Pin
Eric Dahlvang30-May-06 9:14
Eric Dahlvang30-May-06 9:14 
GeneralRe: Beginner MFC Dialog Problems Pin
Zac Howland30-May-06 9:41
Zac Howland30-May-06 9:41 
If you are still having problems displaying your main dialog, change the DoModal call to the following:

int result = mainDlg.DoModal();

And place a breakpoint on that line. If you get to the breakpoint, then check the return value for DoModal. If you don't get to it, it means your message map isn't set properly (check the ID for your button and make sure you have correctly mapped the handler for it).

As far as this new problem ... I'm assuming you have an Edit Box on the dialog and that you set its password property (e.g. show up as *'s). Make sure the c_Password variable (which I'm assuming is the edit control) is a member of your CMyLogOnDialog class (you will see a declaration like: CEdit c_Password; in its header file). Additionally, the DoDataExchange method should have a DDX_Control call with the ID for that edit control and the c_Password variable as parameters.

If you decide to become a software engineer, you are signing up to have a 1/2" piece of silicon tell you exactly how stupid you really are for 8 hours a day, 5 days a week

Zac
QuestionRe: Beginner MFC Dialog Problems Pin
Roger Stoltz30-May-06 5:53
Roger Stoltz30-May-06 5:53 
QuestionPOP3 server source Pin
Arman S.30-May-06 5:30
Arman S.30-May-06 5:30 

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.