ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / CD and DVD burning functions
  • Presence of a CD/DVD in the burner
  • 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
BurnerVolumeName (Function)
In french: GraveurNomVolume
Used to find out or modify the name of the CD or DVD to burn.
Remark: This function must be called before adding files into the compilation (BurnerAddFile or BurnerAddDirectory). Otherwise, the name of the CD will be ignored.
Example
// Name of CD
ResName is int = BurnerVolumeName("My CD")
// Error occurred?
IF ResName = False THEN
// Display the error
Error(ErrorInfo(errMessage))
ELSE
// Add the files
BurnerAddDirectory("C:\MyMusic\*.WAV")
...
END
Syntax

Finding out the name of the CD or DVD to burn Hide the details

<Result> = BurnerVolumeName()
<Result>: Character string
Name of the CD or DVD to burn.

Modifying the name of the CD or DVD to burn Hide the details

<Result> = BurnerVolumeName(<Name of CD or DVD>)
<Result>: Integer
  • True if the name of the CD or DVD was taken into account,
  • False otherwise.
<Name of CD or DVD>: Character string
Name that must be given to the CD or DVD to burn. This name will be displayed in the file picker to identify the CD or the DVD.
Remarks
WINDEVWEBDEV - Server codeReports and QueriesUser code (UMC)

Presence of a CD/DVD in the burner

To find out the name of a volume, a CD or DVD must be found in the burner. To modify the name of the volume, the CD/DVD inserted into the burner must have enough space to burn a new session.

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