Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. question about dialog

question about dialog

Scheduled Pinned Locked Moved C / C++ / MFC
question
4 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    gucy
    wrote on last edited by
    #1

    i derived a dialog class named "CDlgBase" from CDialog,and then derived a dialog class named "CDlgLogon" from "CDlgBase". When i use the following to show CDlgLogon,the dialog showed on the screen is CDlgBase instead of CDlgLogon. What' wrong with the code? ..... CDlgLogon dlg; dlg.DoModal(); ..... gucy

    P 1 Reply Last reply
    0
    • G gucy

      i derived a dialog class named "CDlgBase" from CDialog,and then derived a dialog class named "CDlgLogon" from "CDlgBase". When i use the following to show CDlgLogon,the dialog showed on the screen is CDlgBase instead of CDlgLogon. What' wrong with the code? ..... CDlgLogon dlg; dlg.DoModal(); ..... gucy

      P Offline
      P Offline
      PJ Arends
      wrote on last edited by
      #2

      in the CDlgLogon class constructor, are you passing the dialog template ID to the CDlgBase class constructor so that it can pass it on to CDialog? I think not!

      CDlgBase::CDlgBase (UINT IDD, CWnd* pParent)
      : CDialog (IDD, pParent)
      {
      ...
      }
       
      CDlgLogon::CDlgLogon(CWnd* pParent)
      : CDlgBase(CDlgLogon::IDD, pParent)
      {
      ...
      }


      [

      ](http://www.canucks.com)Sonork 100.11743 Chicken Little "You're obviously a superstar." - Christian Graus about me - 12 Feb '03 Within you lies the power for good - Use it!

      G O 2 Replies Last reply
      0
      • P PJ Arends

        in the CDlgLogon class constructor, are you passing the dialog template ID to the CDlgBase class constructor so that it can pass it on to CDialog? I think not!

        CDlgBase::CDlgBase (UINT IDD, CWnd* pParent)
        : CDialog (IDD, pParent)
        {
        ...
        }
         
        CDlgLogon::CDlgLogon(CWnd* pParent)
        : CDlgBase(CDlgLogon::IDD, pParent)
        {
        ...
        }


        [

        ](http://www.canucks.com)Sonork 100.11743 Chicken Little "You're obviously a superstar." - Christian Graus about me - 12 Feb '03 Within you lies the power for good - Use it!

        G Offline
        G Offline
        gucy
        wrote on last edited by
        #3

        yes.i does not. and thanks a lot! gucy

        1 Reply Last reply
        0
        • P PJ Arends

          in the CDlgLogon class constructor, are you passing the dialog template ID to the CDlgBase class constructor so that it can pass it on to CDialog? I think not!

          CDlgBase::CDlgBase (UINT IDD, CWnd* pParent)
          : CDialog (IDD, pParent)
          {
          ...
          }
           
          CDlgLogon::CDlgLogon(CWnd* pParent)
          : CDlgBase(CDlgLogon::IDD, pParent)
          {
          ...
          }


          [

          ](http://www.canucks.com)Sonork 100.11743 Chicken Little "You're obviously a superstar." - Christian Graus about me - 12 Feb '03 Within you lies the power for good - Use it!

          O Offline
          O Offline
          Old Gun
          wrote on last edited by
          #4

          You are greate! This is commom error for beiginners

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups