Search found 1176 matches: oprn

Return to advanced search

Re: PDF distorcionado con Tprinter en Matricial

Buenos días

Gracias por la respuesta Mr. Rao disculpe el desconicimiento pero no entiendo

defino asi
PRINT oPrn FILE cNombrePdf PREVIEW

oPrn:CmSay( nFila, nColumDere,'AMBIENTE : '+cAmbiente , oFont1 )


Muchas gracias
by EASYSOFT
Sat Mar 23, 2024 2:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PDF distorcionado con Tprinter en Matricial
Replies: 6
Views: 125

Re: Comportamiento extraño PRINT oPrn FILE "factura.pdf"

Gracias karinha

Veo qu esta disponible apartir de la version de FWH1909, toca actualizar mi version es fwh1905.
by Adolfredo Martinez
Sat Feb 17, 2024 11:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Comportamiento extraño PRINT oPrn FILE "factura.pdf"
Replies: 7
Views: 726

Re: Comportamiento extraño PRINT oPrn FILE "factura.pdf"

Asi se ven en la carpeta:
Image

Las que pesan 2kb estan vacias.
by Adolfredo Martinez
Sat Feb 17, 2024 5:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Comportamiento extraño PRINT oPrn FILE "factura.pdf"
Replies: 7
Views: 726

Re: Comportamiento extraño PRINT oPrn FILE "factura.pdf"

Hola amigos. Leandro Como resolviste el problemas donde unos pdf se generan bien y otros se genera en blanco con un peso de 2kb. Cuando las genero de uno en uno me lo genera bien, pero cuando mando generar, diez facturas, me genera algunas en blanco. Son aproximandamente que tengo que generar unas 1...
by Adolfredo Martinez
Sat Feb 17, 2024 5:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Comportamiento extraño PRINT oPrn FILE "factura.pdf"
Replies: 7
Views: 726

Re: Problem with FiveWin and PDF995 on Windows 11.

... true until it is set back to false, or do you need to set it everytime. Why does it not get set back to false when you initiate the "Print oPrn..." command? Byron ... lUseHaruPDF is a CLASSDATA that is similar to a STATIC variable. You can access it through the class itself, while ...
by Enrico Maria Giordano
Wed Feb 14, 2024 8:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 987

Re: Problem with FiveWin and PDF995 on Windows 11.

... true until it is set back to false, or do you need to set it everytime. Why does it not get set back to false when you initiate the "Print oPrn..." command? Byron ...
by byron.hopp
Wed Feb 14, 2024 7:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 987

Re: Problem with FiveWin and PDF995 on Windows 11.

I have been testing with the following code: Function TestHaru() Local oPrn := nil Local oFont := nil Local cFile := Mcs_AppPath() + "TestPdf" + nAllTrim( Seconds()) + ".Pdf" Print oPrn File cFile Define Font oFont Name "Arial" ...
by byron.hopp
Tue Feb 13, 2024 10:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 987

Re: Problem with FiveWin and PDF995 on Windows 11.

I have tried a couple of ways, one: Print oPrn Name cReport File cFile to cPrinter oPrn:lUseHaruPDF := .t. Creates a perfectly great PDF, but during the process it pops up the preview screen and immediately takes it down. Can I eliminate the popup ...
by byron.hopp
Tue Feb 13, 2024 8:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FiveWin and PDF995 on Windows 11.
Replies: 29
Views: 987

Border with fwbarcode

How create a border on barcode ?

@ x, y PRINT TO oPrn TEXT ctext AS BARCODE TYPE cBarcode ;
SIZE nlarghezza-nColonna, nAltezza CM BARSIZE nlarghezza ;
COLOR CLR_BLACK,nBackcolor
by Silvio.Falconi
Tue Jan 16, 2024 9:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Border with fwbarcode
Replies: 0
Views: 599

Re: nYoffset and nXoffset

TRy this if you make aOffset = PrnOffset( oPrn ) xbrowser aOffset and then ? oPrn:nYoffset,oPrn:nXoffset give you different values here aOffset = PrnOffset( oPrn ) give me 0,0 oPrn:nYoffset,oPrn:nXoffset give me 94,94 on class Tprinter the offset ...
by Silvio.Falconi
Mon Jan 15, 2024 10:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 744

Re: nYoffset and nXoffset

... nBottom, nRight, oPen ) INLINE ; Rectangle( ::hDCOut, nRow, nCol, nBottom, nRight,; If( oPen != nil, oPen:hPen, 0 ) ) it's not the problem of oPrn:Box, but I think you have an old version of Tprinter ( printer.prg) , so now the Box method of Tprinter is METHOD Box( nTop, nLeft, nBottom, ...
by Silvio.Falconi
Mon Jan 15, 2024 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 744

Re: nYoffset and nXoffset

... is different https://i.postimg.cc/7YLMgQNy/bb.png this is the test #include "fivewin.ch"Function test()local oPrnlocal cDescRep := "Trying xoffset and yOffset"local aPrn := GetPrinters()//-------------------------------------------------------//local ...
by Silvio.Falconi
Mon Jan 15, 2024 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 744

Re: nYoffset and nXoffset

... directly in the code. Pix2Inch - Uses nXoffset and nYoffset in the comment, but not directly in the code. // Set the X and Y offsets for printing oPrn:nXoffset := 10; // Set X offset to 10 units oPrn:nYoffset := 20; // Set Y offset to 20 units // Now, when you print something, it will start from ...
by Silvio.Falconi
Mon Jan 15, 2024 7:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 744

Re: nYoffset and nXoffset

... directly in the code. Pix2Inch - Uses nXoffset and nYoffset in the comment, but not directly in the code. // Set the X and Y offsets for printing oPrn:nXoffset := 10; // Set X offset to 10 units oPrn:nYoffset := 20; // Set Y offset to 20 units // Now, when you print something, it will start from ...
by Otto
Sun Jan 14, 2024 11:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 744
Next

Return to advanced search