Jump to content
Fivewin Brasil

Spirin Sergey

Membros
  • Posts

    105
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Spirin Sergey's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Firstly, multiple reports/previews example: FrPrn:SetWorkArea("Customers", 1) FrPrn:LoadFromFile(RepDir + "1.fr3") Return Nil Function Load2 FrPrn:SetWorkArea("Customers", 1) FrPrn:LoadFromFile(RepDir + "2gr.fr3") Return Nil Function ModalReport() FrPrn:SelectReport(0) Load1() FrPrn:ShowReport() Return Nil Function NotModalReports() FrPrn:AddReport() Load1() FrPrn:PreviewOptions:SetMaximized(.f.) FrPrn:PreviewOptions:SetBounds(120, 120, 800, 600) FrPrn:PreviewOptions:SetModal(.f.) FrPrn:ShowReport() FrPrn:AddReport() Load2() FrPrn:PreviewOptions:SetMaximized(.f.) FrPrn:PreviewOptions:SetBounds(220, 160, 800, 600) FrPrn:PreviewOptions:SetModal(.f.) FrPrn:ShowReport() Return Nil Function ClearReports() FrPrn:ClearReports() Return Nil id=code>id=code>Secondly, ATTENTION! FrPrn:ShowReport() - asynchronous function! So, wrong: oFrPrn:PreviewOptions:SetModal(.F.) oFrPrn:ShowReport() IF SELECT("bancos") != 0 bancos->(DbCloseArea()) <<-- CAN BE CRASH!! Because Report can use db still... ENDIF id=code>id=code>Good way: oFrPrn:PreviewOptions:SetModal(.F.) oFrPrn:PreparedReport() <<-- Report has finished use db oFrPrn:ShowPreparedReport() IF SELECT("bancos") != 0 bancos->(DbCloseArea()) ENDIF id=code>id=code>
  2. Hello, all! Because question "how to print labels in FRH" is VERY frequently asked question, I've made example that you can download at main FRH-page: http://www.paritetsoft.ru/frh.htm --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.paritetsoft.ru/frax.htm
  3. Hello, all! Because question "how to print labels in FRH" is VERY frequently asked question, I've made example that you can download at main FRH-page: http://www.paritetsoft.ru/frh.htm --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.paritetsoft.ru/frax.htm
  4. Hello, >> I'm having problems printing labels, like some instance, >> it is possible? >> grupo de FastReport http://groups.google.com/group/fastreport_for_x_harbour/topics. Yes, you can use this group. At files-area of this group look at marco.fr3. This is example for labels that you possible need. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.paritetsoft.ru/frax.htm
  5. Hello, Cleiton, With you I have not such problem like with Fernando. I recived your question about "titles", but I saw that Otto (at fivetechsupport) already answered you. So you can send your questions to my standard e-mail, but in READABLE english, ok? Please, send to Fernando - fernando@success.inf.br mail with my first topic. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.paritetsoft.ru/frax.htm
  6. Hello, Fernando and all. Fist of all, Fernando, I can not to send you download link, becuause you have problem with your e-mail. Please, send me another e-mail for sending you download link: -------------------------------- This is the mail system at host mail.voxnet.ru. I'm sorry to have to inform you that your message could not be delivered to one or more recipients. It's attached below. For further assistance, please send mail to postmaster. If you do so, please include this problem report. You can delete your own text from the attached returned message. The mail system : host mx2.success.inf.br[189.38.95.92] said: 450 4.7.1 Client host rejected: cannot find your hostname, [193.19.82.10] (in reply to RCPT TO command) ------------------------ And in general, is not the first time. Problem paranoic Brazilian spam filters is not good for me. If somebody has no full-function e-mail, he will have problems with delivery of FRH. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.paritetsoft.ru/frax.htm
  7. Hello, Fernando and all. Fist of all, Fernando, I can not to send you download link, becuause you have problem with your e-mail. Please, send me another e-mail for sending you download link: -------------------------------- This is the mail system at host mail.voxnet.ru. I'm sorry to have to inform you that your message could not be delivered to one or more recipients. It's attached below. For further assistance, please send mail to postmaster. If you do so, please include this problem report. You can delete your own text from the attached returned message. The mail system : host mx2.success.inf.br[189.38.95.92] said: 450 4.7.1 Client host rejected: cannot find your hostname, [193.19.82.10] (in reply to RCPT TO command) ------------------------ And in general, is not the first time. Problem paranoic Brazilian spam filters is not good for me. If somebody has no full-function e-mail, he will have problems with delivery of FRH. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.paritetsoft.ru/frax.htm
  8. Sorry for English. Hello, all, FastReport for [x]Harbour (FRH) 4.8 released. Most impotant changes in 4.8: * PDF-export is fully rewritten: added full unicode support, improved performance, decreased memory requirements, added vertical text rendering (it was a problem in the previous version) etc. + added RTF 4.1 support for TfrxRichText object + adedd checksum calculating for 2 5 interleaved barcode and many others. FRH specific: + UserDataSet is fully adapted to work with binary data fields (ordinary images). New syntax of SetUserDataset(): In second parameter, binary fields must be marked with "^b" - suffix, for example: :SetUserDataSet("MyDS", "NumericField;BlobField^b" , .... + New build-in function is addded: function LoadImageFromHbVar(Picture: TfrxPictureView; HbVar: string): Variant LoadImageFromHbVar() loads image to TfrxPictureView-object from [x]Harbour variable. Example of using: In [x]Harbour: MyVar := memoread("C:\MyPicture.jpg") In Report: procedure ReportHOnStartReport(Sender: TfrxComponent); begin LoadImageFromHbVar(Picture1, 'MyVar'); end; ! New example for interactive report is added at web-site. ! FRH/FRAX web-site is redesigned! Some additiotional info is added. I remind that FastReport for [x]Harbour (FRH) page: http://www.paritetsoft.ru/frh.htm --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.paritetsoft.ru/frax.htm
  9. Sorry for English. Hello, all, FastReport for [x]Harbour (FRH) 4.8 released. Most impotant changes in 4.8: * PDF-export is fully rewritten: added full unicode support, improved performance, decreased memory requirements, added vertical text rendering (it was a problem in the previous version) etc. + added RTF 4.1 support for TfrxRichText object + adedd checksum calculating for 2 5 interleaved barcode and many others. FRH specific: + UserDataSet is fully adapted to work with binary data fields (ordinary images). New syntax of SetUserDataset(): In second parameter, binary fields must be marked with "^b" - suffix, for example: :SetUserDataSet("MyDS", "NumericField;BlobField^b" , .... + New build-in function is addded: function LoadImageFromHbVar(Picture: TfrxPictureView; HbVar: string): Variant LoadImageFromHbVar() loads image to TfrxPictureView-object from [x]Harbour variable. Example of using: In [x]Harbour: MyVar := memoread("C:\MyPicture.jpg") In Report: procedure ReportHOnStartReport(Sender: TfrxComponent); begin LoadImageFromHbVar(Picture1, 'MyVar'); end; ! New example for interactive report is added at web-site. ! FRH/FRAX web-site is redesigned! Some additiotional info is added. I remind that FastReport for [x]Harbour (FRH) page: http://www.paritetsoft.ru/frh.htm --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.paritetsoft.ru/frax.htm
  10. citação:Good morning! This version of the fast report how many programmers? I need a version for 2 programmers id=quote>id=quote>Hello, Eduardo, The price EUR 225 is for one developer license. So for two developers you need to pay EUR 450. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  11. Dear friends! We wish you a Merry Christmas and Happy New Year! We (Fast Reports Inc and partners) offer a gift for all the developers - 25 % discount on all of our products and licenses - and that is from the 19th of December upto the 15th of January. For FastReport for [x]Harbour - report generator for [x]Harbour and any [x]Harbour -based systems in Win32 (like Xailer, FiveWin, MiniGUI etc) look: http://www.paritetsoft.ru/frh.htm For FastReport.Net, FastReport VCL, FastReport Studio, FastReport Server, FastCube, FastScript and FastQuery Builder - products for reporting and busyness analisys look: http://fast-report.com/en/new_year_discount.html Next year will be happy for developers! --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm Editado por - Spirin Sergey on 19/12/2008 06:13:44
  12. Dear friends! We wish you a Merry Christmas and Happy New Year! We (Fast Reports Inc and partners) offer a gift for all the developers - 25 % discount on all of our products and licenses - and that is from the 19th of December upto the 15th of January. For FastReport for [x]Harbour - report generator for [x]Harbour and any [x]Harbour -based systems in Win32 (like Xailer, FiveWin, MiniGUI etc) look: http://www.paritetsoft.ru/frh.htm For FastReport.Net, FastReport VCL, FastReport Studio, FastReport Server, FastCube, FastScript and FastQuery Builder - products for reporting and busyness analisys look: http://fast-report.com/en/new_year_discount.html Next year will be happy for developers! --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm Editado por - Spirin Sergey on 19/12/2008 06:13:44
  13. Hello, all, Since version 4.7.xx, In FRH is added frequently asked functionality - multiple not-modal preview mode based on different reports. For this one following methods are added: :AddReport() - adds new report and makes it "selected" (active). Return number of new report. :SelectReport(nReport) - selects existing report. :RemoveReport(nReport) - removes existing report. :ClearReports() - clear all reports except report with number 0. :PreviewOptions:SetModal(lModal) - makes selected report preview modal or not modal. :PreviewOptions:SetRemoveReportOnClose(lRemove) is added. If lRemove = .t. then report will be removed (destroyed) at preview closing. It does not work for report with number 0. Report with number 0 always exists. Example of using: FrPrn:AddReport() FrPrn:LoadFromFile("1.fr3") FrPrn:PreviewOptions:SetMaximized(.f.) FrPrn:PreviewOptions:SetBounds(120, 120, 800, 600) FrPrn:PreviewOptions:SetModal(.f.) FrPrn:ShowReport() --- Let's remind that FRH is a report generator for giving [x]Harbour applications the ability to generate professional reports quickly and efficiently. Fully compatible with any Harbour or xHarbour -based systems in Win32, like FiveWin, Xailer, MiniGUI etc. For more information, look: http://www.paritetsoft.ru/frh.htm --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  14. Hello, all, Since version 4.7.xx, In FRH is added frequently asked functionality - multiple not-modal preview mode based on different reports. For this one following methods are added: :AddReport() - adds new report and makes it "selected" (active). Return number of new report. :SelectReport(nReport) - selects existing report. :RemoveReport(nReport) - removes existing report. :ClearReports() - clear all reports except report with number 0. :PreviewOptions:SetModal(lModal) - makes selected report preview modal or not modal. :PreviewOptions:SetRemoveReportOnClose(lRemove) is added. If lRemove = .t. then report will be removed (destroyed) at preview closing. It does not work for report with number 0. Report with number 0 always exists. Example of using: FrPrn:AddReport() FrPrn:LoadFromFile("1.fr3") FrPrn:PreviewOptions:SetMaximized(.f.) FrPrn:PreviewOptions:SetBounds(120, 120, 800, 600) FrPrn:PreviewOptions:SetModal(.f.) FrPrn:ShowReport() --- Let's remind that FRH is a report generator for giving [x]Harbour applications the ability to generate professional reports quickly and efficiently. Fully compatible with any Harbour or xHarbour -based systems in Win32, like FiveWin, Xailer, MiniGUI etc. For more information, look: http://www.paritetsoft.ru/frh.htm --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  15. Hello, Recently, frequently asked question - the license for small groups of developers. More precisely speaking - the discount which can be exists in that case. Now these discounts are defined: 3-4 licenses - EUR: 260.00 per license. from 5 licenses - EUR: 230.00 per license. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
×
×
  • Create New...