ActiveModule Property

The ActiveModule property returns the name of the active ALM module. The following values can be returned:

  • Releases
  • Libraries
  • Analysis
  • Dashboard
  • Requirements
  • Business Models
  • Test Resources
  • Business Components
  • Test Plan
  • Test Lab
  • Test Runs
  • Defects

Example: To open a message box displaying the module name when you move to a new module, use the following code:

Sub EnterModule
        On Error Resume Next
        msgbox "You have just entered the " & ActiveModule & _
	 " module."
        On Error GoTo 0
End Sub