Alguien tuvo problemas desde Windows 7 con esta sentencia
Code: Select all
oPrn:=PrintBegin(NomArc,.f., ,"PDFCreator",.T.)
gracias
Daivd
Code: Select all
oPrn:=PrintBegin(NomArc,.f., ,"PDFCreator",.T.)
Code: Select all
function SetPrintDefault( cModel )
local cDriver := StrToken( GetProfString( "Devices", cModel, "" ), 1, "," )
local cPort := StrToken( GetProfString( "Devices", cModel, "" ), 2, "," )
WriteProfString( "Windows", "Device", cModel + "," + cDriver + "," + cPort )
return nil
A mí me funciona bien en Windows 7. ¿No será que tiene incompleta la orden? ¿Porque tienes vacio el tercer parámetro?davidObarrio wrote: Alguien tuvo problemas desde Windows 7 con esta sentenciaCode: Select all
oPrn:=PrintBegin(NomArc,.f., ,"PDFCreator",.T.)
Code: Select all
SetPrintDefault( "PDFCreator" )