devxlogo

Run Time Object / Control Management

Run Time Object / Control Management

Question:
Can I write statements to add/delete the control objects like command buttonsat runtime like we do in java C++ ? Iam under the assumption that once we populate a form with controls we cannotdrop some of them alone. An alternative may be to set the visibility to false. But I don’t want to do that. Is there asolution? I am sick of the staticness of the forms in VB. I am a Java programmer learning VB.

Answer:
VB6 has a Controls collection to which you can add and delete controls during run time using the Add and Remove methods. The Add method has the following syntax: Form1.Add (ProgID, name, container)The Remove method can only be used on controls that were added with the Add method. I has the following syntax:

Form1.Controls.Remove controlname
See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist