Default Avatar

GavinC

GavinC

About

Username
GavinC
Joined
Visits
0
Last Active
Roles
Members

Comments

  • gpi wrote: » gpi wrote: » except mine has 2 extra brackets at the beginning and end, so why didn't mine work? So don't use 2 extra brackets gpi wrote: » How do I use this code for Dates? Your code should works for dates. If you us…
  • gpi wrote: » gpi wrote: » I cannot access the DetailData2 from the Delphi source code You can. Use TfrxDetailData(frxReport1.FindObject('DetailData2')).RowCount := Thank you very much, that did the trick
  • gpi wrote: » Try [IIF( = '', VarToStr(), VarToStr())] Thank you very much, that worked perfectly. But i see it is exactly the same as my code, except mine has 2 extra brackets at the beginning and end, so why didn't mine work? How do I …
  • gpi wrote: » Add second DetailData2 band with RowCount = 1 with empty TfrxMemoViews and set DetailData2.RowCount = 9 - DetailData1.RecordCount Hi, thanks for that. Where must I put the code 'DetailData2.RowCount = 9 - DetailData1.RecordC…
  • gordk wrote: » use the copy function in the memos expression do not connect the memo to a datafvield. ie dataset.fieldname,from, count [Copy(, 1, 1)] Thank you very much, that worked perfectly.
  • gordk wrote: » Gavin the fact that you keep getting an integer tells me that you are passing in something that looks like this mm/dd/yyyy so the expression evaluator is doing division. dont forget that categorized variables are expressions.her …
  • gordk wrote: » You can pass the value the way you are trying with out using the ongetvalue event. first look at the type of the value in your form is it a tdatetime value or a formated date string if it is a formated date string then you need to…