ActiveField - QuickField API help

QuickField Student Edition free download     Contacts

ActiveField Technology

Objects Overview

Hierarchy Chart

How to Start: Application Object

How to work with Problems

How to work with Model

How to work with Data

How to Analyze Results

Objects

Properties

Methods

Documents Object

Properties

Methods

Summary

The collection of open documents.

Details

The Documents collection contains all the Document objects that are currently open in the QuickField application.

Using the Documents Collection

The following three properties of the Application object return the Documents collection of chosen type:

Each Documents collection contains the documents of the same type.

Use Add method to create a new empty document of the same type and add it to the collection.

Use the Open method to open the existing file. This creates a new document and then loads the file to it.

The Close method of a Documents collection closes all the Document objects it contains at once.

Dim prbNew As QuickField.Problem
Dim prbOld As QuickField.Problem
Set prbNew = Problems.Add
Set prbOld = Problems.Open("Examples\Magn1.pbm")