Click here to Skip to main content
15,896,154 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Thread function graceful shutdown Pin
Ted Ferenc24-Jan-03 6:20
Ted Ferenc24-Jan-03 6:20 
GeneralRe: Thread function graceful shutdown Pin
Anonymous24-Jan-03 7:21
Anonymous24-Jan-03 7:21 
GeneralRe: Thread function graceful shutdown Pin
John M. Drescher24-Jan-03 7:34
John M. Drescher24-Jan-03 7:34 
GeneralRe: Thread function graceful shutdown Pin
Ted Ferenc24-Jan-03 7:43
Ted Ferenc24-Jan-03 7:43 
GeneralSmart ComboBox Pin
ns24-Jan-03 5:57
ns24-Jan-03 5:57 
GeneralRe: Smart ComboBox Pin
Ben Burnett24-Jan-03 17:31
Ben Burnett24-Jan-03 17:31 
GeneralRe: Smart ComboBox...THanks! Pin
ns27-Jan-03 4:35
ns27-Jan-03 4:35 
GeneralConfused Help!!!! Pin
nlecren24-Jan-03 5:25
nlecren24-Jan-03 5:25 
Got a quick question the following code works in the OnInitDialog function of CPropertySheet, however the same code does nothing in the OnInitDialog function of the CPropertyPage?

// CPropertySheet OnInitDialog code
CRect rect;
CPropertyPage *pPage = GetActivePage();

pPage->GetWindowRect(&rect);
ScreenToClient(&rect);

rect.right += 50;
rect.bottom += 50;

pPage->MoveWindow(&rect);


// CPropertyPage OnInitDialog code
CRect rect;

GetWindowRect(&rect);
ScreenToClient(&rect);

rect.right += 50;
rect.bottom += 50;

MoveWindow(&rect);


Now i know it shouldn't matter to me cause i got it working in the sheet, but it's driving me crazy knowing that this should work in each individual page as well!! Help me understand this craziness


Generalcombobox in toolbar question HELP!!! Pin
ns24-Jan-03 4:43
ns24-Jan-03 4:43 
GeneralRe: combobox in toolbar question HELP!!! Pin
Gary Kirkham24-Jan-03 4:47
Gary Kirkham24-Jan-03 4:47 
GeneralRe: combobox in toolbar question HELP!!! Pin
HENDRIK R24-Jan-03 4:53
HENDRIK R24-Jan-03 4:53 
GeneralRe: combobox in toolbar question HELP!!! Pin
ns24-Jan-03 5:04
ns24-Jan-03 5:04 
Generalmap .clear() question Pin
ns24-Jan-03 3:50
ns24-Jan-03 3:50 
GeneralRe: map .clear() question Pin
ns24-Jan-03 4:02
ns24-Jan-03 4:02 
GeneralRe: map .clear() question Pin
benjymous24-Jan-03 4:12
benjymous24-Jan-03 4:12 
GeneralRe: map .clear() question Pin
ns24-Jan-03 4:27
ns24-Jan-03 4:27 
GeneralRe: map .clear() question Pin
jhwurmbach24-Jan-03 4:41
jhwurmbach24-Jan-03 4:41 
GeneralRe: map .clear() question Pin
ns24-Jan-03 5:09
ns24-Jan-03 5:09 
GeneralRe: map .clear() question Pin
Joaquín M López Muñoz24-Jan-03 5:03
Joaquín M López Muñoz24-Jan-03 5:03 
GeneralRe: map .clear() question Pin
Tim Smith24-Jan-03 5:04
Tim Smith24-Jan-03 5:04 
GeneralRe: map .clear() question Pin
Joaquín M López Muñoz24-Jan-03 5:20
Joaquín M López Muñoz24-Jan-03 5:20 
GeneralRe: map .clear() question Pin
Tim Smith24-Jan-03 9:05
Tim Smith24-Jan-03 9:05 
GeneralRe: map .clear() question Pin
Joaquín M López Muñoz24-Jan-03 9:34
Joaquín M López Muñoz24-Jan-03 9:34 
Generalthank you..... Pin
ns24-Jan-03 5:22
ns24-Jan-03 5:22 
GeneralRe: map .clear() question Pin
Rage24-Jan-03 5:09
professionalRage24-Jan-03 5:09 

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.