Mark Elder
Mark Elder
About
- Username
- Mark Elder
- Location
- SD, USA
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
OK that works. I'm assuming that the script does not support Sets, but the underlying implementation for a set is really just a bit field so I can treat the value as a integer. Anyway Thanks gordk!
-
Are you different fonts for static text vs. data fields? According to this question and answer on StackOverflow a combination of your export options and used fonts can cause data to not appear on iOS: http://stackoverflow.com/questions/1641788.…
-
In the Embedded Designer demo they cast the "Designer" to a Form class. If you do that you should have direct access to the caption. You may have problems with some other code in the designer changing it after you set it. But you should be able t…
-
What about setting a Report Variable when you load the report definition. Something like this: frxReport.Variables := QuotedStr(frxReport.FileName); When I tried this I discovered that report variables are expressions that will be evaluated. …
-
As far as I can tell you just need to "close" the Designer. It is just a form with the parent set to the Panel. You can do this: frxLetter.Designer.Close();
-
I just found the OnProgress, OnProgressStart, and OnProgressStop events that are on the actual report object (TfrxReport). It looks like I can use these to track the running status myself and as a bonus add a progress bar to my viewer.
-
Thanks!