... pero ya he mirado en los foros ,etc.. y no acabo de verlo
gracias anticipadas
me respondo a mi mismo, encontré lo que quería
oReport:nTitleUpLine:= nil // no imprime línea antes de cabecera
oReport:nTitleDnLine:= RPT_SINGLELINE // improme una única línea después de cabecera, por defecto ...
Search found 16 matches: ntitleupline
Searched query: ntitleupline
- Sun Jul 10, 2016 5:41 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Como quitar lineas verticales en tReport
- Replies: 11
- Views: 2045
- Thu Feb 26, 2015 7:06 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Treport row titles
- Replies: 4
- Views: 911
Re: Treport row titles
... Card" DATA VP->V_CARD
COLUMN TITLE "Code" DATA VP->V_CODE
GROUP ON VP->V_ACCT
END REPORT
oReport:lSummary := .T.
oReport:nTitleUpLine := RPT_NOLINE
oReport:nTitleDnLine := RPT_SINGLELINE
oReport:aColumns[4]:bTitleFont := {|| 2 }
ACTIVATE REPORT oReport
CLOSE VP ...
COLUMN TITLE "Code" DATA VP->V_CODE
GROUP ON VP->V_ACCT
END REPORT
oReport:lSummary := .T.
oReport:nTitleUpLine := RPT_NOLINE
oReport:nTitleDnLine := RPT_SINGLELINE
oReport:aColumns[4]:bTitleFont := {|| 2 }
ACTIVATE REPORT oReport
CLOSE VP ...
- Thu Aug 18, 2011 3:15 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Treport bug ?
- Replies: 0
- Views: 442
Treport bug ?
... lGrid
::oReport:SetPenColor(::nColore) ------------> not run !!!!
::oReport:CellView()
::oReport:SetShdColor(CLR_GRAY)
ENDIF
::oReport:nTitleUpLine := RPT_SINGLELINE
::oReport:nTitleDnLine := RPT_SINGLELINE
::oReport:oTitle:aFont[2] := {|| 3 }
::oReport:oTitle:aFont[3] := {|| 2 ...
::oReport:SetPenColor(::nColore) ------------> not run !!!!
::oReport:CellView()
::oReport:SetShdColor(CLR_GRAY)
ENDIF
::oReport:nTitleUpLine := RPT_SINGLELINE
::oReport:nTitleDnLine := RPT_SINGLELINE
::oReport:oTitle:aFont[2] := {|| 3 }
::oReport:oTitle:aFont[3] := {|| 2 ...
- Thu Nov 25, 2010 1:14 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Detectar Cambio de Grupo
- Replies: 1
- Views: 643
Detectar Cambio de Grupo
... nombre');
Footer "Total Recadudado Por "+SubStr(oReport:aGroups[2]:cValue,11,30)
END REPORT
oReport:bSkip := {||oPagos:skip(1) }
oReport:nTitleUpLine := RPT_SINGLELINE
oReport:nTitleDnLine := RPT_SINGLELINE
oReport:nTotalline := RPT_NOLINE
oReport:nGroupLine := RPT_NOLINE
oReport ...
Footer "Total Recadudado Por "+SubStr(oReport:aGroups[2]:cValue,11,30)
END REPORT
oReport:bSkip := {||oPagos:skip(1) }
oReport:nTitleUpLine := RPT_SINGLELINE
oReport:nTitleDnLine := RPT_SINGLELINE
oReport:nTotalline := RPT_NOLINE
oReport:nGroupLine := RPT_NOLINE
oReport ...
- Tue Jun 08, 2010 6:19 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ERROR WITH REPORT when no Printers are instaled
- Replies: 1
- Views: 425
ERROR WITH REPORT when no Printers are instaled
Hi,
This is the error:
Descripcion del Error: Error BASE/1005 No existe la variable de instancia: NTITLEUPLINE
Args:
[ 1] = U
[ 2] = N 1
Stack Calls
===========
Called from: => _NTITLEUPLINE(0)
Called from: c:\misoft\PROGRAMAS\Tpv\ARTICULO.PRG => LISTARARTICULOS(1241)
Thanks
This is the error:
Descripcion del Error: Error BASE/1005 No existe la variable de instancia: NTITLEUPLINE
Args:
[ 1] = U
[ 2] = N 1
Stack Calls
===========
Called from: => _NTITLEUPLINE(0)
Called from: c:\misoft\PROGRAMAS\Tpv\ARTICULO.PRG => LISTARARTICULOS(1241)
Thanks
- Thu Jan 14, 2010 10:46 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Una de Report
- Replies: 3
- Views: 784
Una de Report
... COLUMN title "F.AGOTADO" data (xalias)->fechacad size 9
COLUMN title "OBSERVACIONES" data "" size 35
oList:nGroupLine := RPT_NOLINE
oList:nTitleUpLine := RPT_DOUBLELINE
oList:nTitleDnLine := RPT_DOUBLELINE
//oList:nTotalLine := RPT_SINGLELINE
END REPORT
oList:CellView()
ACTIVATE REPORT ...
COLUMN title "OBSERVACIONES" data "" size 35
oList:nGroupLine := RPT_NOLINE
oList:nTitleUpLine := RPT_DOUBLELINE
oList:nTitleDnLine := RPT_DOUBLELINE
//oList:nTotalLine := RPT_SINGLELINE
END REPORT
oList:CellView()
ACTIVATE REPORT ...
- Thu Oct 08, 2009 4:44 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Preview
- Replies: 2
- Views: 796
Re: Preview
... DATA ;
cBar[nField,2]+transform(aImp[nField],"999,999.99")," "
END REPORT
*/
oReport:bSkip := {|| nField++}
oReport:nTitleUpLine := RPT_NOLINE
oReport:nTitleDnLine := RPT_NOLINE
oReport:nTotalLine := RPT_NOLINE
oReport:Margin(1,RPT_LEFT,RPT_CMTERS) // Aqui no respeta el ...
cBar[nField,2]+transform(aImp[nField],"999,999.99")," "
END REPORT
*/
oReport:bSkip := {|| nField++}
oReport:nTitleUpLine := RPT_NOLINE
oReport:nTitleDnLine := RPT_NOLINE
oReport:nTotalLine := RPT_NOLINE
oReport:Margin(1,RPT_LEFT,RPT_CMTERS) // Aqui no respeta el ...
- Fri Jul 24, 2009 8:29 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Como mostrar un Archivo Texto Plano
- Replies: 18
- Views: 6674
Re: Como mostrar un Archivo Texto Plano
... New" SIZE 0,-10
REPORT oRep CAPTION "Listado de Litros de Petroleo Mensual.." PREVIEW FONT oFont
COLUMN DATA " " SIZE nWidth
END REPORT
oRep:nTitleUpLine:=RPT_NOLINE
oRep:nTitleDnLine:=RPT_NOLINE
oRep:Margin(.25,RPT_LEFT ,RPT_INCHES)
oRep:Margin(.10,RPT_RIGHT ,RPT_INCHES)
oRep:Margin(.30,RPT_TOP ...
REPORT oRep CAPTION "Listado de Litros de Petroleo Mensual.." PREVIEW FONT oFont
COLUMN DATA " " SIZE nWidth
END REPORT
oRep:nTitleUpLine:=RPT_NOLINE
oRep:nTitleDnLine:=RPT_NOLINE
oRep:Margin(.25,RPT_LEFT ,RPT_INCHES)
oRep:Margin(.10,RPT_RIGHT ,RPT_INCHES)
oRep:Margin(.30,RPT_TOP ...
- Mon May 11, 2009 2:10 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Problemas con report group y arrays
- Replies: 5
- Views: 1779
Re: Problemas con report group y arrays
... FONT 3
oReport:bSkip := {|| nField++}
oReport:cGrandTotal := "Total General "
oReport:cPageTotal := "Total Parcial Pagina: "
oReport:nTitleUpLine := RPT_SINGLELINE
oReport:nTitleDnLine := RPT_SINGLELINE
oReport:nGroupLine := RPT_NOLINE
END REPORT
ACTIVATE REPORT oReport WHILE ...
oReport:bSkip := {|| nField++}
oReport:cGrandTotal := "Total General "
oReport:cPageTotal := "Total Parcial Pagina: "
oReport:nTitleUpLine := RPT_SINGLELINE
oReport:nTitleDnLine := RPT_SINGLELINE
oReport:nGroupLine := RPT_NOLINE
END REPORT
ACTIVATE REPORT oReport WHILE ...
- Tue Dec 02, 2008 6:06 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Total en los grupos
- Replies: 3
- Views: 1365
Re: Total en los grupos
... aFont[1] := {|| 3 }
oReport:oTitle:aFont[2] := {|| 3 }
oReport:oTitle:aFont[3] := {|| 3 }
oReport:oTitle:aFont[4] := {|| 3 }
oReport:nTitleUpLine := RPT_SINGLELINE
oReport:nTitleDnLine := RPT_SINGLELINE
oReport:nTotalLine := RPT_SINGLELINE
//Solo imprimir el total de Pagina ...
oReport:oTitle:aFont[2] := {|| 3 }
oReport:oTitle:aFont[3] := {|| 3 }
oReport:oTitle:aFont[4] := {|| 3 }
oReport:nTitleUpLine := RPT_SINGLELINE
oReport:nTitleDnLine := RPT_SINGLELINE
oReport:nTotalLine := RPT_SINGLELINE
//Solo imprimir el total de Pagina ...
- Fri Jun 06, 2008 6:47 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Algun reporte ejemplo usando TReport con recordset y grupos?
- Replies: 5
- Views: 1169
- Sun Apr 27, 2008 10:45 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Ayuda!!! nesecito poner fotos en un reporte tReport :(
- Replies: 9
- Views: 4791
- Thu Jul 19, 2007 10:39 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Reportes con sombra y cajas
- Replies: 18
- Views: 6006
- Wed Oct 11, 2006 4:03 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Txbrowse Database handle
- Replies: 6
- Views: 2636
- Mon Oct 02, 2006 9:43 pm
- Forum: FiveWin para CA-Clipper
- Topic: Favor Ayuda oara Imprimir
- Replies: 0
- Views: 1096
Favor Ayuda oara Imprimir
... trim(a->nom_pac))," "," "," "," "," ";
FONT oFont;
PREVIEW
COLUMN DATA spac(6)+OemToAnsi(b->Cod_det) SIZE 71
END REPORT
oReport:nTitleUpLine := RPT_NOLINE
oReport:nTitleDnLine := RPT_NOLINE
oReport:Margin(.15,RPT_LEFT,RPT_INCHES)
oReport:Margin(.25,RPT_TOP,RPT_INCHES)
oReport ...
FONT oFont;
PREVIEW
COLUMN DATA spac(6)+OemToAnsi(b->Cod_det) SIZE 71
END REPORT
oReport:nTitleUpLine := RPT_NOLINE
oReport:nTitleDnLine := RPT_NOLINE
oReport:Margin(.15,RPT_LEFT,RPT_INCHES)
oReport:Margin(.25,RPT_TOP,RPT_INCHES)
oReport ...