Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a GUi, written in C++/CLI . I want one specific window of it to open on a specific position (right top corner) of my display.
How can I implement this?

share|improve this question
Which API? WPF, Windows Forms, straight up Win32 API? Do you have any code you can show? Have you tried anything? If yes, what problems did you encounter? These are all things you should consider before posting a question, if you expect a useful answer. – irobot May 8 '12 at 8:35

2 Answers

up vote 1 down vote accepted
BOOL WINAPI SetWindowPos(
  __in      HWND hWnd,
  __in_opt  HWND hWndInsertAfter,
  __in      int X,
  __in      int Y,
  __in      int cx,
  __in      int cy,
  __in      UINT uFlags
);

More info on msdn.

share|improve this answer

http://www.winprog.org/tutorial/ -- That will teach you how to make a GUI for Windows only in window's native GUI implement (API). To implement your code you need to respond to a user's action, i.e clicks a button then do i = 1+1;

share|improve this answer
i know and this wasn't the question ;) – Nicky May 8 '12 at 19:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.