I'm trying to build a 3-tier template-project. In this template-project each user will be able to customize their environment. The admin specifies the default UI and the users can customize it.
Problem is, whenever we add a new form in this project, we'll need to change our UI customizer code.
For example, a user may have the option to set 'Starup Form' by a SetStartupForm() method. When we add a new form in our project, we'll need to add the form's name in that method.
Q. Is there any way to get name of ALL forms (loaded or unloaded) in a project ? I'm looking for something like:
VB Code:
Dim f As Form For Each f In Project1.AllForms 'list of ALL forms cboStartupForm.AddItem f.Name Next
(They couldn't resolve it in CodeGuru. I have exactly same question. I hope someone can show me the correct path.
)
(related thread)
.





Reply With Quote