ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / CD and DVD burning functions
  • Required configuration
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns the status of the current burner. This burner can be selected by BurnerSelect.
Remark: To find out the list of burners available from the current computer, use BurnerList.
Example
// Find out the status of the burner
ResStatus is int
ResStatus = BurnerStatus()
// Status of burner
SWITCH ResStatus
// Burn process in progress
CASE burnerBurn
Info("Burn process in progress")
// Burner disabled
CASE burnerInactive
Info("The burner is inactive")
// Burner currently used
CASE burnerExclusivelyUsed
Info("The burner is currently used")
CASE burnerPrepareErasing
Info("Preparing to erase")
CASE burnerPrepareBurning
Info("Preparing to burn")
END
Syntax
<Result> = BurnerStatus()
<Result>: Integer constant
  • Current status of the burner:
    The burner can be in one of the following states:
    burnerBurnBurn process in progress
    burnerExclusivelyUsedBurner currently used by the current application or by another application
    burnerInactiveBurner disabled
    burnerPrepareBurningBurner being prepared to burn files
    burnerPrepareErasingBurner preparing to erase some files
  • -1 if an error occurred. To get more details on the error, use ErrorInfo with the errMessage constant.
Remarks

Required configuration

Component: wd290grv.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help