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. disabling finish button on property sheet wizard

disabling finish button on property sheet wizard

Scheduled Pinned Locked Moved C / C++ / MFC
helpquestion
2 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.
  • S Offline
    S Offline
    si_69
    wrote on last edited by
    #1

    Hi Can anyone tell me how i can disable the finish button on a property sheet wizard ? on my property page i initally define the buttons like

    BOOL CPage::OnSetActive()
    {
    CWizard* pParent = (CWizard*)GetParent();
    ASSERT_KINDOF(CWizard, pParent);
    pParent->SetWizardButtons(PSWIZB_BACK | PSWIZB_FINISH);

    return CPropertyPage::OnSetActive();
    

    }

    I then want to disable the finish button until a certain task has completed i.e

    void CPage::OnBnClickedBstart()
    {
    GetDlgItem(ID_WIZFINISH)->EnableWindow(FALSE);
    DoSomething();
    GetDlgItem(ID_WIZFINISH)->EnableWindow(TRUE);

    }

    i have also tried adding

    CWnd *pWnd = GetDlgItem (ID_WIZFINISH);
    pWnd->EnableWindow(FALSE);

    but get the same problem Can anyone help at all thanks Simon

    _ 1 Reply Last reply
    0
    • S si_69

      Hi Can anyone tell me how i can disable the finish button on a property sheet wizard ? on my property page i initally define the buttons like

      BOOL CPage::OnSetActive()
      {
      CWizard* pParent = (CWizard*)GetParent();
      ASSERT_KINDOF(CWizard, pParent);
      pParent->SetWizardButtons(PSWIZB_BACK | PSWIZB_FINISH);

      return CPropertyPage::OnSetActive();
      

      }

      I then want to disable the finish button until a certain task has completed i.e

      void CPage::OnBnClickedBstart()
      {
      GetDlgItem(ID_WIZFINISH)->EnableWindow(FALSE);
      DoSomething();
      GetDlgItem(ID_WIZFINISH)->EnableWindow(TRUE);

      }

      i have also tried adding

      CWnd *pWnd = GetDlgItem (ID_WIZFINISH);
      pWnd->EnableWindow(FALSE);

      but get the same problem Can anyone help at all thanks Simon

      _ Offline
      _ Offline
      _AnsHUMAN_
      wrote on last edited by
      #2

      use in SetWizardButtons- PSWIZB_DISABLEDFINISH

      You need to google first, if you have "It's urgent please" mentioned in your question. ;-)_AnShUmAn_

      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