Copyright © 2001-2019 MultiMedia Soft

EnableCdMonitor method

Previous pageReturn to chapter overviewNext page

Remarks

 

Enables/disables monitoring the status of the available CD drives.

 

Certain type of CD drives, with old software drivers, will become inaccessible while the CD drives monitoring is running so be careful in enabling CD monitoring if not strictly needed.

 

 

Syntax

 

[Visual Basic]

control.EnableCdMonitor (

bEnable as enumBoolean)

)


 

[C++]

void control.EnableCdMonitor (

BOOL bEnable

);


 

 

Parameter

Description

 

 

bEnable

Boolean value that specifies if the control must automatically monitor the status of the available CD drives.

Supported values are the following:

Mnemonic constant

Value

Meaning

FALSE (default)

0

Available CD drives won't be monitored. In this condition the GetCdStatus method will not work and the CdPlayerStatusChanged event will not be fired.

TRUE

1

CD drives will be monitored.

 

Return value

 

None