Click here to Skip to main content
Licence 
First Posted 6 May 2003
Views 163,462
Bookmarked 65 times

How to implement a scrollable child dialog

By | 11 May 2003 | Article
How to implement a scrollable child dialog

Sample Image - ScrollableChildDialog.jpg

Introduction

Many times it happened to me (and I hope to you too!) the need for a kind of child dialog, to use as a control inside a more bigger dialog or window or view etc. Filling this child dialog of controls is easy. Set the size of it to fit inside the parent window is not so easy. So, here is the scrollable child dialog, which i found veeeeery useful in my applications.

The code

The code is really simple and is strongly based on the MSDN article HOWTO: Create a Resizable Dialog Box with Scroll Bars (Q262954). I simply created the scrollable dialog template choosing the WS_CHILD and WS_VSCROLL styles and used class wizard to add WM_SIZE, WM_MOUSEWHEEL and WM_VSCROLL messages. To use the code in your project follow these steps:

  1. Add dlgscrollable.h and dlgscrollable.cpp to your project
  2. Create your own dialog resource template and replace the resource identifier in the header file
  3. In the parent window, add a member variable like CDlgScrollable* m_pdlgScrollable and in the OnInitDialog function, create the new CDlgScrollable object.
  4. In the parent dialog resource template, you can use a static as a placeholder to calc the rectangle of my scrollable child control.
  5. You can easily change the "hand" cursors, loading different resources as needed

It's obviously really simple add support for horizontal scroll, it's symmetric and I didn't really need that... :P

And so...

That's all! I'm sorry for my bad English (I'm Italian), this is my first article. Hope not my last one! Thanx to DD and GM for their suggestions and comments, this is the last version of the code, or at least the last version for the next two months! Have fun!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Massimiliano Conte

Software Developer (Senior)
Selex SI
Italy Italy

Member

Hi Smile | :)
I was born in 1970 (Augusta - Italy).
I live in Taranto - Italy.
I work in Taranto - Italy.
I like computer science!!!
That's all!

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralExplanation of some magic numbers PinmemberBati910:50 2 Dec '08  
GeneralRe: Explanation of some magic numbers PinmemberMassimiliano Conte20:57 2 Dec '08  
QuestionEvent handling in the parent Dialog? PinmemberSeife3:59 13 Sep '07  
Questionpb when using your code !!! [modified] Pinmemberaabdoos1:43 15 Dec '06  
QuestionIDC_PLACEHOLDER what's it? Pinmembertlbf2:16 10 Nov '06  
AnswerRe: IDC_PLACEHOLDER what's it? PinmemberJonathanLivingstone3:02 10 Nov '06  
You have to add an invisible static control in your "parent" dialog, a placeholder to calc the child size and position, then set the resource id of that control as IDC_PLACEHOLDER.
bye! Smile | :)
QuestionCenter dialog on startup? Pinmemberrturrentine6:03 25 May '05  
GeneralSome notes and adjustements PinmemberDavide Zaccanti20:32 27 Mar '05  
GeneralGreat but... Pinmemberpgiustinoni14:01 28 Feb '05  
GeneralResizing original dialog Pinmemberandrew_lowry3:50 15 Apr '04  
Generalfix for embedded visual c++ 4.0 PinmemberSpellcaster7:42 14 Mar '04  
QuestionHow can I implement this for a Dialog and not a for a child of a Dialog? PinmemberDanYELL7:54 8 Feb '04  
AnswerRe: How can I implement this for a Dialog and not a for a child of a Dialog? PinmemberJonathanLivingstone22:46 8 Feb '04  
QuestionHow can I get this to work with a CFormView? PinmemberDanYELL6:05 6 Feb '04  
GeneralTab Key and Scroll Dialog box PinsussAnonymous22:10 28 Jan '04  
Generalscrollbar position on start Pinmemberteamghost1:47 16 Oct '03  
Generalit helped me Pinmembersanskypotov0:01 3 Sep '03  
GeneralRe: it helped me PinmemberNiFF6:07 21 Jun '05  
GeneralExact same problem as Keith Pinmemberyklam5:00 15 Jul '03  
GeneralSolution Found Pinmemberyklam4:50 21 Jul '03  
QuestionHow to use this powerful class in embedded visual c++ 3.0? Pinmemberkeithse11:38 26 Jun '03  
AnswerRe: How to use this powerful class in embedded visual c++ 3.0? PinmemberKaiserle3:44 21 Jul '03  
GeneralMousewheel does not work. PinmemberBrian van der Beek5:08 22 May '03  
GeneralRe: Mousewheel does not work. PinmemberJonathanLivingstone1:40 23 May '03  
GeneralRe: Mousewheel does not work. Pinmembersonu_2241:50 13 Aug '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 12 May 2003
Article Copyright 2003 by Massimiliano Conte
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid