Jump to content
Fivewin Brasil

Spirin Sergey

Membros
  • Posts

    105
  • Joined

  • Last visited

Everything posted by Spirin Sergey

  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
  16. 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
  17. Hello, I am glad to announce new google group which is intended for discussion of all aspects FastReport for [x]Harbour: http://groups.google.com/group/fastreport_for_x_harbour/topics Simply join this group for the beginning discussions. Thank you. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  18. Hello, I am glad to announce new google group which is intended for discussion of all aspects FastReport for [x]Harbour: http://groups.google.com/group/fastreport_for_x_harbour/topics Simply join this group for the beginning discussions. Thank you. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  19. citação:2-Seria um "wizard", um modelo, ou algo assim para facilitar a criação de etiquetas. id=quote>id=quote>Hello, Evandro, If it's special printer that print small labels, simply set paper size. If it's many small labels on one A4 paper then simply set COLUMNS for page or for bands (how you like). At demo "UserDS and Dialogs"-report is two columns report. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  20. citação:Tambem tentei usar [ CallHbFunc('Transform', [,"@R 999999/99-!")] Dá erro de execução da função O que pode esta errado... id=quote>id=quote>Hello, Jackson, - You lost one ] - parameters bracket - And strings must be at single quotes - 'string' So: [CallHbFunc('Transform', [,'@R 999999/99-!'])] --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  21. citação:Ola Amigos Spirin esta de parabens esta FASTREPORT, estou adorando trabalhar nela, mais ainda não descobri como fazer algumas coisas, por exemplo: ................ id=quote>id=quote>Hello, Jackson, Firstly, I can say that you can use FastReport built-in functions like: Format(), FormatMaskText(), Copy(), Delete() etc. However my experience shows, that "another's" syntax not always is pleasant to Clipper-developers So look also, that you use ANY Harbour function by direct call like: CallHbFunc()... And also you can add ANY function to FastReport, look demo with adding XBaseStr() -function. --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  22. Hello! New example is added to download area: http://www.paritetsoft.ru/frh.htm This example shows how to save and load reports from memo/blob fields of database. Look at using LoadFrom/SaveToBlob methods and OnSaveReport-event of designer. Trial-version is updated and has version number - 4.6.2 --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  23. Hello! New example is added to download area: http://www.paritetsoft.ru/frh.htm This example shows how to save and load reports from memo/blob fields of database. Look at using LoadFrom/SaveToBlob methods and OnSaveReport-event of designer. Trial-version is updated and has version number - 4.6.2 --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  24. citação:Olá, Duas dúvidas: 2-Quero apresentar um elemento de um vetor ( [(GetHbArrayVar('aVias', 1 ))]. Em vez de indicar o elemento fixo ( 1 ), preciso que seja de um arquivo. [(GetHbArrayVar('aVias', [atd."MAT_VIA"] ))] não funciona. Dá erro. 2-Tem um modelo para criar etiquetas? id=quote>id=quote>Hello, Evandro. It's not possible (and no need) such using expression brackets - [[]]. Database field: . So: [GetHbArrayVar('aVias', )] About labels, what do you mean? --- Spirin Sergey. "Paritet Soft" Company. FRH sales: http://www.paritetsoft.ru/frh.htm FRAX sales: http://www.hotsoft.ru/ALASKA/frax_eng.htm
  25. citação:Olá, Clique na opção de editar os relatórios e você poderá alterá-los à vontade para ter um bom aprendizado. Outra coisa importante é baixar os manuais. No link que o Spirin te passou tem o manual para o FR+Alaska, mas é a mesma coisa que o xHarbour. No site do FR tem documentação completa ( http://fast-report.com/en/download/fast-report-4-download.html ) id=quote>id=quote>Hello, Evandro. From many weeks ago my manual is common, and for [x]Harbour and for Alaska. --- 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...