TGD
TGD
About
- Username
- TGD
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
AlexTZ wrote: Use extra quotes: Set('AttDap', '''' + FloatToStr(, MasterData1)>) + ''''); Many Thanx alex
-
AlexTZ wrote: Correct is: MonthOf() Thanx a lot
-
AlexTZ wrote: Open the .fr3 file in any text editor and clear the ReportOptions.Password entry. I did... thank you ! TGD
-
gordk wrote: Here is a sample, judging from your last reply sample stop trying to write fr2.5 code for fr3. procedure TForm1.Button1Click(Sender: TObject); var Page: TfrxReportPage; Band: TfrxBand; DataBand: TfrxMasterData; Memo: TfrxMemo…
-
Thanx Gord, yes, it's true! I'm trying to export a project from 2.5 to 3.x since a couple of days and it' s not easy understand a new programming way in a short time. Btw, FR 3.x seems to be a very great job, many congratulations !! I' ve…
-
gordk wrote: read the sections in the user manual on bulding reports from code starting on page 23 once you understand how to add bands and objects to the band use the correct band type? tfrxoverlay This is my func, but it doesent works.…
-
gordk wrote: read the sections in the user manual on bulding reports from code starting on page 23 once you understand how to add bands and objects to the band use the correct band type tfrxoverlay Hi Gord, I tried to add an overlay b…
-
gordk wrote: read the sections in the user manual on bulding reports from code starting on page 23 once you understand how to add bands and objects to the band use the correct band type tfrxoverlay Thanx a lot Gord
-
AlexTZ wrote: Should be StmpTab.DS1.DataSet := DM.ArcTab; StmpTab.DS1.DataSource := DM.DSTab; StmpTab.StTab.LoadFromFile(DM.cPth + 'Templates\TabeVet.fr3'); StmpTab.StTab.DataSets.Clear; StmpTab.StTab.DataSets.Add(StmpTab.DS1); StmpTab.StT…
-
gordk wrote: this works fine for me no need for extra find and cast // wpath string global set in forms onshow event WPath := ExtractFilePath(ParamStr(0)); procedure TForm1.frReport1BeforePrint(Memo: TStringList; View: TfrView); VAR cstr:st…
-
gordk wrote: This should be a clue LoadFromFile('C:\Images\Img01.jpg') it works, so either your variable's value is wrong or you need to pass the opening and closing apostrophes LoadFromFile('+varname+'); check to make sure your variable co…
-
gordk wrote: fROM FAQ.TXT 2.34. How to print a picture that stored in a file? a) use TfrReport.OnBeforePrint event: if View.Name = 'Picture1' then TfrPictureView(View).Picture.LoadFromFile(...); Something is wrong. Or tip in FastR…
-
gordk wrote: fROM FAQ.TXT 2.34. How to print a picture that stored in a file? a) use TfrReport.OnBeforePrint event: if View.Name = 'Picture1' then TfrPictureView(View).Picture.LoadFromFile(...); a) use TfrReport.OnBeforePrint even…