Click here to Skip to main content
15,908,115 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: File Tree Control??? Pin
Shay Harel18-Aug-03 9:12
Shay Harel18-Aug-03 9:12 
GeneralRe: File Tree Control??? Pin
Bob Stanneveld19-Aug-03 2:48
Bob Stanneveld19-Aug-03 2:48 
Questionhow to maximize the window of SDI project Pin
mr200318-Aug-03 8:26
mr200318-Aug-03 8:26 
AnswerRe: how to maximize the window of SDI project Pin
Bob Stanneveld18-Aug-03 8:54
Bob Stanneveld18-Aug-03 8:54 
AnswerRe: how to maximize the window of SDI project Pin
David Crow18-Aug-03 8:55
David Crow18-Aug-03 8:55 
QuestionDo not allow move Window?? Pin
Rene De La Garza18-Aug-03 8:16
Rene De La Garza18-Aug-03 8:16 
AnswerRe: Do not allow move Window?? Pin
David Crow18-Aug-03 9:00
David Crow18-Aug-03 9:00 
AnswerRe: Do not allow move Window?? Pin
valikac18-Aug-03 12:00
valikac18-Aug-03 12:00 
One solution is to add a handler for WM_SYSCOMMAND. Ignore SC_MOVE.

if (WM_SYSCOMMAND == message && SC_MOVE == (wParam & 0xFFF0))
return 0;

Kuphryn

GeneralRe: Do not allow move Window?? Pin
Rene De La Garza18-Aug-03 12:20
Rene De La Garza18-Aug-03 12:20 
GeneralToolbar ToolTip problem Pin
Chris Losinger18-Aug-03 8:10
professionalChris Losinger18-Aug-03 8:10 
GeneralCListCtrl::GetHotItem() XP & 2000 Pin
Member 53100518-Aug-03 8:03
Member 53100518-Aug-03 8:03 
GeneralRe: CListCtrl::GetHotItem() XP & 2000 Pin
David Crow18-Aug-03 9:02
David Crow18-Aug-03 9:02 
GeneralRe: CListCtrl::GetHotItem() XP & 2000 Pin
Member 53100518-Aug-03 9:33
Member 53100518-Aug-03 9:33 
GeneralRe: CListCtrl::GetHotItem() XP & 2000 Pin
David Crow18-Aug-03 9:46
David Crow18-Aug-03 9:46 
GeneralRe: CListCtrl::GetHotItem() XP & 2000 Pin
Member 53100518-Aug-03 10:16
Member 53100518-Aug-03 10:16 
GeneralReading the registry Pin
Shay Harel18-Aug-03 7:59
Shay Harel18-Aug-03 7:59 
GeneralRe: Reading the registry Pin
David Crow18-Aug-03 9:03
David Crow18-Aug-03 9:03 
GeneralRe: Reading the registry Pin
Shay Harel18-Aug-03 9:09
Shay Harel18-Aug-03 9:09 
GeneralRe: Reading the registry Pin
David Crow18-Aug-03 9:18
David Crow18-Aug-03 9:18 
GeneralRe: Reading the registry Pin
Shay Harel18-Aug-03 10:36
Shay Harel18-Aug-03 10:36 
GeneralRe: Reading the registry Pin
David Crow18-Aug-03 10:44
David Crow18-Aug-03 10:44 
GeneralRe: Reading the registry Pin
Shay Harel18-Aug-03 10:48
Shay Harel18-Aug-03 10:48 
GeneralRe: Reading the registry Pin
David Crow18-Aug-03 10:58
David Crow18-Aug-03 10:58 
GeneralDrag drop from my application to Windows Explorer Pin
Orantho18-Aug-03 7:57
Orantho18-Aug-03 7:57 
GeneralWinSOCK bind function. Pin
Søren Alsbjerg Hørup18-Aug-03 7:23
Søren Alsbjerg Hørup18-Aug-03 7:23 

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.