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

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