Click here to Skip to main content
15,922,015 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Disabling checkbox Pin
abc8762-Jun-03 9:56
abc8762-Jun-03 9:56 
GeneralRe: Disabling checkbox Pin
Dominik Reichl2-Jun-03 20:35
Dominik Reichl2-Jun-03 20:35 
GeneralRe: Disabling checkbox Pin
abc8762-Jun-03 9:50
abc8762-Jun-03 9:50 
QuestionHICON to HBITMAP? Pin
Dave_2-Jun-03 7:50
Dave_2-Jun-03 7:50 
AnswerRe: HICON to HBITMAP? Pin
Dominik Reichl2-Jun-03 8:43
Dominik Reichl2-Jun-03 8:43 
GeneralWinRTP and CE Pin
javigimenez2-Jun-03 6:53
javigimenez2-Jun-03 6:53 
GeneralProblem with SQLColumns in ODBC API Pin
insanely4202-Jun-03 6:48
insanely4202-Jun-03 6:48 
GeneralRe: Problem with SQLColumns in ODBC API Pin
David Crow2-Jun-03 7:17
David Crow2-Jun-03 7:17 
GeneralRe: Problem with SQLColumns in ODBC API Pin
insanely4202-Jun-03 8:13
insanely4202-Jun-03 8:13 
GeneralRe: Problem with SQLColumns in ODBC API Pin
Anonymous2-Jun-03 9:24
Anonymous2-Jun-03 9:24 
GeneralRe: Problem with SQLColumns in ODBC API Pin
basementman2-Jun-03 9:25
basementman2-Jun-03 9:25 
GeneralCLabel with tooltips Pin
doctorpi2-Jun-03 6:05
doctorpi2-Jun-03 6:05 
GeneralSilly question about repaint Pin
doctorpi2-Jun-03 6:00
doctorpi2-Jun-03 6:00 
GeneralRe: Silly question about repaint Pin
valikac2-Jun-03 6:46
valikac2-Jun-03 6:46 
GeneralRe: Silly question about repaint Pin
David Crow2-Jun-03 6:49
David Crow2-Jun-03 6:49 
GeneralRe: Silly question about repaint Pin
doctorpi2-Jun-03 7:00
doctorpi2-Jun-03 7:00 
GeneralRe: Silly question about repaint Pin
David Crow2-Jun-03 7:02
David Crow2-Jun-03 7:02 
GeneralRe: Silly question about repaint Pin
doctorpi2-Jun-03 7:09
doctorpi2-Jun-03 7:09 
GeneralRe: Silly question about repaint Pin
David Crow2-Jun-03 7:19
David Crow2-Jun-03 7:19 
GeneralCode to find cameras and scanners Pin
jleno2-Jun-03 5:55
jleno2-Jun-03 5:55 
GeneralRe: Code to find cameras and scanners Pin
Ryan_Roberts2-Jun-03 6:15
Ryan_Roberts2-Jun-03 6:15 
GeneralRe: Code to find cameras and scanners Pin
Andrew Walker2-Jun-03 13:42
Andrew Walker2-Jun-03 13:42 
GeneralCPropertySheet Pin
K. Shaffer2-Jun-03 5:54
K. Shaffer2-Jun-03 5:54 
GeneralRe: CPropertySheet Pin
Joan M2-Jun-03 6:02
professionalJoan M2-Jun-03 6:02 
in the first way you use directly an object, and in the second method you use a pointer to an object...

Then your problem should be solved by changing m_sheet.AddPage(&entry); for m_sheet->AddPage(&entry);

it's an usual mistake...

take a look at the error: error C2228: left of '.AddPage' must have class/struct/union type if what is in the left of the member (method, function or variable) is a class, a union or a struct you will need the "." elsewhere you'll need the "->".

hope this helps.
GeneralRe: CPropertySheet Pin
K. Shaffer2-Jun-03 6:12
K. Shaffer2-Jun-03 6:12 

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.