G
Guest
Hi,
I'd like to create a component that has the ability to set the
"cmiNoHelpFiles" property of every component to "True". Does anyone know
where I can find out how to do this?
So far: I have an asp page with a button and button click handler. But I'm
missing the link on how to reference the configuration.
Alternatively I have a vbs file that is able to change the cmiNoHelpFiles
property of itself when I do a build (If only I could access the rest of the
configuration components):
Sub cmiOnBeginBuild(dwFlags)
Dim myInstances
Dim myInstance
Set myInstances = cmiThis.Configuration.Instances
For Each myInstance In myInstances
cmiThis.Properties("cmiNoHelpFiles").Value = 1
Next
End Sub
Motivation: TD has a global switch but I need to include some help files
which leaves me with the job of individually disabling help files for 99% of
components in my configuration.
Thanks.
I'd like to create a component that has the ability to set the
"cmiNoHelpFiles" property of every component to "True". Does anyone know
where I can find out how to do this?
So far: I have an asp page with a button and button click handler. But I'm
missing the link on how to reference the configuration.
Alternatively I have a vbs file that is able to change the cmiNoHelpFiles
property of itself when I do a build (If only I could access the rest of the
configuration components):
Sub cmiOnBeginBuild(dwFlags)
Dim myInstances
Dim myInstance
Set myInstances = cmiThis.Configuration.Instances
For Each myInstance In myInstances
cmiThis.Properties("cmiNoHelpFiles").Value = 1
Next
End Sub
Motivation: TD has a global switch but I need to include some help files
which leaves me with the job of individually disabling help files for 99% of
components in my configuration.
Thanks.