Hi,

In building the report runner extension I needed to differentiate between files created with Report Wizard and SUN Report Builder.

Here is how I ended up doing it:

oDocument = openDBDocument( ...... )
if isNull( oDocument.Parent ) then
 // this is a Report Builder generated file
else
 // this is a Report Wizard generated file
end if

Questions:

Is this as good a way as any - any problems with this, or a better way?

Drew

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to