CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Jun 2007
    Posts
    90

    How to resize the dialog box

    Hi,
    Dialog box looks fine in all OSs except "Vista".How can i resize the dialog box?/..


    Thanks

  2. #2
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: How to resize the dialog box

    See MoveWindow() or SetWindowPos().

    You should however give more details about what's not "fine".
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

  3. #3
    Join Date
    Jun 2007
    Posts
    90

    Re: How to resize the dialog box

    One of the buttons present in the tool bar is not visible completely.

  4. #4
    Join Date
    Feb 2007
    Posts
    119

    Re: How to resize the dialog box


  5. #5
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,430

    Re: How to resize the dialog box

    Quote Originally Posted by rag84dec
    One of the buttons present in the tool bar is not visible completely.
    Well, dialog App is NOT the best one to handle tool-/statusbars and menus. I think that SDI with CFormView derived class is what you need to not have any problems with the toolbar buttons on any platform.
    See also this FAQ
    Victor Nijegorodov

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