devxlogo

Loading Dynamic Forms

Loading Dynamic Forms

Question:
I have a menu system that loads the name of a form into the appropriate menu item. How would you load the form from that item, considering that when I click the the menu item I don’t know what the form is.

Answer:
If you know the name of the form and you are using VB 6.0, then you can use the Forms.Add method. You can pass the name of the form to this method and it will load the form. Something like the following:

Private Sub Command1_Click()    Dim objForm As Form        Set objForm = Forms.Add("Form2")        objForm.ShowEnd Sub

If you are not using VB 6.0, or you don’t know the name of the form, you would have to use a long SELECT CASE to figure out which form to show. Something like the following:

Private Sub ShowForms(FormKey as String)  Dim objForm as Form  Select Case FormKey    Case "FirstForm"      Set objForm = New Form1    Case "SecondForm"      Set objForm = New Form2  End Select  objForm.ShowEnd Sub
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