Foxfire! 8.0
A Better Way To Create Reports

Home

Home

Have some thoughts about the new version? Email them to our support team!

The Foxfire! Object Model

The Object Model lets you build complex reports without ever having to expose users to the Report Designer - and you can build reports programmatically!

How does that work?

lo = createobject("foxfire.ffapplication")

lo.LoadPreference("C:\ff80\")    && or wherever your Foxfire! application is located

loReq = lo.Requests.AddItem("Detail")

loReq.DataItems.AddItem("Cars Make")
loReq.DataItems.AddItem("Cars License Number")

loReq.RequestName = "MYRUN"
loReq.Description = "Listing of cars"

loReq.Update( )

Your report has been instantly created!


Last Modified: 02/21/2005 08:44 -0500