CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Location
    Mid-West
    Posts
    50

    Dynamically creating CEdit's in a Prop Page


    I need to dynamically create CEdit boxes in different Property Sheet. Any suggestions? i'm having a problem in figuring out which Cwd* to pass to the Create method of CEdit. Thanks


  2. #2
    Join Date
    May 1999
    Location
    Republic of Korea
    Posts
    74

    Re: Dynamically creating CEdit's in a Prop Page

    You can pass the pointer of the property page where the edit control will be created.

    By the way, if the number of your edit controls is not so variant, why not create the edit control
    at the dialog editor and simply hide it when it is not necessary. This can be another choice.




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