CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Property Sheets

  1. #1
    Join Date
    Apr 1999
    Posts
    1

    Property Sheets

    How do you delete the OK/CANCEL/APPLY Buttons in a modal property sheet?


  2. #2
    Join Date
    Apr 1999
    Posts
    11

    Re: Property Sheets

    Make it modeless!

    Actually you can use:
    GetDlgItem(IDOK)->ShowWindow(SW_HIDE);

    etc for IDCANCEL, ID_APPLY_NOW, and ID_HELP



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured