AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones de grabación de CD y DVD
BurnerList (Example)
The following example is used to display in a table the list of burners installed on the current computer.
// Find out the burners installed
ListBurner is string
ListBurner = BurnerList()
IF ListBurner ~= "" THEN
Error("No burner was detected on the computer")
RETURN
END
// Fill the table named 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
Versión mínima requerida
  • Versión 10
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/05/2022

Señalar un error o enviar una sugerencia | Ayuda local