ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / CD and DVD burning functions
  • Compilation
  • 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
BurnerCancel (Function)
In french: GraveurAnnuleGravure
Cancels the current burn process. This burn process was started by BurnerSave.
Remark: When canceling the burn process, the current compilation is automatically deleted .
Example
// Burn the CD
BurnerSave()
...
// Cancel the current burn process
ResCancel is boolean
ResCancel = BurnerCancel()
// Request for cancelation taken into account?
IF ResCancel = True THEN
// Status of burner
IF BurnerStatus() = burnerInactive THEN
Info("The burn process was canceled")
ELSE
Info("The cancelation request was taken into account but it was not performed yet")
END
ELSE
// Error details
Error(ErrorInfo(errMessage))
END
Syntax
<Result> = BurnerCancel()
<Result>: Boolean
  • True if the request for canceling the burn process was taken into account. To find out whether the cancelation was actually performed, use BurnerStatus.
  • False otherwise. To get more details on the error, use ErrorInfo.
Remarks

Compilation

A compilation corresponds to the set of files that must be burned on a CD or DVD. This compilation will be taken into account next time BurnerSave is called.
A compilation is automatically created during the first call to BurnerAddFile or to BurnerAddDirectory. A single compilation can be created at a time.
A compilation is automatically deleted:
  • when changing the type of CD/DVD to burn (BurnerMediaType).
  • when selecting the default burner (BurnerSelect).
  • after the call to BurnerSave (only if the burn process was started, <Result> is set to True).
  • when canceling the burn process (BurnerCancel).
  • when closing the current WINDEV application or WEBDEV site.

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