Click here to Skip to main content
15,889,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: C++ Question. Pin
Anonymous5-Oct-03 20:47
Anonymous5-Oct-03 20:47 
GeneralRe: C++ Question. Pin
WREY5-Oct-03 21:19
WREY5-Oct-03 21:19 
GeneralRe: C++ Question. Pin
Johnny ²6-Oct-03 1:05
Johnny ²6-Oct-03 1:05 
GeneralRe: C++ Question. Pin
WREY6-Oct-03 20:35
WREY6-Oct-03 20:35 
QuestionAny SetWindowOrg(x,y) Gurus? Pin
spiritualfields5-Oct-03 17:10
spiritualfields5-Oct-03 17:10 
GeneralMoving Windows Pin
DougW485-Oct-03 16:04
DougW485-Oct-03 16:04 
GeneralRe: Moving Windows Pin
Beer265-Oct-03 16:09
Beer265-Oct-03 16:09 
GeneralRe: Moving Windows Pin
Dave Bryant5-Oct-03 16:10
Dave Bryant5-Oct-03 16:10 
GetWindowRect() retrieves the window position in screen co-ordinates (i.e. 0,0 is the top-left corner of the screen. MoveWindow() moves the window to the specified client co-ordinates of its parent window (i.e. 0,0 is the top-left corner of the parent window).

You need to peform a conversion between the screen and client co-ordinates before moving the window as follows:

MyWindow->GetWindowRect( &WindowRect );
ScreenToClient( &WindowRect );
// Adjust the position here...
MyWindow->MoveWindow( &WindowRect );

Dave
http://www.cloudsofheaven.org
Questionloosing my backspace messages??? Pin
Beer265-Oct-03 15:38
Beer265-Oct-03 15:38 
AnswerRe: loosing my backspace messages??? Pin
J. Dunlap5-Oct-03 15:53
J. Dunlap5-Oct-03 15:53 
GeneralRe: loosing my backspace messages??? Pin
Beer265-Oct-03 15:57
Beer265-Oct-03 15:57 
GeneralRe: loosing my backspace messages??? Pin
J. Dunlap5-Oct-03 16:28
J. Dunlap5-Oct-03 16:28 
AnswerRe: loosing my backspace messages??? Pin
Michael Dunn5-Oct-03 19:26
sitebuilderMichael Dunn5-Oct-03 19:26 
GeneralRe: loosing my backspace messages??? Pin
Beer266-Oct-03 3:28
Beer266-Oct-03 3:28 
GeneralSQL Database Pin
don7cry5-Oct-03 15:21
don7cry5-Oct-03 15:21 
GeneralRe: SQL Database Pin
alex.barylski5-Oct-03 16:12
alex.barylski5-Oct-03 16:12 
Generaltext color and font Pin
no_life5-Oct-03 12:51
no_life5-Oct-03 12:51 
GeneralRe: text color and font Pin
alex.barylski5-Oct-03 16:29
alex.barylski5-Oct-03 16:29 
GeneralRe: text color and font Pin
J. Dunlap5-Oct-03 16:32
J. Dunlap5-Oct-03 16:32 
GeneralRe: text color and font Pin
no_life6-Oct-03 17:11
no_life6-Oct-03 17:11 
GeneralRe: text color and font Pin
no_life7-Oct-03 8:55
no_life7-Oct-03 8:55 
GeneralRe: text color and font Pin
alex.barylski7-Oct-03 9:16
alex.barylski7-Oct-03 9:16 
GeneralRe: text color and font Pin
no_life7-Oct-03 20:03
no_life7-Oct-03 20:03 
GeneralMDI FormView Printing Pin
vancouver7775-Oct-03 11:55
vancouver7775-Oct-03 11:55 
GeneralIP/name conversion Pin
Kuniva5-Oct-03 10:36
Kuniva5-Oct-03 10:36 

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.