Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Home Page (Objects) | Overview | FAQ | Reference
Applies to: BuildProject object
Adds a configuration to the project.
Syntax
object**.AddConfiguration**name
Parameters
object
An expression that evaluates to a BuildProject object.
name
A String that contains the name of the new configuration.
Example
The following example adds a configuration to a project:
Sub AddMyFile
If Projects(1).Type = "Build" Then
Projects(1).AddConfiguration "Profile"
End If
End Sub