Click here to Skip to main content
15,897,518 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Serial Communication with a Garmin Device Pin
led mike19-Jul-06 10:33
led mike19-Jul-06 10:33 
QuestionDialog Box DDX problem Pin
kitty519-Jul-06 8:13
kitty519-Jul-06 8:13 
AnswerRe: Dialog Box DDX problem Pin
Michael Dunn19-Jul-06 8:30
sitebuilderMichael Dunn19-Jul-06 8:30 
GeneralRe: Dialog Box DDX problem Pin
kitty519-Jul-06 8:32
kitty519-Jul-06 8:32 
QuestionRe: Dialog Box DDX problem [modified] Pin
kitty521-Jul-06 3:10
kitty521-Jul-06 3:10 
QuestionRe: Dialog Box DDX problem Pin
David Crow19-Jul-06 9:29
David Crow19-Jul-06 9:29 
AnswerRe: Dialog Box DDX problem Pin
kitty520-Jul-06 3:47
kitty520-Jul-06 3:47 
GeneralRe: Dialog Box DDX problem Pin
David Crow20-Jul-06 4:22
David Crow20-Jul-06 4:22 
kitty5 wrote:
I copied exactly what the MFC App wizard did for the AboutBox that it provides.


Unlikely. That code would most likely resemble:

void CMyDialog::OnManual()
{
    CAboutDlg about;
    about.DoModal();
}
Note how the two dialog objects are different.

kitty5 wrote:
Yes, one for each edit control... Actually, I changed the "Variable Type" to CString and the "Category" to Value (This was all done when you right click on the edit box and click on "Add Variable".

Did I do something wrong?


I personally do not use CString for edit controls. That's what CEdit was designed for. Use its SetWindowText() method, rather than UpdateData(), and you'll have far less problems.


"Money talks. When my money starts to talk, I get a bill to shut it up." - Frank

"Judge not by the eye but by the heart." - Native American Proverb


QuestionProblem with the pow( ) function [modified] Pin
KaKa'19-Jul-06 7:29
KaKa'19-Jul-06 7:29 
QuestionRe: Problem with the pow( ) function Pin
David Crow19-Jul-06 7:34
David Crow19-Jul-06 7:34 
AnswerRe: Problem with the pow( ) function Pin
toxcct19-Jul-06 7:35
toxcct19-Jul-06 7:35 
QuestionRe: Problem with the pow( ) function Pin
pgav19-Jul-06 7:37
pgav19-Jul-06 7:37 
AnswerRe: Problem with the pow( ) function Pin
cppcook19-Jul-06 7:42
cppcook19-Jul-06 7:42 
GeneralRe: Problem with the pow( ) function Pin
Zac Howland19-Jul-06 8:41
Zac Howland19-Jul-06 8:41 
AnswerAmbiguous call Pin
Ennis Ray Lynch, Jr.19-Jul-06 8:47
Ennis Ray Lynch, Jr.19-Jul-06 8:47 
AnswerRe: Problem with the pow( ) function Pin
NrmMyth19-Jul-06 12:20
NrmMyth19-Jul-06 12:20 
GeneralRe: Problem with the pow( ) function Pin
KaKa'26-Jul-06 22:21
KaKa'26-Jul-06 22:21 
QuestionEdit Box alignment problem Pin
cppcook19-Jul-06 7:24
cppcook19-Jul-06 7:24 
QuestionRe: Edit Box alignment problem Pin
David Crow19-Jul-06 7:32
David Crow19-Jul-06 7:32 
AnswerRe: Edit Box alignment problem Pin
cppcook19-Jul-06 7:36
cppcook19-Jul-06 7:36 
QuestionRe: Edit Box alignment problem Pin
David Crow19-Jul-06 7:49
David Crow19-Jul-06 7:49 
AnswerRe: Edit Box alignment problem Pin
cppcook19-Jul-06 8:00
cppcook19-Jul-06 8:00 
AnswerRe: Edit Box alignment problem Pin
earl19-Jul-06 8:34
earl19-Jul-06 8:34 
QuestionSyntax Question Pin
pgav19-Jul-06 7:14
pgav19-Jul-06 7:14 
AnswerRe: Syntax Question Pin
Justin Tay19-Jul-06 7:17
Justin Tay19-Jul-06 7:17 

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.