Results 1 to 3 of 3

Thread: picturebox container object control at the runtime

  1. #1

    Thread Starter
    Member sasikumar1's Avatar
    Join Date
    Nov 2006
    Posts
    56

    Angry picturebox container object control at the runtime

    Dear expert

    Can you give me suggession for my project

    I have to attached my request pls

    Best regards
    P.SASIKUMAR
    Attached Images Attached Images  

  2. #2
    Lively Member djklocek's Avatar
    Join Date
    Aug 2006
    Posts
    107

    Re: picturebox container object control at the runtime

    VB Code:
    1. Controls - How to create controls at run time
    2.  
    3. 'Suppose you created Text(0) at design time.
    4. Load Text1(1)
    5.  
    6. ' Move the new control where you need it, and resize it.
    7. Text1(1).Move 1200, 2000, 800, 350
    8.  
    9. 'Set other properties as required.
    10. Text1(1).MaxLength = 10
    11.  
    12. 'Finally make it visible.
    13. Text1(1).Visible = True
    14.  
    15. 'You can remove controls from a control array using the Unload command, as in
    16. 'the following line of code:
    17.  
    18. Unload Text1(1)

  3. #3

    Thread Starter
    Member sasikumar1's Avatar
    Join Date
    Nov 2006
    Posts
    56

    Re: picturebox container object control at the runtime

    ohw

    my request as picturebox inside there pls understand my problem/

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