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. Property Sheet Wizard

Property Sheet Wizard

Scheduled Pinned Locked Moved C / C++ / MFC
c++helptutorial
5 Posts 2 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.
  • A Offline
    A Offline
    ashwath2005
    wrote on last edited by
    #1

    hi all, I have created a property sheet wizard using the below procedures: Projects >> Add to Project >> Components & Controls Select the Directory Visual C++ Components Select the Property Sheet Component Click the Insert Button. Problem is that wizard is displaying a "help" button which i want to make invisible.Can anyone kindly tell me how to make the help button invisible.

    N 1 Reply Last reply
    0
    • A ashwath2005

      hi all, I have created a property sheet wizard using the below procedures: Projects >> Add to Project >> Components & Controls Select the Directory Visual C++ Components Select the Property Sheet Component Click the Insert Button. Problem is that wizard is displaying a "help" button which i want to make invisible.Can anyone kindly tell me how to make the help button invisible.

      N Offline
      N Offline
      Naveen
      wrote on last edited by
      #2

      befor u call the AddPage() funtion, do as below m_Page1.m_psp.dwFlags &= ~PSP_HASHELP; AddPage(&m_Page1);

      nave

      A 1 Reply Last reply
      0
      • N Naveen

        befor u call the AddPage() funtion, do as below m_Page1.m_psp.dwFlags &= ~PSP_HASHELP; AddPage(&m_Page1);

        nave

        A Offline
        A Offline
        ashwath2005
        wrote on last edited by
        #3

        Hi, I have done that then also it is displaying HELP button.

        N 1 Reply Last reply
        0
        • A ashwath2005

          Hi, I have done that then also it is displaying HELP button.

          N Offline
          N Offline
          Naveen
          wrote on last edited by
          #4

          well in that case, on the OnInitDialog of the CPropertySheet derived class, call the following code CWnd *p = GetDlgItem( IDHELP ); if( p != 0 ) { p->ShowWindow( SW_HIDE ); }

          nave

          A 1 Reply Last reply
          0
          • N Naveen

            well in that case, on the OnInitDialog of the CPropertySheet derived class, call the following code CWnd *p = GetDlgItem( IDHELP ); if( p != 0 ) { p->ShowWindow( SW_HIDE ); }

            nave

            A Offline
            A Offline
            ashwath2005
            wrote on last edited by
            #5

            hi, Thanks very much.It worked.

            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