Default Avatar

Kellouche

Kellouche

About

Username
Kellouche
Location
Algeria
Joined
Visits
0
Last Active
Roles
Members

Comments

  • gordk wrote: » set the allow split property of the band containing the memos to true, stretch prop and set the memos stretch mode waw thanks very much it works ..............
  • Jenny Ledd wrote: » Informative post. Maybe I'll try this one. wait and see
  • Thanks Mick okay, I'll do as you suggest, with some light modifications.
  • hi just changed integer by extended procedure Memo23OnBeforePrint(Sender: TfrxComponent); var   b:iextended; begin   b:=memo10.value/2;   memo23.text:=FloattoStr(b) end;
  • Mick.pl wrote: » Shape.Frame.LeftLine seems to be what you need instead of Frame.Typ. But it doesn't work in FR4 as well. The same is when you try tu set DropShadow of Shape. Yes, really it seems to be a bug. Change you Shape for 4 separated …
  • Kellouche wrote: » Hi i would like realise a universel function for merging celluls, i have foud a part of code in FR4 forum, i have modified the code like this : procedure MasterData3OnBeforePrint(Sender: TfrxComponent); begin   with Shape…
  • Hi I try to do this wrote: uses '\\PC-DEM-HADRI\data\source.pas';' the file is alredy exists in this post but when executed i have this message error is "BEGIN expected" can i have an example for how can i call a script file from anot…
  • Hi i think the error was in the interface i have do the same with the pascal unit watch has an anterface and implementation section but in the script pascal of FR it does not supported i have remove the interface section and the project will wo…
  • Kellouche wrote: » Kellouche wrote: » Attach small demo project with problem here oki here is a very very simple project. look at this articl (part Structure of a script) in the official site of FR
  • gpi wrote: » Attach small demo project with problem here oki here is a very very simple project.
  • gpi wrote: » gpi wrote: » exactly, so why i have that message error ? But in your first message you wrote: uses 'c:\source.pas'; procedure Memo80OnAfterData(Sender: TfrxComponent); begin   Memo80.Text := ExtractxMonthFromDate(Memo80.Va…
  • gpi wrote: » Try to comment {interface function ReplaceIfBlanc(ch, t : char) : string; function ExtractxMonthFromDate(TD : TDateTime; Mois_Texte, MAJUSCULE : boolean): string; implementation} Hi gpi conventionaly a pascal unit has t…
  • Mick.pl wrote: » My Designer has no components for your Database, but it doesn't matter. I see there is NOT Memo80OnAfterData procedure in code page of your report. And Memo80 has no events. Mick exactly, so why i have that message err…
  • Mick.pl wrote: » Attach an example of your report (fr3 file), or any similar sample, where you use "uses 'c:\source.pas'" and I'll have a look at it. Mick oki my friend. thanks.
  • Mick.pl wrote: » So we are at home now I'm not sure if FR 3 accepts uses as Delphi compilers do. FR 4 comes with so called report inheritance and this functionality seems to be a solution for having pieces of the same code or layout for several…
  • no no Mick, there is no report with Delphi !! the situation is like this : i have 4 reports, each report have its code page, i would like to call the ExtractMonthFromDate function from an external unit witch i define in "source.pas" logically i wi…
  • Mick.pl wrote: » Try this convention, where you can manipulate Sender properties: procedure Memo2OnBeforePrint(Sender: TfrxComponent); begin TfrxMemoView(Sender).Color := clRed; TfrxMemoView(Sender).Text := ExtractxMonthFromDate( TfrxMemoVi…
  • thank you very much Mick.
  • Mick.pl wrote: » Can you attach FR3 compiled demo (zip, exe) here? I use FR4 and can't test your issue in the environment you have [img]style_emoticons/<#EMO_DIR#>/sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /…
  • Mick.pl wrote: » Mick.pl wrote: » try res := Format('%2.0n', [SysMemo27.Text]); // this does not work What error messase do you get? Try to test your variable before you make formating. try ShowMessage( SysMemo27.Text); …