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 list of burners installed on the current computer.
Remarks:
  • BurnerSelect is used to select the default burner.
  • BurnerPath is used to find out the drive associated with the current burner.
// Find out the burners installed
ListBurner is string
ListBurner = BurnerList()
IF ListBurner ~= "" THEN
Error("No burner was detected on the computer")
RETURN
END
// To view the entire example, click the "Examples" link
Syntax
<Result> = BurnerList([<Details>])
<Result>: Character string
List of burners installed on the current computer, in the following format:
  • detailed list (if the <Details> parameter corresponds to True):
    <Identifier of Burner 1> + TAB + <Make of Burner 1> + TAB +
    <Model of Burner 1> + TAB + <Firmware of Burner 1> + CR + ...
    <Identifier of Burner N> + TAB + <Make of Burner N> + TAB +
    <Model of Burner N> + TAB + <Firmware of Burner N>
  • non-detailed list (if the <Details> parameter corresponds to False):
    <Identifier of Burner 1> + CR + ... + <Identifier of Burner N>
Where:
  • <Identifier of Burner 1> ... <Identifier of Burner N> correspond to the identifiers of the burners.
  • <Make of Burner 1> ... <Make of Burner N> correspond to the make of the burners.
  • <Model of Burner 1> ... <Model of Burner N> correspond to the model of the burners.
  • <Firmware of Burner 1> ... <Firmware of Burner N> correspond to the "firmware" of the burners.
<Details>: Optional boolean
  • True to list the detailed information about the burners,
  • False (by default) to list the identifiers of the burners.
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