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

Thread: Property Sheet

  1. #1
    Join Date
    Apr 1999
    Posts
    4

    Property Sheet

    Hello there. I have a question on Property Pages. I have created a few property pages but however I am having a problem with the width of the tab labels on top. I would like to make the width smaller, since labels are in the range of 5-8 letters but I am not certain if there is a memeber property that will do this and how I can do it for all the pages. I would appreciate any help on the above issue if possible. Thanks once again.


  2. #2
    Join Date
    Apr 1999
    Posts
    52

    Re: Property Sheet

    MFC hard codes the minimum width. Get a pointer to your CTabCtrl and reset it with

    pTab->SendMessage(TCM_SETMINTABWIDTH,0,nMinWidth);



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