CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Sep 1999
    Location
    LA, USA
    Posts
    23

    How to agg ontrols to PictureBox control

    I wwould just like to know how to add another control like a label, or check box or another pictureBox to a pictureBox control and how to make them visible.

    -Shalini


  2. #2
    Join Date
    Jul 1999
    Posts
    35

    Re: How to agg ontrols to PictureBox control

    Just add them like usual click on any control u like and click ontop of the picturebox


  3. #3
    Guest

    Re: How to agg ontrols to PictureBox control

    If you want to do this during run time, take the control you want to add to a picture box and set the Container property of the control with the picturebox.

    Set Label1.Container = Picture1

    Jagannadha Sarma


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