Example of using ModelRight API from .NET C# program 1) bring up a Command Window and CD to the ModelRight install directory 2) run "regsvr32 SCF.dll" 3) in Visual Studio, add SCFLib as a COM object into the Worskpace. 4) Add SCFLib as a Reference to your project. /************* start of sample program *************/ namespace ConsoleApplication1 { class Program { static void Main(string[] args) { SCFLib.ScriptFramework mr = new SCFLib.ScriptFramework(); mr.Initialize(); SCFLib.ISCFModel mrModel = mr.LoadModel("test.wer"); SCFLib.ISCFObjectCollection coll = mrModel.AsObject().Children("Table"); System.Collections.IEnumerator it = coll.GetEnumerator(); it.MoveNext(); SCFLib.ISCFObject o = (SCFLib.ISCFObject)(it.Current); while (o != null) { String s = o.Name(); it.MoveNext(); o = (SCFLib.ISCFObject)(it.Current); } } } }