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
Reports and Queries

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

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