Jump to content
Fivewin Brasil

startar o numero da pagina no Fast Report


marcioe

Recommended Posts

Olá aos Amigos

PRECISO IMPRIMIR EM FAST, POREM A numeração da pagina, precisa inciar com um X mumero
eXEMPLO
Preciso Emitir um Livro Caixa
mes 01 teve 10 folhas
mes 02 teve 20 folhas
quando for fazer o mes 03 eu Informo o numero da primeira pagina sacou 30 ai ele imprime 30, 31, 32,33,34, etc.. até terminar o mes
O padrão dele é Iniciar com 01
Link to comment
Share on other sites

Talvez um destes comandos resolva:



NewReport(cPageName)
AddPage(cPageName)
AddBand(cBandName, cParentPage, nBandType) //look FastRepH.ch for band-types
AddGlobalDsToReport(cDataSetName)
GetGlobalDSList()
AddMemo(cParent, cName, cStr, nLeft, nTop, nWidth, nHeight)
AddLine(cParent, cName, nLeft, nTop, nWidth, nHeight)
AddPicture(cParent, cName, cFileName, nLeft, nTop, nWidth, nHeight)
* example of using:
FrPrn:NewReport("MyPage")
FrPrn:AddPage("MyPage2")
FrPrn:AddBand("MyTittle", "MyPage", frxReportTitle)
FrPrn:AddBand("MyData", "MyPage", frxMasterData)
FrPrn:AddBand("MyFooter", "MyPage", frxPageFooter)
FrPrn:AddGlobalDsToReport("Customers")
FrPrn:SetObjProperty("MyData", "DataSet", "Customers")
FrPrn:SetProperty("MyPage", "TopMargin", 5)
FrPrn:AddMemo("MyData", "MyMemo", '[Customers."Company"]', 30, 0, 200, 24)
FrPrn:AddLine("MyTittle", "MyLINE", 30, 0, 200, 24)
FrPrn:ShowReport()


abs

Link to comment
Share on other sites

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...