Search found 130 matches: startpage

Return to advanced search

Re: Possible to define a Submenu from METRO menu-button ?

The needed solution is not included in the sample < metrptst.prg > I found a solution, to create a new menu from a submenu-button ( NOT startpage ) and to change the buttonsize as well : http://www.pflegeplus.com/IMAGES/metro8.jpg called from submenu-button < Index > ...
by ukoenig
Thu Jun 04, 2015 2:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Possible another Submenu from METRO SUBmenu-button ?
Replies: 2
Views: 673

Re: How do I code this report ?

There is a clause ON STARTPAGE:

ACTIVATE REPORT oRpt ON STARTPAGE bStartpage...

James
by James Bott
Wed May 27, 2015 2:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I code this report ?
Replies: 7
Views: 996

CLASE TDOSPRN NO IMPRIME EN LPT1

... no me manda la impresión. Que podría ser? LOCAL oPrn IF !IsPrint("LPT1:") RETURN nil ENDIF oPrn := TDosPrn():New("LPT1") oPrn:StartPage() oPrn:say(10,10,"Prueba de Impresión") oPrn:EndPage() Asi es como lo uso pero no manda nada hacia la impresora nada.
by Yessica
Mon Feb 16, 2015 6:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CLASE TDOSPRN NO IMPRIME EN LPT1
Replies: 3
Views: 555

Re: fwh 14.2 print preview issue with win xp

... COLUMN TITLE " Salary" ; DATA Customer->Salary ; PICTURE "9,999,999" ; SIZE 9 ; TOTAL END REPORT ACTIVATE REPORT oReport ON STARTPAGE Tone( 100, 1 ) USE RETURN NIL
by davor0501
Fri Apr 18, 2014 6:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwh 14.2 print preview issue with win xp
Replies: 18
Views: 5016

Re: Añadir lineas en REPORT

... METHOD NewPageIfNeed( nRow )  INLINE  if(nRow >= ::nBottomRow, ::EndPage(), NIL)  por cierto, yo usaba tb EndPage() y StartPage() pero ::EndPage() hace eso y algo mas... Y como dice armando ".. la llama Después de imprimir, o antes si así lo prefieres, ..." ...
by RSalazarU
Thu Sep 12, 2013 5:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Añadir lineas en REPORT
Replies: 9
Views: 2329

Re: Añadir lineas en REPORT

... CkNewPage(oReport,nLinAdic) if (oReport:nRow() + (oReport:nStdLineHeight()*nLinAdic)) >= oReport:nBottomRow() oReport:EndPage() oReport:StartPage() endif return nil Saludos.
by FranciscoA
Thu Sep 12, 2013 3:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Añadir lineas en REPORT
Replies: 9
Views: 2329

Problema exportando a PDF desde Preview

... "Last"  DATA Customer->Last      COLUMN TITLE "State" DATA Customer->State   END REPORT   ACTIVATE REPORT oMiRep ON STARTPAGE ImprimePie (oMiRep,oMiFuente)   USE      RELEASE FONT oMiFuentereturn nilfunction ImprimePie (oMiRep,oMiFuente)Local nPosX1:=oMiRep:nLeftMargin,; ...
by AngelSalom
Tue Aug 27, 2013 7:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema exportando a PDF desde Preview
Replies: 21
Views: 6297

Re: Ayuda con TReport

Hola Yo para poder sacar en cada hoja los acumulados anteriores (totales de la pagina anterior), modifique el metodo startpage METHOD StartPage() CLASS TReport   Local cTotPag := ::cPageTotal    Local lFin    := ::lTotFin   STATIC lRunning := .F.   ::lTotFin := .f.   ::oDevice:StartPage()  ...
by cnavarro
Thu Jul 25, 2013 8:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con TReport
Replies: 5
Views: 636

Re: IMPRIMIR CODIGO BARRA TICKET EPSON

... PrueT88() Local nRow:=1, nCol:=0 MsgInfo('Verifique el Estado de la Impresora','!!! ATENCION !!!') oPrn:=TDosPrn():New("lpt1") oPrn:StartPage() // optional oPrn:Say( nRow, nCol, replicate('-',42) ) nRow ++ oPrn:Say( nRow, nCol , "COMIENZO DEL REPORTE" ) nRow ++ oPrn:Say( ...
by postinelli
Thu Jul 04, 2013 10:26 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMPRIMIR CODIGO BARRA TICKET EPSON
Replies: 6
Views: 1740

Re: IMPRIMIR CODIGO BARRA TICKET EPSON

... nRow, nCol, ' ' ) nRow ++ oPrn:Say( nRow, nCol, ' ' ) nRow ++ oPrn:Say( nRow, nCol, ' ' ) nRow ++ oPrn:Say( nRow, nCol, ' ' ) nRow ++ oprn:Startpage() oprn:command("27","64" ) oprn:command("27","105" ) oprn:Command("18" ) oprn:Endpage() ...
by postinelli
Wed Jul 03, 2013 7:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMPRIMIR CODIGO BARRA TICKET EPSON
Replies: 6
Views: 1740

Re: tdosprn a tprinter

Prueba asi imprimiendo USB
cFile :="LISTADO.PRN"
cPrinter := PrinterPortToName( "USB001" )
oPrin := TDosPrn():New(cFile)
oPrin:StartPage()
...
...
oPrin:EndPage()
oPrin:End()

PrintFileRaw( cPrinter, cFile, "Imprimiendo Listado" )
FERASE( cFile )

SAludos
by jbrita
Tue Feb 07, 2012 12:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: tdosprn a tprinter
Replies: 5
Views: 1084

Re: The temporal metafile could not be created

Normally happens when oPrinter:Startpage() is not paired correctly with oPrinter:EndPage().
by hua
Fri Jan 06, 2012 6:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: The temporal metafile could not be created
Replies: 3
Views: 578

Re: Problema Tprinter - Bitmap

... ... /*activa reporte*/ ACTIVATE REPORT oReporte; ON POSTEND oReporte:Say(1,"Registros procesados :"+str(oReporte:nCounter),3); ON STARTPAGE PrintLogo(oReporte) ... PROCEDURE PrintLogo(oReporte) LOCAL anC LOCAL oRep := oReporte:oDevice anC := oRep:CmRect2Pix( { 1.50, 1.00, 3.32, ...
by carlos vargas
Sun Aug 14, 2011 7:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema Tprinter - Bitmap
Replies: 3
Views: 620

Ayuda con impresion por TDosPrn

... mismo codigo lo usaba antes en FW23 y funcionaba muy bien... Gracias de antemano Saludos FOR X=1 TO NUM oPrn:=TDosPrn():New((aCONFIG[50])) oPrn:StartPage() IF aET[4] // SOLO CODIGO oPrn:Command("27,67,6","27,119,1") oPrn:SAY(3,1,PADC(ALLTRIM(INVENT->CODIGO1),25)) oPrn:Command("27,119,0") ...
by JoseGS
Fri Mar 25, 2011 11:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con impresion por TDosPrn
Replies: 2
Views: 711

Re: Printing a memo field

Harvey

oprn:startpage() and oprn:endpage() are missing

Hth

Richard
by Richard Chidiak
Fri Feb 18, 2011 5:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing a memo field
Replies: 4
Views: 709
PreviousNext

Return to advanced search