Originally Posted by James McDowell
|
Where can I get some more info on functions and parameters that are accessable though the scripting language for the new report designer. I downloaded the "manual" from the third party site, but I would like more info on the "objects" that are available in the reports.
Thanks.
|
James,
Here's a link the the Active Reports API documentation. This lists all the objects and their properties/methods that are available in scripting:
Active Reports API
Available in the script of every report is an object that D-Tools provides called "ReportUtilities". This has a number of helper methods that we use to do a number of things that would otherwise take several lines of script. The documentation for this can be found here:
ReportUtilities API
From a more general perspective, the script is written in
VB.NET so you have access to all the base types available through the .NET framework (String, Integer, Double, Boolean, DateTime, Decimal, Single, etc.)
More info on this can be found here:
http://msdn2.microsoft.com/en-us/lib...dk(VS.80).aspx
Don't get overwhelmed. I would focus your attention to:
DataTypes (string, integer, boolean, etc)
Operators (equal to, greater than, etc.)
Statements (If..then..else)
Functions (These are built in functions provided by the framework).
The MS stuff does a good job of explaining the concepts fairly well at this level of their documentation.
This is also a pretty good section for explaining the language concepts:
http://msdn2.microsoft.com/en-us/lib...5d(VS.80).aspx
Hope this places you on the right track.
-R