Click here to Skip to main content
15,924,193 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to flash a message in MFC Pin
Hamid_RT28-Sep-06 2:35
Hamid_RT28-Sep-06 2:35 
AnswerRe: How to flash a message in MFC Pin
S Douglas30-Sep-06 22:29
professionalS Douglas30-Sep-06 22:29 
QuestionWindow resizing Pin
SKMukherjee28-Sep-06 0:48
SKMukherjee28-Sep-06 0:48 
AnswerRe: Window resizing Pin
Rajesh R Subramanian28-Sep-06 0:52
professionalRajesh R Subramanian28-Sep-06 0:52 
AnswerRe: Window resizing Pin
Christian Graus28-Sep-06 0:52
protectorChristian Graus28-Sep-06 0:52 
AnswerRe: Window resizing Pin
_AnsHUMAN_ 28-Sep-06 0:56
_AnsHUMAN_ 28-Sep-06 0:56 
GeneralRe: Window resizing Pin
SKMukherjee28-Sep-06 1:11
SKMukherjee28-Sep-06 1:11 
GeneralRe: Window resizing Pin
Parthi_Appu28-Sep-06 1:27
Parthi_Appu28-Sep-06 1:27 
SKMukherjee wrote:
i have to simulate a buton which can be moved as well as resizable.


Handle WM_SIZE message in your window, the handler function will have two int parameters which has the window width (cx) and window height (cy). Say you have control variable for your Button (like, m_myButton), use it to resize your button as,

m_myButton.MoveWindow(0, 0, cx, cy)

or

m_myButton.SetWindowPos(&wndTop, 0, 0, cx, cy, SWP_NOZORDER)

Hope this will help you...



Do your Duty and Don't expect the Result

AnswerRe: Window resizing Pin
David Crow28-Sep-06 3:01
David Crow28-Sep-06 3:01 
Questioncreating new window [modified] Pin
Anu_Bala28-Sep-06 0:24
Anu_Bala28-Sep-06 0:24 
AnswerRe: creating new window Pin
Hamid_RT28-Sep-06 2:49
Hamid_RT28-Sep-06 2:49 
QuestionButton wouldn't respond to SendMessage message Pin
ken11111127-Sep-06 23:21
ken11111127-Sep-06 23:21 
QuestionRe: Button wouldn't respond to SendMessage message Pin
David Crow28-Sep-06 3:08
David Crow28-Sep-06 3:08 
AnswerRe: Button wouldn't respond to SendMessage message Pin
ken11111128-Sep-06 15:03
ken11111128-Sep-06 15:03 
QuestionRegarding Call Stack Pin
janadhana27-Sep-06 22:47
janadhana27-Sep-06 22:47 
AnswerRe: Regarding Call Stack Pin
Christian Graus28-Sep-06 0:17
protectorChristian Graus28-Sep-06 0:17 
GeneralRe: Regarding Call Stack Pin
nutkase28-Sep-06 0:44
nutkase28-Sep-06 0:44 
GeneralRe: Regarding Call Stack Pin
Christian Graus28-Sep-06 0:50
protectorChristian Graus28-Sep-06 0:50 
GeneralRe: Regarding Call Stack Pin
nutkase28-Sep-06 1:13
nutkase28-Sep-06 1:13 
GeneralRe: Regarding Call Stack Pin
Stephen Hewitt28-Sep-06 13:23
Stephen Hewitt28-Sep-06 13:23 
QuestionTreeView Pin
zizzzz27-Sep-06 22:27
zizzzz27-Sep-06 22:27 
AnswerRe: TreeView Pin
Waldermort27-Sep-06 23:07
Waldermort27-Sep-06 23:07 
AnswerRe: TreeView Pin
Hamid_RT29-Sep-06 8:23
Hamid_RT29-Sep-06 8:23 
GeneralRe: TreeView Pin
zizzzz29-Sep-06 22:01
zizzzz29-Sep-06 22:01 
GeneralRe: TreeView Pin
Hamid_RT30-Sep-06 4:56
Hamid_RT30-Sep-06 4:56 

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.