
-=Den=-
-=Den=-
About
- Username
- -=Den=-
- Joined
- Visits
- 7
- Last Active
- Roles
- FR Team
Comments
-
wrote: can i use Fastreportstudio Designer in runtime VB6 application Yes, you can. Fastreportstudio is developped by Visual studio .Net ? FastReport Studio developped by Delphi.
-
For BCB use FastReport 3
-
Download FSd10.exe and install it.
-
wrote: It works pretty nice - it's possible to retranslate strings in application code (cpp and pas files), forms (dfm) and fr3 reports (dfm). Yes, use recompile.exe utility.
-
But why you didn't use standard FR functions(frxResources.LoadFromFile('dutch.frc') ? FR supports 31 languages.
-
jasiek wrote: Wow, I didn't expect such answers. Bert, I didn't try to change engine language, but report itself. Finally I added some limited support for TWideStrings class to dxgettext. Unfortunately, my patch can't be applied to dxgettext, be…
-
You use Fast Report Studio? Can you explain what exactly you want?
-
jasiek wrote: Today I try to find on forum how to change in code paper bin. I'm not the first person who try to do it. I couldn't find answer to this question. FR version 3.21.22 has OnPrintPAge event. for example: procedure TForm1.frxRepor…
-
Do you have update 2 for delphi6 ? What version of FR you use?
-
begin DataSet_Name.Open; If DataSet_Name.RecordCount = 0 then//where report dataset or MasterData.DataSet ShowMessage('Report is empty'); end;
-
Delete last char use Delete() funtion.
-
Did you delete Standard TeeChart components?
-
uses printers,..,; begin frxReport1.PrintOptions.Printer := Printer.Printers[Printer.PrinterIndex];//or other printer index frxReport1.PrintOptions.ShowDialog := false; if frxReport1.PrepareReport() then frxReport1.Print; end;
-
Use "recompile.exe" -> select language,Delphi version,select "Recompile all" and make recompile.
-
For install you need: Install Delphi2005(or other version) version. After install in registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall deletet the "{94193511-2FD7-4034-1A92-F9029351D928}" folder(section). Install …
-
Report can't find object with name "MemoTo1". TfrxMemoView * memo; if(NULL==(memo = (TfrxMemoView*)frxReport1->FindObject("MemoTo1"))) //if memo = NULL then report can't find object memo->Text = Edit1->Text.SubString(1,1).Trim(); frxReport…
-
Use frxReport.OnBeforePrint event: procedure TForm1.InitReport; var Page : TfrxReportPage; Cross : TfrxCrossView; begin // Add the TfrxCrossView to it Page := TfrxReportPage(frxReport1.FindObject('Page1')); Cross := TfrxCrossView.Create(Page)…
-
Try this in script: procedure DialogPage1OnActivate(Sender: TfrxComponent);//onActivate dialog event begin  DBLookupComboBox1.DataSet.Open; end;
-
fsGlobalUnit doesn't use. 1) Before prepare report do this frxReport1.Parent := fsGlobalUnit; 2)Change registration code to: type  TFunctions = class(TfsRTTIModule)  private   function CallMethod(Instance: TObject; ClassType: TClass;  …
-
Menu "Report" -> "Options..." -> Passward.
-
Set Report.EngineOptions.ConvertNulls to false.
-
In script code: procedure Memo1OnBeforePrint(Sender: TfrxComponent); begin  If = NULL then  Memo1.Visible := false  else  Memo1.Visible := True; end;
-
wrote: is it right, that the chart component used in fast report studio is TEEChart? Yes, it is. wrote: If yes, is it possible to use the professional version? No, because professional is commercial version.
-
Send your bug report and example on this mail(or create a ticket): support@fast-report.com
-
loading report: rxReport1.LoadFromFile('c:\ttt.fr3'); <- fr3 - report file if frxReport1.PrepareReport then frxReport1.ShowPreparedReport; Loading prepared Report: rxReport1.Report.LoadFromFile('c:\ttt.fp3');<-" load .fp3 file(prepa…
-
Try this: rxReport1.Report.LoadFromFile('c:\ttt.fr3'); if frxReport1.PrepareReport then frxReport1.ShowPreparedReport; or frxReport1.Report.LoadFromFile('c:\ttt.fr3'); frxReport1.ShowReport();
-
No, dot-matrix reports use fixed font.
-
FastReport uses Unicode charset, Win 9X doesn't support unicode.
-
what language you use (VC++,C#,VB..)?
-
Set memo.RTLReading to true.