Click or drag to resize

IMcEngineReportLicensesInUse Method

Output the licenses this McEngine acquired since its instantiation.

Namespace:  MediaCy.IQL.Engine
Assembly:  MediaCy.IQL.Engine (in MediaCy.IQL.Engine.dll) Version: 10.0.6912.0
Syntax
VB
Sub ReportLicensesInUse ( 
	Optional ReportFileSpec As String = "",
	Optional bOpenInNotepad As Boolean = true
)

Parameters

ReportFileSpec (Optional)
Type: SystemString
If given, this parameter specifies the name of the text file that will contain the licenses acquired by this McEngine. If not specified, a temporary file will be created to hold the information. This temporary file is cleaned up when its associated Notepad instance (see bOpenInNotepad parameter) closes.
bOpenInNotepad (Optional)
Type: SystemBoolean
If given and TRUE, the text file generated, even if temporary, is opened in Notepad for viewing.
Remarks
Licenses and features are listed in the output. For example, IQS is a license and Engine.1.0 is a feature. Licenses that are acquired but returned are still listed in the output (e.g. A database seat, Client.1.0 falls in this category)
Examples
VB
Dim E As McEngine
Set E = New McEngine
E.ReportLicensesInUse
See Also