hello sir, i want list all forms in current project. example listbox1.items.add(form1.name & form1.text)
i want load all form details in current project.
the following code give for only open forms.
For linti As Integer = Application.OpenForms.Count - 1 To 0 Step -1
Application.OpenForms.Item(linti).Text
Application.OpenForms.Item(linti).name
Next
i want all form and its text. what i do sir please help me