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 path 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 burners installed
ListBurner is string
ListBurner = BurnerList()
IF ListBurner ~= "" THEN
Error("No burner was detected on the computer")
RETURN
END
// Fill TABLE_BurnerTable with the list of burners
ABurner is string
PathOfBurner is string
 
FOR EACH STRING ABurner OF ListBurner SEPARATED BY CR
// Select the burner
IF BurnerSelect(ExtractString(ABurner, 1)) = False THEN
Error("Failure selecting the burner", ErrorInfo())
RETURN
END
// Path of current burner
PathOfBurner = BurnerPath()
// Add into the table
TableAddLine(TABLE_BurnerTable, PathOfBurner, ABurner)
END
Syntax
<Result> = BurnerPath()
<Result>: Character string
  • Path of current burner.
    This path always ends with a backslash character ("\").
  • Empty string ("") if an error occurred. To get more details on the error, use ErrorInfo.
WEBDEV - Server code This burner is found on the Web server.
Remarks

Required configuration

WINDEV Burning CDs is available for Windows XP and later. Burning DVDs is available for Windows Vista and for Windows XP when using the KB932716 update for Windows XP (this update must be downloaded from the Microsoft site and installed manually because it is not taken into account by the Live Update mechanism).
WEBDEV - Server code The CDs and the DVDs will be burned on the Web server. To burn CDs or DVDs, the server must be running Windows XP or later. To burn CDs in Windows 2003 Server, the IMAPI burn service (named "IMAPI CD-burning COM service") must be enabled. To burn DVDs in Windows 2003 Server, you also have to install the KB932716 update.
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