Application Object

<< Click to Display Table of Contents >>

Navigation:  Developer Edition > Visual Basic for Applications (VBA) > Object Model Reference >

Application Object

Previous pageReturn to chapter overviewNext page

Top level object. Entry point for all automation.

 

Methods

Name

Description

Returns a project with empty files, default settings and manual matching

Creates a new project with empty files, default settings and manual matching.

 

Properties

Name

Description

Project that is currently active.

Determines if user interface is displayed or not.

 

 

Remarks

The application object is only accessible when you have a licensed Developer Edition

 

 

Example

To access the Synkronizer Application, you should do the following:.

 

Dim cai As COMAddIn

Dim snk As Synkronizer.Application

 

Set cai = Application.COMAddIns("Synkronizer.Addin")

If Not cai.Connect Then

  cai.Connect = True

End If

Set snk = cai.Object