[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.4

toolbar with combo box and splitter window

Asked by kenngan in Windows MFC Programming

Tags: create, toolbar, combo

1. How to make a tool bar with combo box like the one in MS word showing
500%
200%
100%
75%

2. How to make a splitter window that have 2 columns and the second column is split into 2 rows ? ie like following:
-------------------------------
|         |                          |
|         |                          |
|         |---------------------|
|         |                          |
|         |                          |
------------------------------

Pls help by giving detail procedure/function/coding to construct them.
Thanks very much.

I construct the splitter window as suggested by Migel : (Assertions occured:      ASSERT(row < m_nRows);)

BOOL CChildFrame::OnCreateClient( LPCREATESTRUCT /*lpcs*/,
      CCreateContext* pContext)
{
      // create splitter window
      if (!m_wndVSplitter.CreateStatic(this, 1, 2, WS_CHILD | WS_VISIBLE ,AFX_IDW_PANE_FIRST))
            return FALSE;

      if (!m_wndVSplitter.CreateView(0, 0, RUNTIME_CLASS(CLeftView), CSize(100, 700), pContext) ||
            !m_wndVSplitter.CreateView(0, 1, RUNTIME_CLASS(CAugView), CSize(600, 700), pContext))// ||
            //!m_wndVSplitter.CreateView(1, 1, RUNTIME_CLASS(CCustomerVw), CSize(300, 400), pContext))
      {
            m_wndVSplitter.DestroyWindow();
            return FALSE;
      }

      //, 2, 1, WS_CHILD | WS_VISIBLE, m_wndVertSplitter.IdFromRowCol(1,2));
      if (!m_wndHSplitter.CreateStatic(&m_wndVSplitter, 2, 1, WS_CHILD | WS_VISIBLE, m_wndVSplitter.IdFromRowCol(1,2))); //, 2, 1))
            return FALSE;

      if (!m_wndHSplitter.CreateView(0, 1, RUNTIME_CLASS(CAugView), CSize(600, 300), pContext) ||
            !m_wndHSplitter.CreateView(1, 1, RUNTIME_CLASS(CCustomerVw), CSize(600, 400), pContext))
            //!m_wndHSplitter.CreateView(0, 0, RUNTIME_CLASS(CLeftView), CSize(100, 700), pContext) ||
      {
            m_wndHSplitter.DestroyWindow();
            return FALSE;
      }

      return TRUE;
}

sri_darr's comment also cause other assertions eg.ASSERT(row >= 0 && row < m_nRows);
      ASSERT(col >= 0 && col < m_nCols); ....

What wrong with the codes?
Pls help
[+][-]08/15/00 08:38 AM, ID: 3934434Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/15/00 09:44 AM, ID: 3935964Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/16/00 12:27 AM, ID: 3945216Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/16/00 11:01 PM, ID: 3962831Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]08/17/00 12:08 AM, ID: 3963119Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/17/00 12:11 AM, ID: 3963128Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/17/00 12:22 AM, ID: 3963192Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/17/00 01:02 AM, ID: 3963475Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]08/17/00 03:32 AM, ID: 3965035Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/17/00 08:02 AM, ID: 3967921Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/17/00 08:04 AM, ID: 3967959Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: Windows MFC Programming
Tags: create, toolbar, combo
Sign Up Now!
Solution Provided By: migel
Participating Experts: 3
Solution Grade: B
 
[+][-]08/17/00 08:36 AM, ID: 3968603Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]08/17/00 11:00 PM, ID: 3977542Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]10/31/00 06:15 PM, ID: 5015423Administrative Comment

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091021-EE-VQP-81